From 36ea3ce51a3a052f9c3d7ddba6618ad0ec6472e0 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 17:45:04 -0800 Subject: [PATCH 01/26] Build helper from main branch and generate Get-*, New-*, and Remove-* cmdlets for managing AppInsights --- src/helpers/AppInsights/readme.noprofile.md | 22 +++++++-------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/src/helpers/AppInsights/readme.noprofile.md b/src/helpers/AppInsights/readme.noprofile.md index b1657f67487b..67c2bf408778 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,24 +69,11 @@ 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: - where: - verb: Clear|Remove|Set + verb: Clear|Set subject: ^Component$ remove: true - where: @@ -105,7 +97,7 @@ directive: set: subject: AppInsightsApiKey - where: - verb: Get|New + verb: Get|New|Remove subject: ^AppInsights$ hide: true - where: From aea08418192d605ffc17e6dab6f5c0af1754b9a1 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 17:47:16 -0800 Subject: [PATCH 02/26] Generate New-, Get-, and 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 9ddcb58fa1127b002b955cf1bb9114a7e5d64344 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 18:35:49 -0800 Subject: [PATCH 03/26] Add support for creating Flex Consumption apps --- .../custom/Functions.format.ps1xml | 29 + .../Get-AzFunctionAppAvailableLocation.ps1 | 61 +- ...et-AzFunctionAppFlexConsumptionRuntime.ps1 | 60 ++ .../custom/HelperFunctions.ps1 | 932 +++++++++++++++++- .../custom/New-AzFunctionApp.ps1 | 659 ++++++++++--- .../custom/api/Support/AvailablePlanType.cs | 4 + 6 files changed, 1569 insertions(+), 176 deletions(-) create mode 100644 src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 diff --git a/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml b/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml index bb2aa1097aa5..aa2dab05bdc3 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-AzFunctionAppAvailableLocation.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 index 510a7c12f059..be85c93f035a 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 @@ -14,16 +14,20 @@ 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='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) { @@ -88,21 +93,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,11 +122,50 @@ 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 + } + + 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 } - Az.Functions.internal\Get-AzFunctionAppAvailableLocation @PSBoundParameters + $regions = Az.Functions.internal\Get-AzFunctionAppAvailableLocation @PSBoundParameters + + if ($ZoneRedundant.IsPresent -and ($PlanType -eq 'FlexConsumption')) + { + $regions | ForEach-Object { if ($_.OrgDomain -match "FCZONEREDUNDANCY") { $_ }} + } + else + { + $regions + } } } 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..5cb18965487d --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 @@ -0,0 +1,60 @@ +function Get-AzFunctionAppFlexConsumptionRuntime { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets the Flex Consumption function app runtimes supported at the specified location.')] + [CmdletBinding(DefaultParameterSetName='AllRuntimes')] + param( + [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='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", "PowerShell", "Python", "Custom")] + [ValidateNotNullOrEmpty()] + [System.String] + ${Runtime}, + + [Parameter(ParameterSetName='ByVersion', Mandatory=$true, HelpMessage='The function app runtime version.')] + [ValidateNotNullOrEmpty()] + [System.String] + ${Version}, + + [Parameter(ParameterSetName='DefaultOrLatest', Mandatory=$true, HelpMessage='Get the default or latest version of the specified runtime.')] + [switch] + $DefaultOrLatest + ) + + process { + + RegisterFunctionsTabCompleters + + # Validate Flex Consumption location + Validate-FlexConsumptionLocation -Location $Location + + switch ($PSCmdlet.ParameterSetName) { + 'AllRuntimes' { + # Return all runtimes + foreach ($runtimeName in $FlexConsumptionSupportedRuntimes) + { + 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 3e3b7a6f93b7..517818fedaf6 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' @@ -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) { @@ -97,7 +98,7 @@ function GetConnectionString -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception } - + $skuName = $storageAccountInfo.SkuName if (-not ($AllowedStorageTypes -contains $skuName)) { @@ -493,7 +494,7 @@ function AddFunctionAppSettings $App.AppServicePlan = ($App.ServerFarmId -split "/")[-1] } - $App.OSType = if ($App.kind.ToString() -match "linux"){ "Linux" } else { "Windows" } + $App.OSType = if ($App.kind.ToString() -match "linux" -or $App.Reserved){ "Linux" } else { "Windows" } if ($App.Type -eq "Microsoft.Web/sites/slots") { @@ -541,7 +542,17 @@ function AddFunctionAppSettings # Add application settings and runtime $App.ApplicationSettings = ConvertWebAppApplicationSettingToHashtable -ApplicationSetting $settings -RedactAppSettings - $App.Runtime = GetRuntime -Settings $settings -AppKind $App.kind + + # Add runtime + $theRuntimeName = [string]$App.RuntimeName + $App.Runtime = if ((-not [string]::IsNullOrEmpty($theRuntimeName)) -and ($RuntimeToFormattedName.ContainsKey($theRuntimeName))) + { + $RuntimeToFormattedName[$theRuntimeName] + } + else + { + GetRuntime -Settings $settings -AppKind $App.kind + } # Get the app site config $config = GetAzWebAppConfig -Name $App.Name -ResourceGroupName $App.ResourceGroup @PSBoundParameters @@ -729,26 +740,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 @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 ` @@ -1086,32 +1105,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 @@ -1775,9 +1776,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 } @@ -1792,13 +1793,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 = GetBuiltInFunctionAppStacksDefinition -DoNotShowWarning + return $json + } } # Make sure there is an active Azure session @@ -1829,16 +1845,39 @@ 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 = @{} + $apiVersion = '2020-10-01' + + if ($StackType -eq "PremiumAndConsumption") + { + $params = @{ + stackOsType = 'All' + removeDeprecatedStacks = 'true' + } + + $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/functionAppStacks?api-version={0}" -f $apiVersion + } + elseif ($StackType -eq "FlexConsumption") + { + $removeHiddenStacks = if ($env:FunctionsTestMode) { $false } else { $true } + $removeDeprecatedStacks = $true + + $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() } - $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/functionAppStacks?api-version=2020-10-01" + Write-Debug "$DEBUG_PREFIX Target API endpoint: $apiEndPoint" $maxNumberOfTries = 3 $currentCount = 1 @@ -1851,8 +1890,15 @@ function GetFunctionAppStackDefinition $result = $null try { - Write-Debug "$DEBUG_PREFIX Pull down Function App Stack definitions from ARM API. Attempt $currentCount of $maxNumberOfTries." - $result = Invoke-WebRequest -Uri $apiEndPoint -Method Get -Headers $headers -body $params -ErrorAction Stop + Write-Debug "$DEBUG_PREFIX Get Function App Stack definitions from ARM API. Attempt $currentCount of $maxNumberOfTries." + 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 { @@ -1885,11 +1931,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 @@ -2168,6 +2216,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 @@ -2294,7 +2353,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) @@ -2304,11 +2363,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 } } @@ -2486,3 +2557,762 @@ function Get-Today { } return Get-Date } + +function New-PlanName +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $ResourceGroupName + ) + + if ($env:FunctionsTestMode -and $env:FunctionsUseFlexStackTestData) + { + $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 +} + +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.Api20231201.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.Capacity = 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 +} + +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 ([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) + ThrowTerminatingError -ErrorId "InvalidIdentityResourceId" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # Check if identity exists + $identity = Az.Functions.internal\Get-AzUserAssignedIdentity -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroup -ResourceName $identityName -ErrorAction SilentlyContinue @PSBoundParameters + + 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 "InvalidIdentityResourceIdFormat" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } +} + +function Get-FlexFunctionAppRuntime +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(ParameterSetName = 'AllVersions', Mandatory = $true)] + [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] + [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $Location, + + [Parameter(ParameterSetName = 'AllVersions', Mandatory = $true)] + [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] + [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $Runtime, + + [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $Version, + + [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] + [switch] + $DefaultOrLatest + ) + + # 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 + else + { + $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 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 + 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 + $runtimeName = if ($linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME) { + $linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME + } + + # Set runtime name and version + if ($sku.skuCode -eq 'FC1') { + if (-not $runtimeName) { + $runtimeName = $sku.functionAppConfigProperties.Runtime.Name + } + $runtimeVersion = $sku.functionAppConfigProperties.Runtime.Version + } + + # Parse end of life date + $runtimeEndOfLifeDate = if ($linux.endOfLifeDate) { ParseEndOfLifeDate -Runtime $runtimeName -DateString $linux.endOfLifeDate } else { $null } + + # Create runtime object + $result = [pscustomobject]@{ + Name = $runtimeName + Version = $runtimeVersion + 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') + $stacks.Add($result) + } + } + + 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, which ever is the newest one + $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 Validate-InstanceMemoryMB +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(Mandatory=$true)] + [PSCustomObject] + $SkuInstanceMemoryMB, + + [Parameter(Mandatory=$false)] + [int] + $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 + Write-Warning "InstanceMemoryMB not specified. Setting default value to '$InstanceMemoryMB'. $SetDefaultValueParameterWarningMessage" + } + + return $InstanceMemoryMB +} + +function Validate-MaximumInstanceCount +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(Mandatory = $true)] + [PSCustomObject] + $SkuMaximumInstanceCount, # expects keys: lowestMaximumInstanceCount, highestMaximumInstanceCount, defaultValue + + [Parameter(Mandatory = $false)] + [int] + $MaximumInstanceCount + ) + + # 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 + Write-Warning "MaximumInstanceCount not specified. Setting default value to '$MaximumInstanceCount'. $SetDefaultValueParameterWarningMessage" + } + + return $MaximumInstanceCount +} + +function Test-FlexConsumptionLocation +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [String] + $Location, + + [Parameter(Mandatory = $false)] + [System.Management.Automation.SwitchParameter] + $ZoneRedundant + ) + + # Validate Flex Consumption location + $formattedLocation = Format-FlexConsumptionLocation -Location $Location + $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant + + $found = $false + foreach ($region in $flexConsumptionRegions) + { + $regionName = Format-FlexConsumptionLocation -Location $region.Name + + if ($region.Name -eq $Location) + { + $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 + ) + + $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant + + 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 dda3445e2874..9d3ce71626cb 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -1,4 +1,3 @@ - function New-AzFunctionApp { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Creates a function app.')] @@ -8,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] @@ -17,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}, @@ -25,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}, @@ -33,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}, @@ -41,6 +44,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="ByAppServicePlan")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] [Alias("AppInsightsName")] @@ -50,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}, @@ -78,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 @@ -85,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 @@ -101,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}, @@ -127,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}, @@ -135,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}, @@ -143,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.Api20231201.IResourceTags]))] [System.Collections.Hashtable] @@ -153,6 +163,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [Hashtable] ${AppSetting}, @@ -165,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')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType] @@ -176,10 +188,67 @@ 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")] + [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= +'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 }).')] + [ValidateNotNullOrEmpty()] + [Hashtable[]] + ${AlwaysReady}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Maximum instance count for Flex Consumption.')] + [ValidateRange(40, 1000)] + [int] + ${MaximumInstanceCount}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Per-instance memory in MB for Flex Consumption instances.')] + [ValidateSet(512, 2048, 4096)] + [int] + ${InstanceMemoryMB}, + + [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(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp", HelpMessage='Name of the container app environment.')] [ValidateNotNullOrEmpty()] [System.String] @@ -289,7 +358,17 @@ function New-AzFunctionApp { "ResourceCpu", "ResourceMemory", "ScaleMaxReplica", - "ScaleMinReplica" + "ScaleMinReplica", + "FlexConsumptionLocation", + "DeploymentStorageName", + "DeploymentStorageContainerName", + "DeploymentStorageAuthType", + "DeploymentStorageAuthValue", + "AlwaysReady", + "MaximumInstanceCount", + "InstanceMemoryMB", + "HttpPerInstanceConcurrency", + "EnableZoneRedundancy" ) foreach ($paramName in $paramsToRemove) { @@ -301,18 +380,28 @@ function New-AzFunctionApp { $functionAppIsCustomDockerImage = $PsCmdlet.ParameterSetName -eq "CustomDockerImage" $environmentForContainerApp = $PsCmdlet.ParameterSetName -eq "EnvironmentForContainerApp" + $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[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 + $OSIsLinux = ($OSType -eq "Linux") -or $functionAppIsFlexConsumption + $params = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") + ValidateFunctionAppNameAvailability -Name $Name @params + $runtimeJsonDefinition = $null - ValidateFunctionName -Name $Name @params - if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) + if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp -or $functionAppIsFlexConsumption)) { if (-not $FunctionsVersion) { @@ -360,12 +449,10 @@ function New-AzFunctionApp { $value = $runtimeJsonDefinition.SiteConfigPropertiesDictionary[$PropertyName] $siteConfig.$PropertyName = $value } - } + } } $servicePlan = $null - $consumptionPlan = $PsCmdlet.ParameterSetName -eq "Consumption" - $OSIsLinux = $OSType -eq "Linux" $dockerRegistryServerUrl = $null if ($consumptionPlan) @@ -461,10 +548,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 +566,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,157 +601,493 @@ function New-AzFunctionApp { $functionAppDef.ManagedEnvironmentId = $managedEnvironment.Id } - # 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)) - - if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) + try { - $appSettings.Add((NewAppSetting -Name 'FUNCTIONS_EXTENSION_VERSION' -Value "~$FunctionsVersion")) - } + if ($functionAppIsFlexConsumption) + { + # Reset properties not applicable for Flex Consumption + $siteConfig.NetFrameworkVersion = $null + $functionAppDef.Reserved = $null + $functionAppDef.IsXenon = $null + $appSettings.Clear() + + # Validate Flex Consumption location + Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation -ZoneRedundant:$EnableZoneRedundancy + $FlexConsumptionLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation + + # Validate runtime and runtime version + if (-not ($FlexConsumptionSupportedRuntimes -contains $Runtime)) + { + $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 + } - # 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)) - { - $siteConfig.AlwaysOn = $true - } + $runtimeInfo = $null + $hasDefaultVersion = $false - # 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)) + if ([string]::IsNullOrEmpty($RuntimeVersion)) + { + $runtimeInfo = Get-FlexFunctionAppRuntime -Location $FlexConsumptionLocation -Runtime $Runtime -DefaultOrLatest:$true + $hasDefaultVersion = $true - $shareName = GetShareName -FunctionAppName $Name - $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTSHARE' -Value $shareName)) - } + $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 + } - if (-not $DisableApplicationInsights) - { - if ($ApplicationInsightsKey) - { - $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $ApplicationInsightsKey)) - } - elseif ($ApplicationInsightsName) - { - $appInsightsProject = GetApplicationInsightsProject -Name $ApplicationInsightsName @params - if (-not $appInsightsProject) + # Validate EndOfLifeDate + if ($runtimeInfo.EndOfLifeDate -and (-not $hasDefaultVersion)) { - $errorMessage = "Failed to get application insights key for 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 + $defaultRuntimeInfo = Get-FlexFunctionAppRuntime -Location $FlexConsumptionLocation -Runtime $Runtime -DefaultOrLatest:$true + + Validate-EndOfLifeDate -EndOfLifeDate $runtimeInfo.EndOfLifeDate ` + -Runtime $Runtime ` + -RuntimeVersion $RuntimeVersion ` + -DefaultRuntimeVersion $defaultRuntimeInfo.Version } - $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $appInsightsProject.InstrumentationKey)) - } - else - { - $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` - -ResourceName $Name ` - -Location $functionAppDef.Location ` - @params - if ($newAppInsightsProject) + # Validate and set AlwaysReady configuration + if ($AlwaysReady -and $AlwaysReady.Count -gt 0) + { + $ALWAYSREADY_NAME = 'name' + $ALWAYSREADY_INSTANCECOUNT = 'instanceCount' + + foreach ($entry in $AlwaysReady) + { + # Ensure required keys exist + if (-not ($entry.ContainsKey($ALWAYSREADY_NAME) -and $entry.ContainsKey($ALWAYSREADY_INSTANCECOUNT))) + { + $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 + } + + # Validate that Name is a non-empty string + if ([string]::IsNullOrWhiteSpace($entry[$ALWAYSREADY_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 InstanceCount is a non-negative integer (single-parse + combined check) + [int]$parsedInstanceCount = 0 + $rawInstanceCount = $entry[$ALWAYSREADY_INSTANCECOUNT] + + 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) + ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + $functionAppDef.ScaleAndConcurrencyAlwaysReady = $AlwaysReady + } + + # Set scaling information + $maximumInstanceCountValue = Validate-MaximumInstanceCount -SkuMaximumInstanceCount $runtimeInfo.Sku.maximumInstanceCount -MaximumInstanceCount $MaximumInstanceCount + $functionAppDef.ScaleAndConcurrencyMaximumInstanceCount = $maximumInstanceCountValue + + $instanceMemoryMBValue = Validate-InstanceMemoryMB -SkuInstanceMemoryMB $runtimeInfo.Sku.instanceMemoryMB -InstanceMemoryMB $InstanceMemoryMB + $functionAppDef.ScaleAndConcurrencyInstanceMemoryMB = $instanceMemoryMBValue + + if ($HttpPerInstanceConcurrency -gt 0) + { + $functionAppDef.HttpPerInstanceConcurrency = $HttpPerInstanceConcurrency + } + + # Create Flex Consumption App Service Plan + $planName = New-PlanName -ResourceGroupName $ResourceGroupName + if ($WhatIfPreference.IsPresent) { - $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $newAppInsightsProject.InstrumentationKey)) + 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" + } } 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 + $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` + -ResourceGroupName $ResourceGroupName ` + -Location $FlexConsumptionLocation ` + -EnableZoneRedundancy:$EnableZoneRedundancy ` + @params + $flexConsumptionPlanCreated = $true } - } - } - if ($Tag.Count -gt 0) - { - $resourceTag = NewResourceTag -Tag $Tag - $functionAppDef.Tag = $resourceTag - } + $functionAppDef.ServerFarmId = $planInfo.Id + $functionAppDef.Location = $FlexConsumptionLocation - # Add user app settings - if ($appSetting.Count -gt 0) - { - foreach ($keyName in $appSetting.Keys) - { - $appSettings.Add((NewAppSetting -Name $keyName -Value $appSetting[$keyName])) - } - } + # Validate Deployment Storage + if (-not $DeploymentStorageName) { + $DeploymentStorageName = $StorageAccountName + } - # Set function app managed identity - if ($IdentityType) - { - $functionAppDef.IdentityType = $IdentityType + if (-not $DeploymentStorageContainerName) + { + # Generate a unique container name + $tempName = $Name -replace '[^a-zA-Z0-9]', '' + $normalizedName = $tempName.Substring(0, [Math]::Min(32, $tempName.Length)) + $normalizedName = $normalizedName.ToLower() - if ($IdentityType -eq "UserAssigned") - { - # Set UserAssigned managed identiy - if (-not $IdentityID) + if ($env:FunctionsTestMode) + { + $randomSuffix = 0 + } + else + { + $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + } + + $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + } + + $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params + + # If container does not exist, create it + $container = Az.Functions.internal\Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ErrorAction SilentlyContinue ` + @params + if (-not $container) { - $errorMessage = "IdentityID is required for UserAssigned identity" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "IdentityIDIsRequiredForUserAssignedIdentity" ` + if ($WhatIfPreference.IsPresent) + { + Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." + $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190401.BlobContainer + } + else + { + # Create blob container + $maxNumberOfTries = 3 + $tries = 1 + $myError = $null + while ($true) + { + try + { + $container = Az.Functions.internal\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 + } + } + } + + # Set storage type and value + $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) + { + # Get 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 app settings and site configuration - $siteConfig.AppSetting = $appSettings - $functionAppDef.Config = $siteConfig - $PSBoundParameters.Add("SiteEnvelope", $functionAppDef) | Out-Null + # Set runtime information + $functionAppDef.RuntimeName = $runtimeInfo.Sku.functionAppConfigProperties.runtime.name + $functionAppDef.RuntimeVersion = $runtimeInfo.Sku.functionAppConfigProperties.runtime.version + } - if ($PsCmdlet.ShouldProcess($Name, "Creating function app")) - { - # Save the ErrorActionPreference - $currentErrorActionPreference = $ErrorActionPreference - $ErrorActionPreference = 'Stop' + # Validate storage account and get connection string + $connectionString = GetConnectionString -StorageAccountName $StorageAccountName @params + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) - $exceptionThrown = $false + if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp -or $functionAppIsFlexConsumption)) + { + $appSettings.Add((NewAppSetting -Name 'FUNCTIONS_EXTENSION_VERSION' -Value "~$FunctionsVersion")) + } - try + # 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)) { - Az.Functions.internal\New-AzFunctionApp @PSBoundParameters + $siteConfig.AlwaysOn = $true } - catch + + # If plan is Elastic Premium or Consumption (Windows or Linux), we need these app settings + if ($planIsElasticPremium -or $consumptionPlan) { - $exceptionThrown = $true + $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTAZUREFILECONNECTIONSTRING' -Value $connectionString)) + + $shareName = GetShareName -FunctionAppName $Name + $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTSHARE' -Value $shareName)) + } - $errorMessage = GetErrorMessage -Response $_ + # Set up Dashboard if no ApplicationInsights + if ($DisableApplicationInsights -and (-not $functionAppIsFlexConsumption)) + { + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) + } - if ($errorMessage) + # Set up Application Insights + if (-not $DisableApplicationInsights) + { + if ($ApplicationInsightsKey) { - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "FailedToCreateFunctionApp" ` + $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 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $appInsightsProject.ConnectionString)) } + else + { + if ($WhatIfPreference.IsPresent) + { + 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/" + Name = $Name + } + $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $newAppInsightsProject.ConnectionString)) + } + else + { + # Create the Application Insights project + $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 + } + } + } + } - throw $_ + if ($Tag.Count -gt 0) + { + $resourceTag = NewResourceTag -Tag $Tag + $functionAppDef.Tag = $resourceTag } - finally + + # Add user app settings + if ($AppSetting.Count -gt 0) { - # Reset the ErrorActionPreference - $ErrorActionPreference = $currentErrorActionPreference + foreach ($keyName in $AppSetting.Keys) + { + $appSettings.Add((NewAppSetting -Name $keyName -Value $AppSetting[$keyName])) + } } - if (-not $exceptionThrown) + # Set function app managed identity + if ($IdentityType) { - if ($consumptionPlan -and $OSIsLinux) + $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 + + } + + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } + } + + # 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")) + { + # Save the ErrorActionPreference + $currentErrorActionPreference = $ErrorActionPreference + $ErrorActionPreference = 'Stop' + + $exceptionThrown = $false + + try + { + Az.Functions.internal\New-AzFunctionApp @PSBoundParameters + $functionAppCreatedSuccessfully = $true + } + catch + { + $exceptionThrown = $true + + $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 + { + # Cleanup created resources in case of failure + if (-not $functionAppCreatedSuccessfully) + { + if ($flexConsumptionPlanCreated) + { + Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params -Force + } + if ($flexConsumptionStorageContainerCreated) + { + Az.Functions.internal\Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params + } + + 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 + Az.Functions.internal\Remove-AzAppInsights -ResourceGroupName $ResourceGroupName -ResourceName $ApplicationInsightsName @params } } } 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 2899e9def5dda426343bfc28b2a003e103fb7769 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 18:36:42 -0800 Subject: [PATCH 04/26] Update function app stacks --- .../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 61cef95eba27480dcdb4c98e8ca0b1170d0450e7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 18:37:55 -0800 Subject: [PATCH 05/26] 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 b5b2060e6554d593184af89a77aa36c25364cbca Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 18:42:43 -0800 Subject: [PATCH 06/26] 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 f5d268baa757eb62451662b67f94bbe810e748f1 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 18:43:58 -0800 Subject: [PATCH 07/26] Add Flex Consumption tests and update test app runtimes --- ...t-AzFunctionAppAvailableLocation.Tests.ps1 | 179 +++++ ...unctionAppFlexConsumptionRuntime.Tests.ps1 | 296 ++++++++ ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 672 ++++++++++++++++++ .../Functions.Autorest/test/utils.ps1 | 78 +- 4 files changed, 1216 insertions(+), 9 deletions(-) create mode 100644 src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 create mode 100644 src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 index 2f50c9a54262..3923842787e3 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 @@ -193,4 +193,183 @@ 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 + } + + 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 + } + + It "Validate -PlanType FlexConsumption -OSType Windows -ZoneRedundant fails" { + + $expectedErrorMessage = "ZoneRedundant parameter is only applicable for FlexConsumption plan type." + $expectedErrorId = "ZoneRedundantIsOnlyApplicableForFlexConsumption" + + $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 new file mode 100644 index 000000000000..7b2cac769708 --- /dev/null +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 @@ -0,0 +1,296 @@ +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' + $cutoffDate = [DateTime]'11/9/2026' + } + + 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].Name | Should -Not -BeNullOrEmpty + $runtimes[0].Version | Should -Not -BeNullOrEmpty + $runtimes[0].IsDefault | Should -BeOfType [System.Boolean] + $runtimes[0].Sku | Should -Not -BeNull + + # 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' + $runtimeNames | Should -Contain 'powershell' + $runtimeNames | Should -Contain 'custom' + } + + It 'Should get current runtime stack versions with extended support' { + $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation + + # Test current supported runtime stack versions + $currentStackRuntimes = $allRuntimes | Where-Object { + ($_.Name -eq 'custom') -or + ([DateTime]::Parse($_.EndOfLifeDate) -ge $cutoffDate) + } + + $currentStackRuntimes | Should -Not -BeNullOrEmpty + + # Verify expected current stack versions (10 total) + $currentStackRuntimes | Should -HaveCount 10 + + # 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 + + $nodeCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'node' } + $nodeCurrent.Version | Should -Be '22' # Current LTS version + + $javaCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'java' } + $javaCurrent.Version | Sort-Object | Should -Be @('17', '21') # Current supported versions + + $powershellCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'powershell' } + $powershellCurrent.Version | Should -Be '7.4' # Current stable version + + $pythonCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'python' } + $pythonCurrent.Version | Sort-Object | Should -Be @('3.11', '3.12', '3.13') # Latest supported versions + + $customCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'custom' } + $customCurrent.Version | Should -Be '1.0' # Always current for custom + } + + 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' } + ) + + 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' + } + } + + 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 -Be $true + $specificRuntime.EndOfLifeDate | Should -Not -BeNullOrEmpty + $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 -Be '22' # Current default + + # 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' { + # Test with python as it has multiple versions + $runtimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' + + $runtimes | Should -Not -BeNullOrEmpty + + foreach ($runtime in $runtimes) { + # Required properties validation + $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.skuCode | Should -Not -BeNullOrEmpty + $runtime.Sku.instanceMemoryMB | Should -Not -BeNullOrEmpty + $runtime.Sku.maximumInstanceCount | Should -Not -BeNullOrEmpty + $runtime.Sku.functionAppConfigProperties | Should -Not -BeNull + } + } + + 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 ($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($result.EndOfLifeDate) } | Should -Not -Throw -Because "$runtime $version should have valid EndOfLifeDate" + + # 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" + } + } + + 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 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 }, + @{ 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 + } + + It 'Should handle invalid version gracefully' { + { 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 (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 '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 + } +} 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..b9c5e15f3e01 --- /dev/null +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -0,0 +1,672 @@ +$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 = 111125 + # $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 + + $flexTestRunId = $env.flexTestRunId + $flexLocation = $env.flexLocation + $flexResourceGroupName = $env.flexResourceGroupName + $flexStorageAccountInfo = $env.flexStorageAccountInfo + + # 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, WorkerType, and SkuTier + function Test-FlexConsumptionPlan { + param( + [Parameter(Mandatory=$true)] + [string]$PlanName, + + [Parameter(Mandatory=$true)] + [string]$ResourceGroupName + ) + + Write-Verbose "Validating app service plan SkuName, WorkerType, and SkuTier." -Verbose + $plan = Get-AzFunctionAppPlan -Name $PlanName -ResourceGroupName $ResourceGroupName + $plan.SkuName | Should -Be "FC1" + $plan.WorkerType | Should -Be "Linux" + $plan.SkuTier | Should -Be "FlexConsumption" + } + + # 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 + } + + $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" = $flexStorageAccountInfo["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 + "OSType" = "Linux" + } + }, + @{ + "Name" = "Functions-Flex-Node-" + $flexTestRunId + "Runtime" = "Node" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $flexStorageAccountInfo["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" = $flexStorageAccountInfo["Python"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "3.12" + "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" = $flexStorageAccountInfo["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" = $flexStorageAccountInfo["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" = $flexStorageAccountInfo["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-FlexConsumptionPlan -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName + + # 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" -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.OSType | Should -Be "Linux" + $functionApp.State | Should -Be "Running" + + # Validate app service plan and settings + Test-FlexConsumptionPlan -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName + + Test-FlexConsumptionAppSettings -AppName $appName ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSettings $expectedAppSettings + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + + 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" } + + $appName = "Functions-Node-SystemIdentity-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + $expectedSku = "FC1" # ZoneRedundant SKU + + Write-Verbose "Creating ZoneRedundant Flex Consumption app with SystemAssigned identity for deployment storage" -Verbose + + try { + + Write-Verbose "Creating ZoneRedundant 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" ` + -EnableZoneRedundancy + + 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.OSType | Should -Be "Linux" + $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 + 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 + $flexIdentityInfo = $env.flexIdentityInfo + + 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 "Identity resource ID: $($flexIdentityInfo.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 $flexIdentityInfo.Id ` + -IdentityType "UserAssigned" ` + -IdentityID $flexIdentityInfo.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.OSType | Should -Be "Linux" + $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 $flexIdentityInfo.Id + + # Validate app user assigned identity + $functionApp.IdentityType | Should -Be "UserAssigned" + $userAssignedIdentity = $functionApp.IdentityUserAssignedIdentity.AdditionalProperties + $userAssignedIdentity.ContainsKey($flexIdentityInfo.Id) | Should -Be $true + + # Validate app service plan + Test-FlexConsumptionPlan -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName + + # 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-FlexConsumptionPlan -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName + } + 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-FlexConsumptionPlan -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName + } + 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 + } +} diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 7ce0cc6fb1e6..4cb3b110ece7 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 } ) @@ -159,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 }, @{ @@ -169,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 }, @{ @@ -179,8 +181,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 }, @{ @@ -189,8 +191,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 } ) @@ -203,7 +205,15 @@ function setupEnv() { } # Create names to be used in the tests - $functionNamePowerShell = "Functions-PowerShell-" + (RandomString -len 10) + $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) + $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) @@ -212,10 +222,19 @@ 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('functionNamePowerShellNew5', $functionNamePowerShellNew5) | Out-Null $env.add('functionNameContainer', $functionNameContainer) | Out-Null $env.add('functionNameTestApp', $functionNameTestApp) | Out-Null $env.add('functionNameDotNet', $functionNameDotNet) | Out-Null @@ -224,6 +243,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 @@ -238,6 +258,45 @@ function setupEnv() { $newApplInsights = New-AzApplicationInsights -ResourceGroupName $env.resourceGroupNameWindowsPremium -Name $newApplInsightsName -Location $location $env.add('newApplInsights', $newApplInsights) | Out-Null + # Create Flex Consumption resources + Write-Verbose "Creating Flex Consumption resources..." -Verbose + $flexTestRunId = 111125 + $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 + + # Create one storage account per runtime for Flex Consumption tests. + # The storage account name must be unique and at most 24 characters long. + Write-Verbose "Creating storage accounts for Flex Consumption tests" -Verbose + $flexStorageAccountInfo=@{} + 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 + + $flexStorageAccountInfo[$runtimeName] = $storageAccountName + } + + Write-Host "Create user assigned managed identity for Flex Consumption tests" -ForegroundColor Yellow + $flexIdentityName = "my-flex-app-uai-" + $flexTestRunId + $flexIdentityInfo = New-AzUserAssignedIdentity -ResourceGroupName $flexResourceGroupName -Name $flexIdentityName -Location $flexLocation + + $env.add('flexTestRunId', $flexTestRunId) | Out-Null + $env.add('flexLocation', $flexLocation) | Out-Null + $env.add('flexResourceGroupName', $flexResourceGroupName) | Out-Null + $env.add('flexStorageAccountInfo', $flexStorageAccountInfo) | Out-Null + $env.add('flexIdentityInfo', $flexIdentityInfo) | Out-Null + $envFile = 'env.json' if ($TestMode -eq 'live') { $envFile = 'localEnv.json' @@ -251,6 +310,7 @@ function cleanupEnv() { $env:FunctionsTestMode = $null # Clean test resources + Remove-AzResourceGroup -Name $env.flexResourceGroupName Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsPremium Remove-AzResourceGroup -Name $env.resourceGroupNameLinuxPremium Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsConsumption From 616c46c0debad93af2723f7ae03edef7e87d24f0 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 20:09:08 -0800 Subject: [PATCH 08/26] Validate IdentityType earlier, before creating any resources --- .../custom/New-AzFunctionApp.ps1 | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 9d3ce71626cb..961f1fc932db 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -452,6 +452,30 @@ Example: } } + # 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 + + } + + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } + } + $servicePlan = $null $dockerRegistryServerUrl = $null @@ -995,30 +1019,6 @@ Example: } } - # 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 - - } - - $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity - } - } - # Set app settings and site configuration $siteConfig.AppSetting = $appSettings $functionAppDef.Config = $siteConfig @@ -1081,7 +1081,7 @@ Example: } if ($flexConsumptionStorageContainerCreated) { - Az.Functions.internal\Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params + Az.Functions.internal\Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -AccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params } if ($appInsightCreated -and ($null -ne $newAppInsightsProject)) From b4461dd930f1d8bd1e2bc851001b9a1407d2b7ad Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 11 Nov 2025 23:27:37 -0800 Subject: [PATCH 09/26] Update tests --- ...date-Remove-AzFunctionAppSetting.Tests.ps1 | 53 +- .../test/New-AzFunctionApp.ACA.Tests.ps1 | 41 +- .../test/New-AzFunctionApp.Tests.ps1 | 510 +++++++++++------- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 360 +++++++------ ...-Update-Remove-AzFunctionAppPlan.Tests.ps1 | 68 ++- .../test/Remove-AzFunctionApp.Tests.ps1 | 39 +- 6 files changed, 665 insertions(+), 406 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..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 @@ -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,21 +87,22 @@ 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) { $appSettings.ContainsKey($appSettingName) | Should be $false } - # Delete app settings using InputObject - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + 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) @@ -97,10 +112,12 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } 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..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,20 +24,18 @@ 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 "" 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 @@ -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 diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 586fb3c391f8..31278c00ecc8 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -17,18 +17,31 @@ 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 ` + 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" - $functionApp = Get-AzFunctionApp -Name $functionName -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 "Custom Image" $functionApp.SiteConfig.LinuxFxVersion | Should -Be $expectedLinuxFxVersion @@ -39,10 +52,12 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxPremium -ErrorAction SilentlyContinue + Write-Verbose "Delete 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 } } } @@ -88,7 +103,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "DotNet-Isolated" - "RuntimeVersion" = "6" + "RuntimeVersion" = "9" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -96,7 +111,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "PowerShell" - "RuntimeVersion" = "7.2" + "RuntimeVersion" = "7.4" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -104,7 +119,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "Java" - "RuntimeVersion" = "17" + "RuntimeVersion" = "21" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -112,19 +127,11 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "Node" - "RuntimeVersion" = "18" + "RuntimeVersion" = "22" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location "ExpectedOSType" = "Windows" - }, - @{ - "Runtime" = "Python" - "RuntimeVersion" = "3.10" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxPremium - "Location" = $env.location - "ExpectedOSType" = "Linux" } ) @@ -145,13 +152,20 @@ Describe 'New-AzFunctionApp' { try { - $functionName = $env.functionNameTestApp - - &{ + $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) { - New-AzFunctionApp -Name $functionName ` + Write-Verbose "Create function app with runtime version" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -161,7 +175,8 @@ Describe 'New-AzFunctionApp' { } else { - New-AzFunctionApp -Name $functionName ` + Write-Verbose "Create function app without runtime version" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -173,6 +188,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'." @@ -182,6 +198,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 @@ -195,13 +212,11 @@ Describe 'New-AzFunctionApp' { $runtimeVersionNotSupported = @{ "Linux" = @{ "4" = @{ - "Node" = "10" "Python" = "3.6" } } "Windows" = @{ "4" = @{ - "Node" = "10" "PowerShell" = "6.2" } } @@ -218,8 +233,16 @@ Describe 'New-AzFunctionApp' { foreach ($runtime in $runtimeVersionNotSupported[$OSType][$functionsVersion].Keys) { - $functionName = $env.functionNameTestApp + $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" @@ -229,7 +252,7 @@ Describe 'New-AzFunctionApp' { $myError = $null try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccountName $storageAccountName ` @@ -242,10 +265,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 } } @@ -259,6 +285,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 ` @@ -267,40 +294,65 @@ 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" { - $functionName = $env.functionNamePython + $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 + + $runtime = "python" + Write-Verbose "runtime: $runtime" -Verbose + + $runtimeVersion = "3.13" + Write-Verbose "Runtime version: $runtimeVersion" -Verbose try { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameLinuxPremium ` - -PlanName $env.planNameWorkerTypeLinux ` - -StorageAccount $env.storageAccountLinux ` - -Runtime Python ` - -RuntimeVersion "3.10" ` + Write-Verbose "Creating Linux function app with Python runtime" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 - $functionApp = Get-AzFunctionApp -Name $functionName -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" + $functionApp.Runtime | Should -Be $runtime + $functionApp.SiteConfig.LinuxFxVersion | Should -Be "$runtime|$runtimeVersion" - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -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 $functionName -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -316,7 +368,9 @@ Describe 'New-AzFunctionApp' { # - Tag values # - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShell + $resourceGroupName = $env.resourceGroupNameWindowsConsumption + $storageAccountName = $env.storageAccountWindows $location = 'centralus' $tags = @{ "MyTag1" = "MyTag1Value1" @@ -329,32 +383,39 @@ 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 $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsConsumption ` + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` -Location $location ` - -StorageAccount $env.storageAccountWindows ` + -StorageAccount $storageAccountName ` -OSType "Windows" ` -Runtime "PowerShell" ` - -RuntimeVersion "7.2" ` + -RuntimeVersion "7.4" ` -FunctionsVersion 4 ` -Tag $tags ` -AppSetting $appSetting - $functionApp = Get-AzFunctionApp -Name $functionName -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 - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsConsumption + Write-Verbose "Validating app settings..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption foreach ($appSettingName in $appSetting.Keys) { $expectedValue = $appSetting[$appSettingName] @@ -367,84 +428,123 @@ Describe 'New-AzFunctionApp' { $applicationSettings[$appSettingName] | Should Be $expectedValue } - # Validate WEBSITE_CONTENTSHARE - $applicationSettings["WEBSITE_CONTENTSHARE"] | Should Match $functionName + 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")) + foreach ($appSettingName in @("AzureWebJobsStorage", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING")) { $applicationSettings[$appSettingName] | Should Match $expectedSuffix } } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsConsumption -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } It "Create a function app with 'UserAssigned' managed identity " { - $functionName = $env.functionNamePowerShell + $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 { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + Write-Verbose "Creating function app with a UserAssigned managed identity" -Verbose + New-AzFunctionApp -Name $appName ` + -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 $functionName -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 $functionName -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } It "Create a function app with custom app settings and 'SystemAssigned' managed identity " { - $functionName = $env.functionNamePowerShell + $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 { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + Write-Verbose "Creating function app with a SystemAssigned managed identity" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -IdentityType SystemAssigned ` -AppSetting $appSetting - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + 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 - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + Write-Verbose "Validating app settings..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium foreach ($appSettingName in $appSetting.Keys) { @@ -453,10 +553,12 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + Write-Verbose "Cleaning up the function app..." -Verbose + $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 } } } @@ -466,80 +568,142 @@ Describe 'New-AzFunctionApp' { # Make sure user identiy is available $expetedErrorId = "IdentityIDIsRequiredForUserAssignedIdentity" - $functionName = $env.functionNamePowerShell + $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 = { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + Write-Verbose "Creating function app with a UserAssigned managed identity but without IdentityID" -Verbose + New-AzFunctionApp -Name $appName ` + -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" { - $functionName = $env.functionNameDotNet + $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 + + $runtime = "dotnet" + Write-Verbose "Runtime: $runtime" -Verbose + + $runtimeVersion = 8 + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + + $expectedLinuxFxVersion = "DOTNET|8.0" try { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameLinuxConsumption ` - -Location $env.location ` - -StorageAccount $env.storageAccountLinux ` - -Runtime DotNet ` - -RuntimeVersion 6 ` + Write-Verbose "Creating a DotNet function app in consumption for Linux" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -Location $location ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -OSType Linux - $functionApp = Get-AzFunctionApp -Name $functionName -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" + $functionApp.Runtime | Should -Be $runtime + $functionApp.SiteConfig.LinuxFxVersion | Should -Be $expectedLinuxFxVersion } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } It "Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project." { - $functionName = $env.functionNamePowerShell + $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 + + $appSettingName = "APPLICATIONINSIGHTS_CONNECTION_STRING" try { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion 7.2 ` + Write-Verbose "Creating function app with -DisableApplicationInsights" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -DisableApplicationInsights - $functionApp = Get-AzFunctionApp -Name $functionName -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 $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $applicationSettings.ContainsKey("APPINSIGHTS_INSTRUMENTATIONKEY") | Should -Be $false + Write-Verbose "Validating that the app setting '$appSettingName' does not exist..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName + $applicationSettings.ContainsKey($appSettingName) | Should -Be $false } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -547,107 +711,46 @@ 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" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption - "Location" = $env.location - "OSType" = "Linux" - "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Node|18" - } - }, - @{ - "Name" = $env.functionNamePython - "Runtime" = "Python" - "RuntimeVersion" = "3.10" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption - "Location" = $env.location - "OSType" = "Linux" - "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Python|3.10" - } - }, - @{ - "Name" = $env.functionNamePowerShell - "Runtime" = "PowerShell" - "RuntimeVersion" = "7.2" + "RuntimeVersion" = "22" "StorageAccountName" = $env.storageAccountLinux "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption "Location" = $env.location "OSType" = "Linux" "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "PowerShell|7.2" + "LinuxFxVersion" = "Node|22" } } # Premium function app service plan @{ "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" - "StorageAccountName" = $env.storageAccountWindows - "ResourceGroupName" = $env.resourceGroupNameWindowsPremium - "PlanName" = $env.planNameWorkerTypeWindows - "OSType" = "Windows" - "ExpectedSiteConfig" = @{ - "JavaVersion" = "17" - "netFrameworkVersion" = "v6.0" - } - } @{ "Name" = $env.functionNameCustomHandler "Runtime" = "Custom" @@ -668,13 +771,21 @@ Describe 'New-AzFunctionApp' { foreach ($testCase in $functionAppCreationTestCases) { $functionsVersion = 4 - $functionName = $testCase["Name"] + $appName = $testCase["Name"] $runtime = $testCase["Runtime"] $runtimeVersion = $testCase["RuntimeVersion"] $resourceGroupName = $testCase["ResourceGroupName"] $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 @@ -690,6 +801,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 @@ -698,7 +813,7 @@ Describe 'New-AzFunctionApp' { { if ($runtimeVersion) { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -709,7 +824,7 @@ Describe 'New-AzFunctionApp' { } else { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -722,7 +837,7 @@ Describe 'New-AzFunctionApp' { { if ($runtimeVersion) { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccountName $storageAccountName ` @@ -733,7 +848,7 @@ Describe 'New-AzFunctionApp' { } else { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccountName $storageAccountName ` @@ -743,16 +858,21 @@ Describe 'New-AzFunctionApp' { } } - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $resourceGroupName + 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 - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $resourceGroupName - $applicationSettings.FUNCTIONS_EXTENSION_VERSION | Should be "~$functionsVersion" + Write-Verbose "Validating FUNCTIONS_EXTENSION_VERSION and app settings..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName + $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")) { + Write-Verbose "Validating SiteConfig properties..." -Verbose $expectedSiteConfig = $testCase["ExpectedSiteConfig"] foreach ($propertyName in $expectedSiteConfig.Keys) { @@ -763,6 +883,7 @@ Describe 'New-AzFunctionApp' { if ($testCase.ContainsKey("ExpectedAppSettings")) { + Write-Verbose "Validating custom app settings..." -Verbose $expectedAppSettings = $testCase["ExpectedAppSettings"] foreach ($appSettingName in $expectedAppSettings.Keys) { @@ -773,10 +894,12 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $resourceGroupName -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 + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -791,18 +914,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 } 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..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 @@ -13,139 +13,33 @@ while(-not $mockingPath) { Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' { - It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { - - # 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. - - $functionName = $env.functionNamePowerShell - $location = "centralus" - $tags = @{ - "MyTag1" = "MyTag1Value1" - "MyTag2" = "MyTag1Value2" - } + It "Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob 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 ` - -Runtime PowerShell ` - -RuntimeVersion "7.2" ` - -FunctionsVersion 4 ` - -IdentityType SystemAssigned ` - -Tag $tags - - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $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] - } - - # Update function app plan - Write-Verbose "Create premium function app plan" -Verbose - $planName = $env.functionAppPlanName - New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -WorkerType "Windows" ` - -MinimumWorkerCount 1 ` - -MaximumWorkerCount 10 ` - -Location $location ` - -Sku EP1 - - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $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 - - Write-Verbose "Update function app plan hosting plan" -Verbose - Update-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -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.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 + Write-Verbose "Creating function app -AsJob" -Verbose + $appName = $env.functionNamePowerShellNew2 + Write-Verbose "App name: $appName" -Verbose - # 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 + $planName = $env.planNameWorkerTypeWindows + Write-Verbose "Plan name: $planName" -Verbose - $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 + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose - # Validate tags - foreach ($tagName in $tags.Keys) - { - $functionApp.Tag.AdditionalProperties[$tagName] | Should Be $tags[$tagName] - } + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $applicationSettings["APPINSIGHTS_INSTRUMENTATIONKEY"] | Should -Be $newApplInsights.InstrumentationKey - } - finally - { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue - if ($functionApp) - { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue - } - - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue - if ($plan) - { - Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue - } - } - } - - It "Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp" { - - $functionName = $env.functionNamePowerShell + $osType = "Windows" + Write-Verbose "OS type: $osType" -Verbose - try - { - Write-Verbose "Creating function app -AsJob" -Verbose - $functionAppJob = New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -OSType "Windows" ` - -Runtime "PowerShell" ` - -RuntimeVersion 7.2 ` + $functionAppJob = New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -OSType $osType ` + -Runtime PowerShell ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` -AsJob @@ -154,88 +48,236 @@ 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.OSType | Should -Be "Windows" + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + $functionApp.OSType | Should -Be $osType $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 + Write-Verbose "Validate that the function app was deleted." -Verbose + $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 + Write-Verbose "Cleaning up function app" -Verbose + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue } } } 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 ` - -OSType "Windows" ` - -Runtime "PowerShell" ` - -RuntimeVersion 7.2 ` + $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 $osType ` + -Runtime PowerShell ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $functionApp.OSType | Should -Be "Windows" + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + $functionApp.OSType | Should -Be $osType $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 + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue + } + } + } + + It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { + + try + { + Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose + $appName = $env.functionNamePowerShellNew5 + Write-Verbose "App name: $appName" -Verbose + + $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 + + $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 + + $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 ` + -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 + 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 + 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 } } } 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..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 @@ -13,26 +13,46 @@ 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' + 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 $env.resourceGroupNameWindowsPremium ` - -WorkerType "Windows" ` + -ResourceGroupName $resourceGroupName ` + -WorkerType $workerType ` -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 +64,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 +77,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 +99,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 +119,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 +129,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 +144,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 +161,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 +174,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 +191,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 +201,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 +215,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 diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 index 47915e4e4853..9ed2309c7c92 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 @@ -18,35 +18,48 @@ 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 + 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 $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 ` - -WorkerType "Windows" ` + -ResourceGroupName $resourceGroupName ` + -WorkerType $workerType ` -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 +67,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 5c83b6f25849e92ebb8a445388c1622297fe41f8 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 12 Nov 2025 00:55:32 -0800 Subject: [PATCH 10/26] Update Flex Consumption tests --- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 22 +++++----- .../Functions.Autorest/test/utils.ps1 | 41 +++++++++++-------- 2 files changed, 34 insertions(+), 29 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 b9c5e15f3e01..a480a6a0b854 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -33,10 +33,10 @@ Describe 'New-AzFunctionApp - Flex Consumption' { # Write-Verbose "Creating resource group: $flexResourceGroupName in location: $flexLocation" -Verbose # New-AzResourceGroup -Name $flexResourceGroupName -Location $flexLocation | Out-Null - $flexTestRunId = $env.flexTestRunId - $flexLocation = $env.flexLocation - $flexResourceGroupName = $env.flexResourceGroupName - $flexStorageAccountInfo = $env.flexStorageAccountInfo + $flexTestRunId = $env['flexTestRunId'] + $flexLocation = $env['flexLocation'] + $flexResourceGroupName = $env['flexResourceGroupName'] + $flexIdentityInfo = $env['flexIdentityInfo'] # Helper function to validate core Flex Consumption properties function Test-FlexConsumptionProperties { @@ -151,7 +151,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-DotNetIsolated-" + $flexTestRunId "Runtime" = "DotNet-Isolated" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $flexStorageAccountInfo["DotNet-Isolated"] + "StorageAccountName" = $env['flexStorageAccountDotNetIsolated'] "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -172,7 +172,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Node-" + $flexTestRunId "Runtime" = "Node" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $flexStorageAccountInfo["Node"] + "StorageAccountName" = $env['flexStorageAccountNode'] "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -192,7 +192,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Python-" + $flexTestRunId "Runtime" = "Python" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $flexStorageAccountInfo["Python"] + "StorageAccountName" = $env['flexStorageAccountPython'] "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -212,7 +212,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Java-" + $flexTestRunId "Runtime" = "Java" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $flexStorageAccountInfo["Java"] + "StorageAccountName" = $env['flexStorageAccountJava'] "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -232,7 +232,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-PowerShell-" + $flexTestRunId "Runtime" = "PowerShell" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $flexStorageAccountInfo["PowerShell"] + "StorageAccountName" = $env['flexStorageAccountPowerShell'] "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -252,7 +252,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Custom-" + $flexTestRunId "Runtime" = "Custom" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $flexStorageAccountInfo["Custom"] + "StorageAccountName" = $env['flexStorageAccountCustom'] "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -474,7 +474,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $appName = "Functions-Pwsh-UserAssignedIdentity-" + $flexTestRunId $storageAccountName = $baseTestCase.StorageAccountName $runtime = $baseTestCase.Runtime - $flexIdentityInfo = $env.flexIdentityInfo + $flexIdentityInfo = $env['flexIdentityInfo'] try { Write-Verbose "Creating Flex Consumption app with UserAssigned identity for deployment storage" -Verbose diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 4cb3b110ece7..c853e9fb73ea 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -110,7 +110,7 @@ function setupEnv() { ) $storageAccountsToCreate | ForEach-Object { - Write-Host "Creating storage account $($psitem.Name)" -ForegroundColor Yellow + Write-Host "Creating storage account $($psitem.Name)" -ForegroundColor Green New-AzStorageAccount @psitem | Out-Null } @@ -148,8 +148,9 @@ function setupEnv() { $env.add('servicePlansToCreate', $servicePlansToCreate) | Out-Null + Write-Host "Creating function app plans" -ForegroundColor Green $servicePlansToCreate | ForEach-Object { - Write-Host "Creating service plan $($psitem.Name)" -ForegroundColor Yellow + Write-Host "Creating plan $($psitem.Name)" -ForegroundColor Yellow New-AzFunctionAppPlan @psitem | Out-Null } @@ -259,32 +260,37 @@ function setupEnv() { $env.add('newApplInsights', $newApplInsights) | Out-Null # Create Flex Consumption resources - Write-Verbose "Creating Flex Consumption resources..." -Verbose - $flexTestRunId = 111125 + Write-Host "Creating Flex Consumption resources..." -ForegroundColor Green + $flexTestRunId = 114125 $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 + # Create resource group for Flex Consumption tests + Write-Host "Creating resource group: $flexResourceGroupName in location: $flexLocation" -ForegroundColor Yellow New-AzResourceGroup -Name $flexResourceGroupName -Location $flexLocation | Out-Null # Create one storage account per runtime for Flex Consumption tests. # The storage account name must be unique and at most 24 characters long. - Write-Verbose "Creating storage accounts for Flex Consumption tests" -Verbose - $flexStorageAccountInfo=@{} + Write-Host "Creating storage accounts for Flex Consumption tests" -ForegroundColor Green + foreach ($runtimeName in @("DotNet-Isolated", "Node", "Java", "PowerShell", "Python", "Custom")) { - $storageAccountName = "funcappflexsa" + $flexTestRunId + $runtimeName.ToLower() + # Create unique storage account name: flexapp[runtime]sa[runid] + $runtimeNameNormalized = $runtimeName.Replace("-", "").ToLower() + $storageAccountName = "flexapp" + $runtimeNameNormalized + "sa" + $flexTestRunId $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 - $flexStorageAccountInfo[$runtimeName] = $storageAccountName + Write-Host "Creating storage account: $storageAccountName in resource group: $flexResourceGroupName" -ForegroundColor Yellow + New-AzStorageAccount -ResourceGroupName $flexResourceGroupName ` + -Name $storageAccountName ` + -Location $flexLocation ` + -SkuName Standard_GRS ` + -Kind StorageV2 ` + -AllowBlobPublicAccess $false | Out-Null + + # Add to $env with a key like 'flexStorageAccountDotNetIsolated', 'flexStorageAccountNode', etc. + $envKey = "flexStorageAccount" + $runtimeName.Replace("-", "") + $env.add($envKey, $storageAccountName) | Out-Null } Write-Host "Create user assigned managed identity for Flex Consumption tests" -ForegroundColor Yellow @@ -294,7 +300,6 @@ function setupEnv() { $env.add('flexTestRunId', $flexTestRunId) | Out-Null $env.add('flexLocation', $flexLocation) | Out-Null $env.add('flexResourceGroupName', $flexResourceGroupName) | Out-Null - $env.add('flexStorageAccountInfo', $flexStorageAccountInfo) | Out-Null $env.add('flexIdentityInfo', $flexIdentityInfo) | Out-Null $envFile = 'env.json' From 0d9d5c665de215a5d7d050527a5e5bfc8cb620fb Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 12 Nov 2025 09:57:47 -0800 Subject: [PATCH 11/26] Update utils and Flex tests --- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 22 +++++++++---------- .../Functions.Autorest/test/utils.ps1 | 22 ++++++++++--------- 2 files changed, 23 insertions(+), 21 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 a480a6a0b854..4f8018aa6f46 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -33,10 +33,10 @@ Describe 'New-AzFunctionApp - Flex Consumption' { # Write-Verbose "Creating resource group: $flexResourceGroupName in location: $flexLocation" -Verbose # New-AzResourceGroup -Name $flexResourceGroupName -Location $flexLocation | Out-Null - $flexTestRunId = $env['flexTestRunId'] - $flexLocation = $env['flexLocation'] - $flexResourceGroupName = $env['flexResourceGroupName'] - $flexIdentityInfo = $env['flexIdentityInfo'] + $flexTestRunId = $env.flexTestRunId + $flexLocation = $env.flexLocation + $flexResourceGroupName = $env.flexResourceGroupName + $flexIdentityInfo = $env.flexIdentityInfo # Helper function to validate core Flex Consumption properties function Test-FlexConsumptionProperties { @@ -151,7 +151,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-DotNetIsolated-" + $flexTestRunId "Runtime" = "DotNet-Isolated" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $env['flexStorageAccountDotNetIsolated'] + "StorageAccountName" = $env.flexStorageAccountDotNetIsolated "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -172,7 +172,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Node-" + $flexTestRunId "Runtime" = "Node" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $env['flexStorageAccountNode'] + "StorageAccountName" = $env.flexStorageAccountNode "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -192,7 +192,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Python-" + $flexTestRunId "Runtime" = "Python" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $env['flexStorageAccountPython'] + "StorageAccountName" = $env.flexStorageAccountPython "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -212,7 +212,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Java-" + $flexTestRunId "Runtime" = "Java" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $env['flexStorageAccountJava'] + "StorageAccountName" = $env.flexStorageAccountJava "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -232,7 +232,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-PowerShell-" + $flexTestRunId "Runtime" = "PowerShell" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $env['flexStorageAccountPowerShell'] + "StorageAccountName" = $env.flexStorageAccountPowerShell "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -252,7 +252,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "Name" = "Functions-Flex-Custom-" + $flexTestRunId "Runtime" = "Custom" "RuntimeVersion" = $null # Use default - "StorageAccountName" = $env['flexStorageAccountCustom'] + "StorageAccountName" = $env.flexStorageAccountCustom "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ @@ -474,7 +474,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $appName = "Functions-Pwsh-UserAssignedIdentity-" + $flexTestRunId $storageAccountName = $baseTestCase.StorageAccountName $runtime = $baseTestCase.Runtime - $flexIdentityInfo = $env['flexIdentityInfo'] + $flexIdentityInfo = $env.flexIdentityInfo try { Write-Verbose "Creating Flex Consumption app with UserAssigned identity for deployment storage" -Verbose diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index c853e9fb73ea..eeaef2cd7e7f 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -85,13 +85,14 @@ function setupEnv() { } ) + Write-Host "Creating resource groups..." -ForegroundColor Green $resourceGroupsToCreate | ForEach-Object { - Write-Host "Creating resource group $($psitem.Name)" -ForegroundColor Yellow + Write-Host "Resource group: $($psitem.Name)" -ForegroundColor Yellow New-AzResourceGroup @psitem | Out-Null } # Create storage accounts - Write-Host "Creating storage accounts" -ForegroundColor Green + Write-Host "Creating storage accounts..." -ForegroundColor Green $storageAccountsToCreate = @( @{ Name = $storageAccountWindows @@ -110,7 +111,7 @@ function setupEnv() { ) $storageAccountsToCreate | ForEach-Object { - Write-Host "Creating storage account $($psitem.Name)" -ForegroundColor Green + Write-Host "Storage account: $($psitem.Name)" -ForegroundColor Yellow New-AzStorageAccount @psitem | Out-Null } @@ -148,9 +149,9 @@ function setupEnv() { $env.add('servicePlansToCreate', $servicePlansToCreate) | Out-Null - Write-Host "Creating function app plans" -ForegroundColor Green + Write-Host "Creating function app plans..." -ForegroundColor Green $servicePlansToCreate | ForEach-Object { - Write-Host "Creating plan $($psitem.Name)" -ForegroundColor Yellow + Write-Host "Plan: $($psitem.Name)" -ForegroundColor Yellow New-AzFunctionAppPlan @psitem | Out-Null } @@ -200,8 +201,9 @@ function setupEnv() { $env.add('functionAppsToCreate', $functionAppsToCreate) | Out-Null + Write-Host "Creating function apps..." -ForegroundColor Green $functionAppsToCreate | ForEach-Object { - Write-Host "Creating function app $($psitem.Name)" -ForegroundColor Yellow + Write-Host "Function app: $($psitem.Name)" -ForegroundColor Yellow New-AzFunctionApp @psitem | Out-Null } @@ -250,18 +252,18 @@ function setupEnv() { # Create user assigned identity Write-Host "Create user assigned managed identity" -ForegroundColor Yellow - $identityInfo = New-AzUserAssignedIdentity -ResourceGroupName $env.resourceGroupNameWindowsPremium -Name ID1 -Location $env.location + $identityInfo = New-AzUserAssignedIdentity -ResourceGroupName $resourceGroupNameWindowsPremium -Name ID1 -Location $location $env.add('identityInfo', $identityInfo) | Out-Null # Create new ApplInsights project Write-Host "Create application insights project" -ForegroundColor Yellow $newApplInsightsName = $functionNamePowerShell + "-new" - $newApplInsights = New-AzApplicationInsights -ResourceGroupName $env.resourceGroupNameWindowsPremium -Name $newApplInsightsName -Location $location + $newApplInsights = New-AzApplicationInsights -ResourceGroupName $resourceGroupNameWindowsPremium -Name $newApplInsightsName -Location $location $env.add('newApplInsights', $newApplInsights) | Out-Null # Create Flex Consumption resources Write-Host "Creating Flex Consumption resources..." -ForegroundColor Green - $flexTestRunId = 114125 + $flexTestRunId = 112925 $flexLocation = 'East Asia' $flexResourceGroupName = "Functions-Flex-RG-" + $flexTestRunId @@ -315,10 +317,10 @@ function cleanupEnv() { $env:FunctionsTestMode = $null # Clean test resources - Remove-AzResourceGroup -Name $env.flexResourceGroupName Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsPremium Remove-AzResourceGroup -Name $env.resourceGroupNameLinuxPremium Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsConsumption Remove-AzResourceGroup -Name $env.resourceGroupNameLinuxConsumption + Remove-AzResourceGroup -Name $env.flexResourceGroupName } From 63c212120afa38c4442c3234be164f0b086a77f7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 12 Nov 2025 09:59:21 -0800 Subject: [PATCH 12/26] Add new test recordings --- .../test/Get-AzFunctionApp.Recording.json | 953 +- ...unctionAppAvailableLocation.Recording.json | 263 +- .../test/Get-AzFunctionAppPlan.Recording.json | 368 +- ...Remove-AzFunctionAppSetting.Recording.json | 1064 +- ...FunctionApp.FlexConsumption.Recording.json | 11317 ++++++++++++++++ .../test/New-AzFunctionApp.Recording.json | 11122 ++++++--------- .../test/New-AzFunctionAppPlan.Recording.json | 187 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 5088 ++++--- ...te-Remove-AzFunctionAppPlan.Recording.json | 982 +- .../test/Remove-AzFunctionApp.Recording.json | 913 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3748 ++--- .../Functions.Autorest/test/env.json | 251 +- 12 files changed, 22979 insertions(+), 13277 deletions(-) create mode 100644 src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index 3713b8b8ab18..b9f27253a127 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "31e9b7ae-54fc-4bff-a19d-740cc6397099" ], + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "74da692c-4b76-4a94-972f-bf13216b6090" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,42 +22,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375761EBC4B\"" ], + "ETag": [ "\"1DC53C55B7F3BC0\"" ], + "x-ms-original-request-ids": [ "43a5c74a-f5c5-4186-9057-61b18cfa7f39" ], "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": [ "62361b75-f094-45b7-8314-2394ccfdfa3d" ], + "x-ms-correlation-request-id": [ "62361b75-f094-45b7-8314-2394ccfdfa3d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T111654Z:62361b75-f094-45b7-8314-2394ccfdfa3d" ], "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: 1FE3668247CB4A43BDB4F137F07D9407 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "29057" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "34244" ], + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:12:04.86\",\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:13:22.3\",\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "50" ], + "x-ms-client-request-id": [ "2ffd05d4-c3a8-4cf4-a08d-b49359c42a9d" ], "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.4", "Az.Functions/1.0.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": [ "87d6f2c2-a0c7-421e-8da6-66c7c602b0d5" ], "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/westus/c696fce7-d134-4e3e-a015-a967d6864995" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "47ff5ebc-1a3e-4dc0-bdc8-529bc5c21469" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111655Z:47ff5ebc-1a3e-4dc0-bdc8-529bc5c21469" ], "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: 734F9CE04D0F4873816E73B85D6E8E3E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "51" ], + "x-ms-client-request-id": [ "0eb5ebd9-b216-4ea9-b884-2fdb4f4a67c1" ], "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.4", "Az.Functions/1.0.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": [ "9f1afcc2-7414-46cb-9619-129dbabaea9e" ], "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/fb674d30-f9cc-4d32-b493-4567982307d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9c8a64ed-ed59-4098-9bbf-128e5a5fbf5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111655Z:9c8a64ed-ed59-4098-9bbf-128e5a5fbf5c" ], "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: 5A861C5772714BB8BE1E243254FC9700 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:54 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-unique-id": [ "52" ], + "x-ms-client-request-id": [ "12019a2e-aa82-4e1d-b921-0d984cd047e0" ], "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.4", "Az.Functions/1.0.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": [ "813933ba-5a15-4b9c-a899-7882fab9f5b4" ], "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/08caa553-c0b8-47eb-a703-747f0055ee58" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ed991c4d-786c-4a9b-a063-1241a95b8a0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:ed991c4d-786c-4a9b-a063-1241a95b8a0d" ], "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: 5DE2220524B5425FBFEA62BA61F7069D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-unique-id": [ "53" ], + "x-ms-client-request-id": [ "8e1116a7-ea2a-4d75-a726-15aa47f6fd1f" ], "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.4", "Az.Functions/1.0.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": [ "26f7ea18-49a0-49b6-8323-fa9dcbc23a0b" ], "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/83c0d612-4ed4-4b3c-975b-1a60f4dbdfca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cd532af7-b621-413e-aceb-346c79dac9c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:cd532af7-b621-413e-aceb-346c79dac9c6" ], "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: E1C32931251C485AB3661CB55CA2D86F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:55 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-unique-id": [ "54" ], + "x-ms-client-request-id": [ "5632128e-6277-45bd-87d6-5336d580a104" ], "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.4", "Az.Functions/1.0.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": [ "8e2cd315-c9a4-4dc0-a500-0ec2d92c4cf8" ], "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/3684e9f0-5a8f-48b2-8f60-6554aa615959" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "60345bc0-9cc4-4e8d-b32d-2749b222f12e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:60345bc0-9cc4-4e8d-b32d-2749b222f12e" ], "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: 3DBA7C90EE7F45C49FB98100A7864BD5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-unique-id": [ "55" ], + "x-ms-client-request-id": [ "9d115db5-cf1c-492f-952c-13d11c0278f4" ], "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.4", "Az.Functions/1.0.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": [ "1e07ed2f-0de8-4919-8a7c-8a3157190b2e" ], "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/b3258e0a-b8d2-4a2a-a552-526a2ceda76c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "281768e8-f4ed-4918-91b4-7f4d04c67b28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:281768e8-f4ed-4918-91b4-7f4d04c67b28" ], "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: 9AF0075DEB654415BDFD8774C17A76D2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:55 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-unique-id": [ "56" ], + "x-ms-client-request-id": [ "acfdcb81-4b98-4154-a5dc-6bc2dc264c8e" ], "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.4", "Az.Functions/1.0.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": [ "9a5f1e13-0992-4ecd-a9a4-ef2b1df13eb3" ], "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/cb23a638-99e7-4769-9c90-1cdbaf0ad3cb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3aaacb82-bdcb-456c-b616-fba6c7d5ae35" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111657Z:3aaacb82-bdcb-456c-b616-fba6c7d5ae35" ], "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: 963D6CEBB2D045C7966B3B8952773713 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-unique-id": [ "57" ], + "x-ms-client-request-id": [ "e5584953-cfa8-43ef-91bb-bbd70222fe90" ], "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.4", "Az.Functions/1.0.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": [ "997619a7-a4cd-49d3-b27e-eaf12cf85c36" ], "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/3547aa8e-dde3-4048-a988-6cfb0466e844" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b04c49ee-00ca-4853-988d-e9ef4297c72c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111657Z:b04c49ee-00ca-4853-988d-e9ef4297c72c" ], "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: 1FA2F5D8E67B43D3B7BF0D9B0688411E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:56 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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]+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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-unique-id": [ "58" ], + "x-ms-client-request-id": [ "16bfd2da-e363-49f5-ae7e-dcf396147230" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -428,42 +432,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37509736B80\"" ], + "ETag": [ "\"1DC53C4D9782F60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25ce3efb-f784-4b45-a584-b614e287e2d0" ], + "x-ms-request-id": [ "7d985d7e-deed-4477-ad4c-4c64551fe16c" ], "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": [ "4ac1187a-a2a6-4271-bf6e-fb923ff90c57" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111657Z:4ac1187a-a2a6-4271-bf6e-fb923ff90c57" ], "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: 36D9AEF63AA3447D904CB33CCDC1192A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7293" ], + "Content-Length": [ "8413" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "59" ], + "x-ms-client-request-id": [ "6e4bb464-266b-46ef-8b10-44f594660818" ], "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.4", "Az.Functions/1.0.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": [ "ced0f4e9-3c27-4c6a-807e-915256604d0b" ], "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/7d945f93-0430-49cf-bb13-896f9097f68c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5174ce25-b451-41ac-a994-212d3aa48804" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111703Z:5174ce25-b451-41ac-a994-212d3aa48804" ], "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: E538A964A2E348A090B1C2EFA5BB09BB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "60" ], + "x-ms-client-request-id": [ "04afa7df-a477-474a-a062-b2bfa57ec52f" ], "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.4", "Az.Functions/1.0.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": [ "848b5223-2400-4bcd-b847-e330146b8471" ], "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/bdae2164-cad0-4b1b-b9c5-99058d1ff5d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3b5d88ab-f34d-4a7e-8900-09f1d361a82d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:3b5d88ab-f34d-4a7e-8900-09f1d361a82d" ], "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: 1253E41DF1AB476680FF335758DEA84A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:03Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17: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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-unique-id": [ "61" ], + "x-ms-client-request-id": [ "d0facad5-799e-4c7e-b0c4-7ce7ad284fe4" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -564,42 +569,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3752BC87B80\"" ], + "ETag": [ "\"1DC53C4FCDC586B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b33cbac3-5ac5-47a6-a332-baced76a6259" ], + "x-ms-request-id": [ "bfcbaf7f-3e38-47f9-a376-7513705d6e7b" ], "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": [ "071cc590-99db-4a1f-9c29-d6aa21af3f75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:071cc590-99db-4a1f-9c29-d6aa21af3f75" ], "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: 82D87C10F70D42C4807FF80A9C20FC06 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7324" ], + "Content-Length": [ "8322" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-unique-id": [ "62" ], + "x-ms-client-request-id": [ "731b8c1b-cbd5-4e82-8708-b7cdb66c9ece" ], "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.4", "Az.Functions/1.0.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": [ "07959927-cb99-4542-a1a5-83c795485b5a" ], "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/197b044e-fa9a-4500-91e8-68616619bf06" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6a1ed162-93bd-42ab-ab51-d5499a747a0b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:6a1ed162-93bd-42ab-ab51-d5499a747a0b" ], "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: 0D089DDF020B4E9694309BAC88C5D8CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-unique-id": [ "63" ], + "x-ms-client-request-id": [ "5118b5ef-1e4f-4514-a543-810b26213d63" ], "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.4", "Az.Functions/1.0.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": [ "2d49ef9f-a610-450e-baf1-edcce407ded8" ], "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/f8fd0f3f-553c-411f-bdda-df6b90d2a7da" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2c3ce9d3-2552-4fdd-8e27-7d9561847f07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:2c3ce9d3-2552-4fdd-8e27-7d9561847f07" ], "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: 21547DB8BE8648BA807FB22081515DEF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:03 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-unique-id": [ "64" ], + "x-ms-client-request-id": [ "f097c059-96c0-4a3e-8d8a-f618e529cfb6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -700,42 +706,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375519D3C60\"" ], + "ETag": [ "\"1DC53C52D56D3C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b118de89-d449-4851-80b4-0431c74fc185" ], + "x-ms-request-id": [ "59d3c898-bee3-4f3f-96b2-bf27619adef0" ], "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": [ "3c973ee0-8170-40ce-b594-ecdb583fb8a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111705Z:3c973ee0-8170-40ce-b594-ecdb583fb8a0" ], "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: F8EA396D061E4F50A242ABE03EBEC1D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8682" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:12:04.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-unique-id": [ "65" ], + "x-ms-client-request-id": [ "dfc0a6d1-923b-418c-9a74-2da39ddb64f3" ], "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.4", "Az.Functions/1.0.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": [ "03a03530-a85e-445e-8711-7564b4197b41" ], "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/20a4fe7a-5e55-4874-9de9-c70176f40b61" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a876b4a4-fe61-4493-8239-eb33db9d46ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111705Z:a876b4a4-fe61-4493-8239-eb33db9d46ec" ], "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: 6907B691277C40D6BF18986F1E16A54D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-unique-id": [ "66" ], + "x-ms-client-request-id": [ "37062f24-0eda-499c-814c-55395e9367fb" ], "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.4", "Az.Functions/1.0.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": [ "f3012104-a318-4132-9db9-e2730c3d61fc" ], "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/6af4066e-1ecf-4190-a4f5-fb19182226d6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "73809267-4f6d-49e6-a105-11030df76348" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111705Z:73809267-4f6d-49e6-a105-11030df76348" ], "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: ECA8FFA2DE7844CA887E42E5D184CA52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:05 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-unique-id": [ "67" ], + "x-ms-client-request-id": [ "2b0f69ec-0c54-4cdb-9146-1867df002d83" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -836,42 +843,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375761EBC4B\"" ], + "ETag": [ "\"1DC53C55B7F3BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6928fab3-8952-4c95-a47b-4bb3ed2681c5" ], + "x-ms-request-id": [ "f231ba95-31c1-40c3-83e8-1598776154e3" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dcaa5978-5cf7-4f48-8445-bde1f9f0bae1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:dcaa5978-5cf7-4f48-8445-bde1f9f0bae1" ], "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: 8216560B7C934867B57A1BDB18B340FE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8744" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:13:22.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-unique-id": [ "68" ], + "x-ms-client-request-id": [ "ce1bdb68-b323-4842-85b8-cb782f1a3a14" ], "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.4", "Az.Functions/1.0.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": [ "120cc9e5-c315-4b13-845d-67d1642cfc58" ], "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/2ec34743-7435-4f87-972e-be101597bd13" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5f076fe4-8a1c-45cf-b4cd-a759745b7e3f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:5f076fe4-8a1c-45cf-b4cd-a759745b7e3f" ], "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: B94035D6AAD14622AB7A230BD76FEE08 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-unique-id": [ "69" ], + "x-ms-client-request-id": [ "6ffb8359-9bd5-40e9-97ae-14daee165ffa" ], "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.4", "Az.Functions/1.0.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": [ "f5af1858-77b4-442a-9bb6-358bb07b066a" ], "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/c2fb4e36-cd48-4b37-a873-2c28e2ad722b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "76c8e878-1fc8-4e22-90ab-4a76f3057f6a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:76c8e878-1fc8-4e22-90ab-4a76f3057f6a" ], "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: DC08B1370A434299862BC84640FCDC2A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:06 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-lf9t8w/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-lf9t8w/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-unique-id": [ "70" ], + "x-ms-client-request-id": [ "15cad44b-7bc3-4598-8969-b69f58290b96" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -972,41 +980,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "773bc726-3e0f-417b-980d-5971789ffa72" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1f6bf0cc-d584-4e97-8d6e-33564258da75" ], + "x-ms-correlation-request-id": [ "1f6bf0cc-d584-4e97-8d6e-33564258da75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:1f6bf0cc-d584-4e97-8d6e-33564258da75" ], "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: 2356E7AECBA042D6B0DDE437346DB130 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7319" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "8235" ], + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "71" ], + "x-ms-client-request-id": [ "63219dea-8a25-4cbf-a31e-f087762cd9a2" ], "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.4", "Az.Functions/1.0.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": [ "5508fc11-6139-4273-a54d-b9c5e33f006e" ], "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/812dbbfc-8344-4fba-98f5-00989c2dae00" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "90abf14e-aaf6-49e5-8ecd-b62dcb7c3747" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111708Z:90abf14e-aaf6-49e5-8ecd-b62dcb7c3747" ], "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: 4BAE6DDA138942E086227E1D358C2EF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "72" ], + "x-ms-client-request-id": [ "bd635250-92d7-43d3-a197-79e7d5dda940" ], "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.4", "Az.Functions/1.0.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": [ "10f92146-4f0c-4113-8ea6-0d1e68c5f7da" ], "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/3f379078-2ddb-4f5a-8c9f-344852ef0705" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "74fbf39a-7d41-4e6e-8451-b5980483b8b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111709Z:74fbf39a-7d41-4e6e-8451-b5980483b8b2" ], "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: 93972BE83F744F689CCF3031BE662224 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:09 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -1091,12 +1100,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "7ec59d47-30b1-4d1a-975a-ce9bbbb7df2c" ], + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "a9fcf3ff-610f-4e9d-9c56-20f376885a96" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1107,42 +1116,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375761EBC4B\"" ], + "ETag": [ "\"1DC53C55B7F3BC0\"" ], + "x-ms-original-request-ids": [ "9847b07e-cbaa-4104-a07e-7792633e9554" ], "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": [ "d4be766d-972a-4c2b-893b-3dbeb1fec3a0" ], + "x-ms-correlation-request-id": [ "d4be766d-972a-4c2b-893b-3dbeb1fec3a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111710Z:d4be766d-972a-4c2b-893b-3dbeb1fec3a0" ], "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: 76CBDBBC657446D982EAEB70A3B68946 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "29057" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "34244" ], + "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:12:04.86\",\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:13:22.3\",\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-unique-id": [ "74" ], + "x-ms-client-request-id": [ "c17d9135-ea50-4d23-bd49-a0ca38609fdc" ], "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.4", "Az.Functions/1.0.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": [ "9f5c4d58-3af3-4bce-bbab-7ea7099a2cc9" ], "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/westus/1267f7ba-45df-4ec5-9760-fcbe4e46172a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d143cae2-73c7-4cbd-8dea-a6cc810ba43d" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111710Z:d143cae2-73c7-4cbd-8dea-a6cc810ba43d" ], "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: 40BF957C280E4B0F98148533F1E4EFF0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-unique-id": [ "75" ], + "x-ms-client-request-id": [ "902251ba-24c3-4e93-960d-6bac2b54948c" ], "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.4", "Az.Functions/1.0.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": [ "d8140ae5-0d9d-4540-bd10-b322458d4eba" ], "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/25d2cc46-5a4b-4b20-b3e1-8286f8c5d686" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c32ff079-97ab-424f-9a58-999fa99e5dc4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:c32ff079-97ab-424f-9a58-999fa99e5dc4" ], "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: 89A44B5C13014D12A2B278D1B7CCAF12 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:11 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-unique-id": [ "76" ], + "x-ms-client-request-id": [ "f407d6d4-af22-48a9-80a7-c26734f1fd2c" ], "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.4", "Az.Functions/1.0.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": [ "5f340ac2-d4a6-4309-bbec-1c29f22b790a" ], "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/9975b1b0-ed51-4a6d-b03f-7e1979682c53" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4034bdd5-d596-42e8-9f19-de5ce168972b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:4034bdd5-d596-42e8-9f19-de5ce168972b" ], "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: EEA09BD2187743B1BF87FBE9299F052C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1213" ], "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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-unique-id": [ "77" ], + "x-ms-client-request-id": [ "6d9db8b6-bf91-478f-b48b-2ba7dd10df0a" ], "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.4", "Az.Functions/1.0.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": [ "c38f2fb9-9314-4dbb-91bf-1e86444b3352" ], "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/87f53392-53c5-43a7-a5c9-51decbefe1ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1b01f864-ae5e-4e68-b4c7-695e2de6c31c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:1b01f864-ae5e-4e68-b4c7-695e2de6c31c" ], "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: 26C2F22CA3094781A3DB231D64C20A52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4188" ], "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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "78" ], + "x-ms-client-request-id": [ "fcd0720c-9107-4f83-8690-bdf23fc78647" ], "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.4", "Az.Functions/1.0.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": [ "120ecc74-e02d-47bc-8bb7-264c432fc8c4" ], "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/6c0c00de-60b0-4898-b2fd-e9e24b9cfd97" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "33a383c5-b238-4dfc-a663-c58cad553ce6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:33a383c5-b238-4dfc-a663-c58cad553ce6" ], "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: FF1C866894334F69B02069975FED4964 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1172" ], "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-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-unique-id": [ "79" ], + "x-ms-client-request-id": [ "1c8b8786-4656-457b-a095-d3cddce26efd" ], "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.4", "Az.Functions/1.0.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": [ "e86d919c-7a22-4e9c-9c11-b5b6ca525484" ], "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/5240da63-39fb-47b1-973f-d316783d7019" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "306ab39b-37cb-40c8-b785-2ee2a4defe6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111712Z:306ab39b-37cb-40c8-b785-2ee2a4defe6e" ], "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: C5E7CB5EF22A42BA8596FB3E23054EB9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4181" ], "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-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-unique-id": [ "80" ], + "x-ms-client-request-id": [ "f300d33f-3b83-47c1-b30b-67af42cf34cb" ], "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.4", "Az.Functions/1.0.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": [ "cf39e50e-e3d4-4369-9075-69b12f1d1797" ], "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/3a4acc16-ce15-4e1f-af5f-8bd4f3c30db5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f4a4438e-2f42-4b67-ae03-269b7e48af87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111712Z:f4a4438e-2f42-4b67-ae03-269b7e48af87" ], "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: 7319BCCDA4F347369E91139D9A3C416C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1201" ], "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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-unique-id": [ "81" ], + "x-ms-client-request-id": [ "3835bb3e-fa21-4536-bf33-4baf7d99cf38" ], "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.4", "Az.Functions/1.0.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": [ "cb24600f-b153-408b-a601-4dee66e3ff1d" ], "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/52283fbf-dece-4c8c-a049-5181097dfc9c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9c27fa1a-68a5-4cee-b9b1-11df46b8ecbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111712Z:9c27fa1a-68a5-4cee-b9b1-11df46b8ecbf" ], "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: 3274906EB6834BAABFC6A86A52099FD6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4172" ], "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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json index d8d6812bdd78..d92d5027a2cf 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "95b0ea90-f7b8-41a1-9956-2a5c5af5dd12" ], + "x-ms-unique-id": [ "82" ], + "x-ms-client-request-id": [ "e149358c-471a-4ae2-9f1f-89533909d13e" ], "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.4", "Az.Functions/1.0.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": [ "3914413f-9877-4d94-8750-73da137b7139" ], "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/fa50b219-1f01-4298-b4c9-a614f26db221" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b3a6def6-cdd3-4187-a00c-64688041b212" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111713Z:b3a6def6-cdd3-4187-a00c-64688041b212" ], "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: 8BD7F1FB2AAE4A4ABB63C859536787A7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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 } }, @@ -51,12 +52,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "d31be497-74eb-41cb-864d-5f4a91a14f32" ], + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "6da3f5c9-73f2-4fd8-a90e-a40acaafeb49" ], "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.4", "Az.Functions/1.0.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": [ "3fde74ce-d8db-4f42-b8ed-442feffacc47" ], "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/westcentralus/7d6992ea-18ea-4e32-91dc-2a3c9a4e8f08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f99c8e1a-6482-4fc6-9b61-16667dd8debf" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T111714Z:f99c8e1a-6482-4fc6-9b61-16667dd8debf" ], "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: A475B647CFB54CB3B4738F7FE36AA6A0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37348" ], "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;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 } }, @@ -96,12 +98,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "980bb5ab-ac63-464f-8427-5de9bf9f93ac" ], + "x-ms-unique-id": [ "84" ], + "x-ms-client-request-id": [ "ad7e6cde-0ccc-4b5d-a279-dad5c30eacf1" ], "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.4", "Az.Functions/1.0.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": [ "8686043d-85cf-41f6-a8e8-7ff76f72a732" ], "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/02c80fef-2f84-4144-90d4-050183a37309" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3b668633-78e0-4d4c-be17-8267cc7c8e67" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T111714Z:3b668633-78e0-4d4c-be17-8267cc7c8e67" ], "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: 5C34579749174CCCAD60CF98628227AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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 } }, @@ -141,12 +144,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "43bab830-11a9-4b47-92cb-53b503a318ae" ], + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "5d886265-a427-4a13-a172-1eaf010c29fa" ], "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.4", "Az.Functions/1.0.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": [ "e366d222-8dd7-4210-ac37-bd79d7f68470" ], "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/westus/28c2f799-2753-44d3-8994-d2f0023f4831" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "25b6e607-b983-45da-b728-a8553c66c87f" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111714Z:25b6e607-b983-45da-b728-a8553c66c87f" ], "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: BAED7006C5AC4A7DB4D8ED86918FAA1A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37704" ], "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;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 } }, @@ -186,12 +190,150 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "e845b0f0-ea31-45e9-807d-c9bb0af7cf4f" ], + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "55249ff1-baca-4081-a63a-cbbe1ad31fcb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "ff27e441-b63b-4ca1-8c07-00651486e812" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/530ec900-e9cb-45f1-9f5a-ed24caaa2011" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "470377e9-7ef0-4360-8726-0046c179529f" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111714Z:470377e9-7ef0-4360-8726-0046c179529f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2F312422CE7443D5817E3FB1F255A024 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] + }, + "ContentHeaders": { + "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;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 + } + }, + "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": [ "87" ], + "x-ms-client-request-id": [ "e6c33261-bf7b-490f-8fce-d83ce1163296" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "38cd77ef-4760-4666-9b5e-3429ba949166" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/cbc047e6-1d3f-41d6-bb50-e090570cc65f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b2e4942a-4a13-4f25-80a6-0523c3336d98" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111714Z:b2e4942a-4a13-4f25-80a6-0523c3336d98" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FD7F5C9314AF4D748D25F13651232D2D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:14 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 + } + }, + "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": [ "88" ], + "x-ms-client-request-id": [ "5569b8de-35c6-4981-94ea-581ae7f83955" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "f4308d64-b09c-4ef3-8d31-711276e04e92" ], + "X-AspNet-Version": [ "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/84b62c51-5661-443d-ad6e-f0766ac06a25" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e7e42056-d979-46ca-9efd-eea0dd37c74c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T111715Z:e7e42056-d979-46ca-9efd-eea0dd37c74c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 41F2B45652BD403CA7FA1284DD387070 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:15 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 + } + }, + "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": [ "89" ], + "x-ms-client-request-id": [ "87d3d5f0-1be3-47db-a260-a54e91f60019" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -203,24 +345,25 @@ "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": [ "3b8aeca1-d024-4d37-abe7-871e86493736" ], "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/westus/21abd4e8-ed9e-47bd-9c08-c5f8c3f6577c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4d7ae0a8-a7d6-4f03-859d-5c0e5d64d6fa" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111715Z:4d7ae0a8-a7d6-4f03-859d-5c0e5d64d6fa" ], "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: 7CC0C7F1F67148F08448DD7E200EDE52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:17:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "27175" ], "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;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 f5e9bb061fd8..f87bb377ae60 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": [ "138" ], + "x-ms-client-request-id": [ "f17e6711-77f1-4daf-a2f4-2a07b0b0c879" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,41 +22,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "264239f4-8b5a-400d-ba57-b226a5d11f91" ], "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": [ "c07151b8-8685-4623-9595-16d2d4ab03c2" ], + "x-ms-correlation-request-id": [ "c07151b8-8685-4623-9595-16d2d4ab03c2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T111808Z:c07151b8-8685-4623-9595-16d2d4ab03c2" ], "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: 64C36284ABB84E3EAAAD23E46705261C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:07Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "7011" ], + "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-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-cjes6i/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-cjes6i/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": [ "139" ], + "x-ms-client-request-id": [ "20dc7f9d-d8ff-47cb-9b5b-72e0a63addbe" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -68,40 +68,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "946ba626-7e59-4054-8757-6460c814c10d" ], + "x-ms-request-id": [ "a9ef00ac-0e54-4e83-afb3-6db73e0ee55e" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8b3967b8-b394-41ab-9d03-4a89987bf301" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T111808Z:8b3967b8-b394-41ab-9d03-4a89987bf301" ], "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: 0E32EB4FE81E4A4EB5FB4E35BF3EFEB7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-o1blrw/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-o1blrw/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": [ "140" ], + "x-ms-client-request-id": [ "b2717aea-ea92-48dc-b940-ae9c3d519f55" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -113,40 +113,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fda151a-c476-41c2-a5d8-eaccd97d025b" ], + "x-ms-request-id": [ "c2d3c665-7206-4885-b450-3fb30f84b0ca" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b4c1e684-8e87-4d9f-a76a-5c9094acc875" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111808Z:b4c1e684-8e87-4d9f-a76a-5c9094acc875" ], "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: 47DE358647F446039FC76BA259500573 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "141" ], + "x-ms-client-request-id": [ "9cc1aa4c-4765-4c78-a9e4-3b8498a3dc84" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -158,40 +158,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef9cb952-5f5a-490f-ac70-dcfc6b9be76a" ], + "x-ms-request-id": [ "b1cd15ef-3680-4892-8963-c97abd230bc0" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f50e5922-c5a2-4d52-956f-3c268ee590a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:f50e5922-c5a2-4d52-956f-3c268ee590a6" ], "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: F15348F083A4460BB0A8262F1C6A798B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "142" ], + "x-ms-client-request-id": [ "44361fdf-6397-4667-aed0-9baa3c299a27" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -203,40 +203,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": [ "1feb075b-a2e0-4c5a-89aa-9fa761b24119" ], "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": [ "0ea67b34-3aa0-493a-9fcd-67fdd4e099fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:0ea67b34-3aa0-493a-9fcd-67fdd4e099fe" ], "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: E0A4091A3914402DBED3D83BA6983C97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-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-pe9wcd\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "143" ], + "x-ms-client-request-id": [ "8bc1c4e3-89fb-4eb9-a6f2-b0f25a2dc472" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -248,40 +248,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": [ "a306baac-e0c7-4705-9a00-8f11faa1ddd0" ], "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": [ "bbc894ba-e3eb-4018-bc20-d82d8ad9cf4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:bbc894ba-e3eb-4018-bc20-d82d8ad9cf4e" ], "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: 205FF6B3A2A54197B0B3DDD4B4BDDD5E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-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-078h6t\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "144" ], + "x-ms-client-request-id": [ "c2a7ef53-d53c-4a75-b3ad-e0f9590903bf" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -293,40 +293,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": [ "aaf75eca-8830-4173-9f11-37e50b6011cd" ], "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": [ "00cd9650-fe6f-4f38-96d1-eea2436e2cab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:00cd9650-fe6f-4f38-96d1-eea2436e2cab" ], "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: 351A0F56E23D4CC3B700892B52D95C3B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/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-lf9t8w/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": [ "145" ], + "x-ms-client-request-id": [ "1d9dfa07-c2bc-4029-846c-8aa7abbe794f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -337,25 +337,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ce2fc52e-8d6f-4ab7-8d25-46a199cabbed" ], "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": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "8686659a-2e28-4129-a8cd-89cb24a7ffa1" ], + "x-ms-correlation-request-id": [ "8686659a-2e28-4129-a8cd-89cb24a7ffa1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111810Z:8686659a-2e28-4129-a8cd-89cb24a7ffa1" ], "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: 5920057597EB480FB8250CA1EEC38323 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1679" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "1838" ], + "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -366,12 +366,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": [ "146" ], + "x-ms-client-request-id": [ "899d09b1-e838-44ff-8b84-a6d4c0b3f7aa" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -382,41 +382,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "7bbef311-ea91-4353-ad22-ad2b7c021644" ], "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": [ "bb5bd717-f85d-4952-8701-b1de2b1e478f" ], + "x-ms-correlation-request-id": [ "bb5bd717-f85d-4952-8701-b1de2b1e478f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111810Z:bb5bd717-f85d-4952-8701-b1de2b1e478f" ], "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: E0773ED462384F049DBCC101E86F579F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "7011" ], + "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-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-cjes6i/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-cjes6i/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": [ "147" ], + "x-ms-client-request-id": [ "79028c3a-83ed-47cd-8c80-5aaf98779ac6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -428,40 +428,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7344ce33-69e9-4141-8aa0-da0bab20a07e" ], + "x-ms-request-id": [ "38b21dfe-f518-4e92-bbf4-01e0851f289e" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c3fd17af-6384-457a-80e7-eebfa063b3c6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T111810Z:c3fd17af-6384-457a-80e7-eebfa063b3c6" ], "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: C715B76415CB4BE6BF0ABA3413BD5620 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-o1blrw/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-o1blrw/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": [ "148" ], + "x-ms-client-request-id": [ "2a3b154b-fb71-4a82-b723-933a2e04fd35" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -473,40 +473,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb5e4437-fd4c-4776-8df6-fb93976902cb" ], + "x-ms-request-id": [ "fd1af28c-e9e2-459c-a148-a83ac12239c1" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6b73664b-ef01-4f58-9c9e-f35e72132a39" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111810Z:6b73664b-ef01-4f58-9c9e-f35e72132a39" ], "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: 1B8642638D8A4AC3BF4BA46437C0F8F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "149" ], + "x-ms-client-request-id": [ "97d56afc-2cc5-464b-a7b9-88f2df8da0a1" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -518,40 +518,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": [ "211bea3e-a80c-497f-a218-cc0fd08fc8b3" ], "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": [ "066f5776-d8ff-4b47-88cb-b776866d5931" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111811Z:066f5776-d8ff-4b47-88cb-b776866d5931" ], "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: 1ED2AC8324204D4AB450F7F9C0AAECB4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "150" ], + "x-ms-client-request-id": [ "fa15047c-d6f5-40fc-ac98-d706dbb05922" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -563,24 +563,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": [ "e942ec23-ae1a-43b3-a00d-ce07edb06253" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f8b2a5d4-efd9-475e-b288-50a6a89649d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111811Z:f8b2a5d4-efd9-475e-b288-50a6a89649d6" ], "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: F4715FA20BD24BC99648DFE5A8ED9BC4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json index af4f8b3f7215..e8cca90b0302 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-xj3rn0czbp\",\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": [ "c2c20b31-8558-4340-8ad2-9bdd178b14ec" ], "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/c4eb954f-57b7-4a2a-bca2-d9433c961d44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4759dd06-cd37-4c13-8bfa-b869cc2d3493" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111812Z:4759dd06-cd37-4c13-8bfa-b869cc2d3493" ], "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: 1C8FCE514E6548BAB8DBF166252861C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:12 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": [ "152" ], + "x-ms-client-request-id": [ "b36f0cd6-a17f-494c-a7d4-94836dc87037" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,41 +63,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "d8d05ab8-a43b-4375-8381-9b28d373e632" ], "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": [ "12998159-1366-4fc7-af65-59be685d8c34" ], + "x-ms-correlation-request-id": [ "12998159-1366-4fc7-af65-59be685d8c34" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T111812Z:12998159-1366-4fc7-af65-59be685d8c34" ], "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: 504E1EF9209C49A9BB25ACA887F3A6AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "7011" ], + "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-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-cjes6i/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-cjes6i/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": [ "153" ], + "x-ms-client-request-id": [ "eea80f4d-0548-4b73-ba6e-b712043d2afb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +109,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6accf023-a26d-4bf7-bba3-ab5fbe90cf73" ], + "x-ms-request-id": [ "bdd06eb5-0ee4-4b4a-ac75-ef1bc6b6a79d" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "80c08ccd-c94e-4344-a719-330a1a74b1d1" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111812Z:80c08ccd-c94e-4344-a719-330a1a74b1d1" ], "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: BB35D7BF61BB4B04B161EEAB2A55E340 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-o1blrw/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-o1blrw/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": [ "154" ], + "x-ms-client-request-id": [ "ec306a69-1cc8-44ad-8448-af7911d32f5f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +154,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c1cd72b-d195-4349-b2b4-76ff3a9e9bb3" ], + "x-ms-request-id": [ "991b2112-6721-4086-85da-9d748d89d5c1" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c264b310-bc15-43b2-b9bb-2bbadff38ead" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:c264b310-bc15-43b2-b9bb-2bbadff38ead" ], "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: D3711E84749C42E4A19CD41F15DF62C1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "155" ], + "x-ms-client-request-id": [ "5469129b-4d80-488e-982f-d22063e43895" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +199,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": [ "b1b69282-f648-4768-9893-f347734a6e36" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1e6492e5-3c12-4e68-bcbc-97d0dde77d62" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:1e6492e5-3c12-4e68-bcbc-97d0dde77d62" ], "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: E36E2A0821AD4E3D8E4E73497A478FEC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "156" ], + "x-ms-client-request-id": [ "9bebf2d3-7904-48f9-ab50-c27a3464718d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,24 +244,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": [ "308a87e2-268b-4870-aff4-2de8cad21fcb" ], "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": [ "13bdbfcb-98d3-47e0-974e-fa63a552fb16" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:13bdbfcb-98d3-47e0-974e-fa63a552fb16" ], "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: AE20ED516373470E93B87560F528B8FF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -271,12 +272,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": [ "157" ], + "x-ms-client-request-id": [ "1207e555-4cc2-4d20-8039-12884a40cd27" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,39 +288,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "20020687-d427-441e-8ce0-a0de699fb4a5" ], + "x-ms-original-request-ids": [ "6609c6da-1a89-4ee2-93b5-daf8336377bb", "b0b5c552-5b04-4c0b-bcb5-dc4e449cfc5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f74782cc-1a3f-4d5b-aefa-3f033460a787" ], + "x-ms-correlation-request-id": [ "f74782cc-1a3f-4d5b-aefa-3f033460a787" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:f74782cc-1a3f-4d5b-aefa-3f033460a787" ], "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-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: 2099AB3CB61A4BC8B47EAC7FCE143725 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "158" ], + "x-ms-client-request-id": [ "64318d60-f7ea-4702-bfbf-0af7a091be18" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -330,30 +332,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f21953f3-f3df-4c7f-87bb-4044aa69e5c9" ], + "x-ms-request-id": [ "c7743855-5718-4f27-a56e-e0cc737fe276" ], "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/69bea5a2-b85e-432c-80a8-aab4db9915d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d5d60c2b-47a1-40ca-b1e4-b5b520263e87" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T111814Z:d5d60c2b-47a1-40ca-b1e4-b5b520263e87" ], "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: AE2BDEC9881A42CC940EB90B4297BF61 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18: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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-xj3rn0czbp?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 +375,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/4586fc42-838a-4323-9c2a-b6ad6c471a24" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "ff6669d9-20b7-4cf9-9161-477cf38dc4c0" ], + "x-ms-correlation-request-id": [ "ff6669d9-20b7-4cf9-9161-477cf38dc4c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111819Z:ff6669d9-20b7-4cf9-9161-477cf38dc4c0" ], "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: F49D99C460CC41F981F00CFCD62EDA2B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:18:18 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\": \"\\\"70065f43-0000-0300-0000-69146cfa0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"name\": \"Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"AppId\": \"cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ccdcf4f1-f4f9-450a-840a-a67055ad7238\",\r\n \"ConnectionString\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"Name\": \"Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"CreationDate\": \"2025-11-12T11:18:14.8420581+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-xj3rn0czbp_cd31381e-3776-48e0-96bb-536f3b046173_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-xj3rn0czbp-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-xj3rn0czbp\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"\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": [ "1718" ] } }, "Response": { @@ -409,43 +412,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3759C3F4635\"" ], + "ETag": [ "\"1DC53C60DC02B00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a9cc86e-b59e-4096-a001-5c980b80ba42" ], + "x-ms-request-id": [ "be8f0b00-bee3-430b-93a7-5c87a271557a" ], "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/e3bf2cc0-27cb-4e15-b5dc-1059eed94629" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "ffd9c363-681c-4068-9399-20049678016f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111901Z:ffd9c363-681c-4068-9399-20049678016f" ], "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: 7AE2C761288545659B4C3BFD47715D97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "8509" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:18:20.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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": [ "161" ], + "x-ms-client-request-id": [ "78c7c9b8-2e38-4e56-a7c7-d15ad1d6cc90" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -455,42 +458,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375AA0616CB\"" ], + "ETag": [ "\"1DC53C625A97C4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6dcb6f9c-85cf-44ae-bf23-fd469139c1af" ], + "x-ms-request-id": [ "35d43329-9def-49f8-a73e-951dbbe9da96" ], "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": [ "05a7e6c1-5080-41d0-a5c2-fd1f7dda486f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:05a7e6c1-5080-41d0-a5c2-fd1f7dda486f" ], "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: 259CF2E66B4947D4B236259C8309435F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8488" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:01.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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": [ "162" ], + "x-ms-client-request-id": [ "927e091c-b487-4971-9bff-3c216536fa69" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -501,42 +504,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375AA0616CB\"" ], + "ETag": [ "\"1DC53C625A97C4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a25d30f-03b4-4cff-a02b-8078781ef7e4" ], + "x-ms-request-id": [ "70df2016-9ce0-428c-ac23-3f5931c7ae14" ], "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": [ "f331385b-00f1-4520-9e78-376a60db658a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:f331385b-00f1-4520-9e78-376a60db658a" ], "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: 5EDA33B9AAE143DCAC612F55C62780CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8488" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:01.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "163" ], + "x-ms-client-request-id": [ "c4a23bce-70fd-4ff9-8d3a-cc2658b377df" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,40 +551,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": [ "2124564d-2ecd-45c0-8f8f-ee073562c6c5" ], "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/36f39ec4-60cf-401a-aafb-20eba9cad090" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d545e37e-1482-4a81-820a-4895508dcc1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:d545e37e-1482-4a81-820a-4895508dcc1c" ], "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: AFD1A7D0D99A4163BFE373CC44A65826 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "164" ], + "x-ms-client-request-id": [ "d1a81589-c696-4d1e-9ede-ba5f7ce29c53" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,40 +596,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": [ "a4c6f6b8-4cf1-45fe-9474-907f4607d734" ], "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/bbca3602-e506-4c70-9e9a-4ed2e49e9f26" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "540a0997-1477-4441-92cf-85bb4f02d838" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:540a0997-1477-4441-92cf-85bb4f02d838" ], "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: DF5260F33C0B4314801E5488CA3C9B7A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:32 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "165" ], + "x-ms-client-request-id": [ "428a0779-bdf9-484a-8ada-80fbf2681045" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -638,40 +642,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": [ "db983e1f-d25d-4d70-ba89-95dd909eb8fd" ], "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/b266f883-3737-49a6-8c52-6b88bc67c1b5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "56a99a63-adf0-436f-a4f2-1e61805d6a71" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111933Z:56a99a63-adf0-436f-a4f2-1e61805d6a71" ], "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: F6891103C9BC4A46B840CCC5189A20B2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "166" ], + "x-ms-client-request-id": [ "956a4f4f-222c-42a0-bd68-c096c932d052" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -683,40 +687,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": [ "d6c2ed51-c9f2-4b5c-8bab-b5885ff7102a" ], "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/72bbab0b-1cb7-48c1-a57f-19fb6867b1fb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e0519384-9425-426e-b8c3-7b015e9893cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111933Z:e0519384-9425-426e-b8c3-7b015e9893cc" ], "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: AB86AB489E994F5F90A80BBBB0D426E9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "167" ], + "x-ms-client-request-id": [ "c33a6f01-7083-4d4b-a605-9cf6021bf5c5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -728,38 +732,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": [ "27520685-5855-4b2b-a010-28044a8144c8" ], "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/4dd07ce8-eeea-47d3-a257-3ab137de5b78" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "56564727-aa84-47ef-a5cc-0096706aa79a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111933Z:56564727-aa84-47ef-a5cc-0096706aa79a" ], "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: E6310079B83E468188242EA1CEAB6BE2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1042" ] + "Content-Length": [ "1030" ] } }, "Response": { @@ -767,42 +771,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375AA0616CB\"" ], + "ETag": [ "\"1DC53C625A97C4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79642376-bddc-48e9-bcc4-605242d3cba2" ], + "x-ms-request-id": [ "c0f0f8d5-e770-41c1-bb00-71639a6ca89f" ], "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/76e6f9ac-0f67-4dd4-a010-324c25851ae3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "62e088a9-d127-4bdc-9d6c-f351966e2095" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111934Z:62e088a9-d127-4bdc-9d6c-f351966e2095" ], "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: E1041B541D0D4E88940398734A78FAAF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1241" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "169" ], + "x-ms-client-request-id": [ "f56fb2fc-85cc-413b-a7de-f67f804f4a32" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -814,40 +819,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": [ "0f474307-a57a-472a-beb1-80c1df88da74" ], "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/d0d024c3-2aa2-40f2-90b0-06f1d2bec938" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "f203b782-a9e4-4dec-a0da-1663cd64b3d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111934Z:f203b782-a9e4-4dec-a0da-1663cd64b3d3" ], "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: 09951425E3EF4F14A3A18E6C0B4AE7B8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1241" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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": [ "170" ], + "x-ms-client-request-id": [ "9b0950e2-adec-47cf-b141-aab65dd06315" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -858,42 +863,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375BF87F800\"" ], + "ETag": [ "\"1DC53C6393E81A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c8a36996-cb30-4ef4-a232-dca699a2c5e0" ], + "x-ms-request-id": [ "f26dc749-1501-4b1b-bf86-10e0887f9140" ], "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": [ "2157aa8c-acb7-46d2-b881-ead9a66b0205" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:2157aa8c-acb7-46d2-b881-ead9a66b0205" ], "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: 5FA5B0BE048F469EB5397B70C77EBE3B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:34.33\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "171" ], + "x-ms-client-request-id": [ "5933ad43-8281-45d9-9458-455785878dae" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -905,40 +910,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": [ "18282d9f-1cfe-4256-9c80-474cd5b790eb" ], "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/7527613f-72ff-4f4b-9666-8bb8602ebacf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2c041dbf-8e84-4c74-a541-82de48f208e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:2c041dbf-8e84-4c74-a541-82de48f208e1" ], "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: 662EE6943D414E1695883E6BD32CB5F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1241" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "172" ], + "x-ms-client-request-id": [ "09ffc8e8-1087-4f64-b001-88733e5345c7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -950,40 +955,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": [ "51f0e43f-1701-4d3c-8e4a-3a7ee2cef597" ], "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/c85d3879-61a2-4caf-8dc8-9cb178b37be0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "172f7b1f-efb5-4fe5-bdb4-a7c0c70f6072" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:172f7b1f-efb5-4fe5-bdb4-a7c0c70f6072" ], "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: EE5807F719F346EFB468677A946FCA09 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:35 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "173" ], + "x-ms-client-request-id": [ "998c2f30-1124-48b5-a977-ed295fb90c55" ], "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.4", "Az.Functions/1.0.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": [ "bef47e66-5280-4d72-90ab-af77ddc1f8bc" ], + "x-ms-request-id": [ "53939f9e-1761-47b9-b29a-f2a15e5d20f3" ], "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/da1aede9-d3ef-4702-a2ea-7d4adc2ca35a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "fd3b0ee0-14c5-48d5-997d-de2ecbc6bb2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:fd3b0ee0-14c5-48d5-997d-de2ecbc6bb2b" ], "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: 2482484478634444B840BDB5C70FE3E8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1241" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1119" ] + "Content-Length": [ "1107" ] } }, "Response": { @@ -1034,42 +1040,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375BF87F800\"" ], + "ETag": [ "\"1DC53C6393E81A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72a9ea97-4c0b-4fa5-9836-49af9ca81799" ], + "x-ms-request-id": [ "f92a45a3-260c-48c1-aa5a-35e976dfccee" ], "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/acdb3e50-04e6-4352-b90a-65cb6731cafa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "89ada3c7-7672-4787-82d5-5567cb8d0efa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111937Z:89ada3c7-7672-4787-82d5-5567cb8d0efa" ], "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: 90F547DCCAD54F23909E182A2C84B0F9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1305" ], + "Content-Length": [ "1304" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "175" ], + "x-ms-client-request-id": [ "b2a22ebb-dfa1-44b3-98cb-071f4dba9467" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1081,40 +1088,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": [ "d45b8153-cf98-4de5-9045-b108ff4096d8" ], "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/53a6178f-82d2-40f6-86d4-d38c172b6539" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5e927e71-7b28-4a3d-a15b-1b6cc8534575" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111937Z:5e927e71-7b28-4a3d-a15b-1b6cc8534575" ], "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: 9A2888A4D4DB4037A82C02D8021A9B2F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1305" ], + "Content-Length": [ "1304" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "176" ], + "x-ms-client-request-id": [ "0a27305f-9571-4fc5-ba2f-610d919ed144" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1126,38 +1133,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": [ "71d4de39-f8a0-4a68-af40-bd2142e0ce18" ], "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/b6a5579a-57de-4920-8476-e43fccb56992" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7b9daf54-ac5b-4e10-acc3-b1aa68717cf2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111937Z:7b9daf54-ac5b-4e10-acc3-b1aa68717cf2" ], "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: B0C938DE4225405E9D561AA6BE6BBE6D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1305" ], + "Content-Length": [ "1304" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1046" ] + "Content-Length": [ "1034" ] } }, "Response": { @@ -1165,42 +1172,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C11D580B\"" ], + "ETag": [ "\"1DC53C63AA4944B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d9d125e-ef61-4e8e-aa52-033fa76d2082" ], + "x-ms-request-id": [ "d9e0e8e2-d528-42b4-8a02-2320d4fb5a10" ], "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/869e1030-a66f-4409-a9d9-fbcb8bf74eb3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "137f9e41-6a90-4a0a-aa4b-d261d9d33926" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111938Z:137f9e41-6a90-4a0a-aa4b-d261d9d33926" ], "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: 19458FDF3D964BF99F98DD7C87AD8647 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1245" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "178" ], + "x-ms-client-request-id": [ "e8343854-c8c7-4965-88fd-1f9d453deaf5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1212,40 +1220,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": [ "57b15ae0-f963-4a79-8b0f-be99cc083bf6" ], "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/acd8bfe7-9d13-4bab-8d5f-ad7d1ad80b19" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "34921929-39c9-45c9-a4e1-164f3b4218fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:34921929-39c9-45c9-a4e1-164f3b4218fe" ], "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: 6D6F5C5C52CD4499932DA24D927A63A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1245" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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": [ "179" ], + "x-ms-client-request-id": [ "85717f75-6e26-4654-9871-0b768c0b4089" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1256,42 +1264,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C22C7115\"" ], + "ETag": [ "\"1DC53C63BB0A015\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20b4946b-4c60-4224-bfb4-8ca91aeabeb9" ], + "x-ms-request-id": [ "53b928b1-67b7-49ad-bcd4-41b4ca32f0e2" ], "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": [ "02d808b8-32df-4568-ba3e-b7e29fdaece6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:02d808b8-32df-4568-ba3e-b7e29fdaece6" ], "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: 7E7FA4E5884F446499B0A998EC29E9DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8488" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:38.4333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "180" ], + "x-ms-client-request-id": [ "436e5c19-a2b3-4855-a9fc-b8e2019d3e56" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1303,40 +1311,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": [ "7ceb74fc-ffc8-4334-a92b-21ea6e2b0cfc" ], "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/fa1da658-afd2-439d-9475-eb9ebcbb6bab" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "62f64eba-aedb-4c4c-9edf-d065d621d171" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:62f64eba-aedb-4c4c-9edf-d065d621d171" ], "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: 8BC74444D2D346A9847DC150836773F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1245" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "181" ], + "x-ms-client-request-id": [ "c5bb257c-577d-43ea-85fc-728728e41139" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1348,40 +1356,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": [ "0ccbc9f8-487d-4c97-8b7f-370dee4ad4e5" ], "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/2c3cbed8-72c3-47df-a88c-49e86690de22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "46fc2ccf-97c1-458d-a301-9c5616cdc55c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:46fc2ccf-97c1-458d-a301-9c5616cdc55c" ], "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: 66ED1309333A4C5DB17CB35D6610CEA5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:39 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "182" ], + "x-ms-client-request-id": [ "c75e2f53-65d3-4f01-b448-bd31c80919f1" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1393,38 +1402,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": [ "60b90438-58d6-46dc-826c-664c4622b276" ], "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/b4d67c7b-21e6-495c-ab0f-4cd037e29abf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e5d39160-fa15-4324-a28d-1a1b82711d5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111940Z:e5d39160-fa15-4324-a28d-1a1b82711d5d" ], "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: 64A71F985C3E4CF7AEE72192F2DEC95C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1245" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "969" ] + "Content-Length": [ "957" ] } }, "Response": { @@ -1432,42 +1441,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C22C7115\"" ], + "ETag": [ "\"1DC53C63BB0A015\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eec54697-3602-43ff-ae61-e6f6ca7c2d12" ], + "x-ms-request-id": [ "a0037665-6a07-4e69-8187-e8855ae9baf4" ], "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/7c431ccd-86d2-4531-939a-b116a35cb1fa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "e108bd25-b1e5-4bdd-ac5c-2060d6ad73f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111941Z:e108bd25-b1e5-4bdd-ac5c-2060d6ad73f0" ], "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: 8605B7F9E0A244A0ADB6EA4DB1CFE4E4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "184" ], + "x-ms-client-request-id": [ "eba59088-246c-48a7-876d-92ab5bb9b887" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1479,40 +1489,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": [ "d70cf896-5e40-45ab-a9cd-ad99ff8e974c" ], "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/f718b176-1e1f-4a9e-afed-53009d3fc680" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "83a81025-9b10-4754-b785-bd4992446ddf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111941Z:83a81025-9b10-4754-b785-bd4992446ddf" ], "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: EB8D71FBCF6E44E8BC16F9BDD229A3A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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": [ "185" ], + "x-ms-client-request-id": [ "35fd9fba-3d84-484e-8887-a3defa50b7f9" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1523,42 +1533,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C3A24835\"" ], + "ETag": [ "\"1DC53C63D1DD1AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17dc0d83-c8df-4e5e-9232-25698adf60d7" ], + "x-ms-request-id": [ "54976d7f-1126-43dd-8bb2-236abf58f9a7" ], "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": [ "e2cf9b19-67d5-4e5c-98dc-eb86c06c09bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111941Z:e2cf9b19-67d5-4e5c-98dc-eb86c06c09bb" ], "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: 8D97E8EE89204038A86FE206F90312B2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8488" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:40.8266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "186" ], + "x-ms-client-request-id": [ "959af216-23b9-4223-a68e-d1dfe913f89b" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1570,40 +1580,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": [ "2683b8d9-f8b0-40db-b957-186f294a1671" ], "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/5cb64b4d-d615-40d6-b1d7-d75d2fd5c940" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d5a95c82-29ab-4e4b-8193-0a60a848e480" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111942Z:d5a95c82-29ab-4e4b-8193-0a60a848e480" ], "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: 03F990F68C744924BD036971400FC6C0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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": [ "187" ], + "x-ms-client-request-id": [ "0da2af62-38cc-4249-b1a3-20fdebf371bb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1615,40 +1625,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": [ "fe59ad63-c949-45e1-80e2-8891f7a5b50c" ], "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/afa0d948-9301-4bc1-ae57-097d6faf48af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2e83e627-7e8d-49f9-8f22-5fd049211512" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111942Z:2e83e627-7e8d-49f9-8f22-5fd049211512" ], "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: DF1DD540C20E45D7B43C4FD7857BC124 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:42 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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": [ "188" ], + "x-ms-client-request-id": [ "97c97837-f3b3-4b7c-9be5-1813035787a0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1659,19 +1670,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C3A24835\"" ], + "ETag": [ "\"1DC53C63D1DD1AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcaded38-a0be-4e37-b996-01e0c06d25d0" ], + "x-ms-request-id": [ "93aedc58-9f24-40f3-87b1-e425276f3785" ], "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/e05821a0-3b03-4cbc-a08c-bb367e74021d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "64a5378e-1514-4e28-beba-8ee98db1956f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111951Z:64a5378e-1514-4e28-beba-8ee98db1956f" ], "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: 9EE617706A8B40278239B9D6E8719438 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json new file mode 100644 index 000000000000..c4f070172a5a --- /dev/null +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json @@ -0,0 +1,11317 @@ +{ + "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-112925\",\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": [ "139aab69-5afd-4dff-91fd-e7e0ceb13547" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/414e383e-d244-46b5-b023-d12242b4395b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f89ebd64-1bd4-4f38-9019-fcec0997d686" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T111952Z:f89ebd64-1bd4-4f38-9019-fcec0997d686" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 413CDB0F0E8E42C29534CC7AA5632C6C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:51Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:52 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "6321513b-67c2-4d78-ae05-142cb5443f24" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/100b820f-a6e5-44c2-9025-e94ef14545b7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a6e4d84b-96c1-4b0c-aea2-5dd2518f2e2f" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T111957Z:a6e4d84b-96c1-4b0c-aea2-5dd2518f2e2f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 564DFE587AD54B65BF569A66A7BC7AF6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:19:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1917" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "192" ], + "x-ms-client-request-id": [ "aea0bf11-bb45-4563-9deb-8cbf79f722fd" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ebb94882-f1ec-4a82-9f47-6399383c0a30" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "51eb3a8c-af2a-44b5-8b7d-822c548441d1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112028Z:51eb3a8c-af2a-44b5-8b7d-822c548441d1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 985C6149F1C54DC3BF408B9FB3D304DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "aea0bf11-bb45-4563-9deb-8cbf79f722fd" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9fc204e3-3d3d-445a-b757-b5962ecfe4b7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d3596e3f-22ba-4a0d-8552-739acad39d2e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112028Z:d3596e3f-22ba-4a0d-8552-739acad39d2e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2775859FB96043D986161AD6926C9F01 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:19:57.4766667\",\"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": [ "194" ], + "x-ms-client-request-id": [ "4ad05e57-dcd1-49f6-be5f-518b3c92ee4f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "1cb4d8d4-c0f5-4244-82c2-03608a4ccebd", "f083f111-936c-4f5a-8ffe-71cf1b18c5be" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "691d65bb-1075-4889-99a9-81a9c68dfe6b" ], + "x-ms-correlation-request-id": [ "691d65bb-1075-4889-99a9-81a9c68dfe6b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112029Z:691d65bb-1075-4889-99a9-81a9c68dfe6b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F9C84CC8A796418E9C54CDB306F7731A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "195" ], + "x-ms-client-request-id": [ "8e715c38-bce6-48eb-a356-017f232b6c1f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1af5cddb-3365-4406-9f8e-72f9fa7e7323" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ef4fe698-e4bb-42a3-8adb-df8837024173" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a65d778b-4ba5-4dea-80b5-c86e604d6e1e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112029Z:a65d778b-4ba5-4dea-80b5-c86e604d6e1e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EC5D7FBFE1754E799F6237FB516E0DB2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:29Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:b0fc7886-301e-0051-22c6-53fd25000000\\nTime:2025-11-12T11:20:29.8580806Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-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": [ "\"0x8DE21DD7D48DA19\"" ], + "x-ms-request-id": [ "c6008ff2-9726-405a-8fe2-fbdf6611ac83" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/77bb1b09-afce-4d07-9023-e7741ac359c5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "cdb49da4-d4f5-4c83-9b73-67f0002900ca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112030Z:cdb49da4-d4f5-4c83-9b73-67f0002900ca" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0E81278F8C244EBA999C91150F6C7442 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:30Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000\",\"name\":\"app-package-functionsflexdotnetisolated11292-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": [ "197" ], + "x-ms-client-request-id": [ "6cde9245-5861-4b2a-9645-76354d0c1d20" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "f6a8ce13-42d9-4001-8154-1787c3699d3b", "1dcea94e-2f99-4d9f-8c41-5214ed13905f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "8774eaf5-17ab-4d26-a13d-9bd7efbaa48a" ], + "x-ms-correlation-request-id": [ "8774eaf5-17ab-4d26-a13d-9bd7efbaa48a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112031Z:8774eaf5-17ab-4d26-a13d-9bd7efbaa48a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3EFB72E6473F4E689FE0E864AE6CA0A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:30Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "e600665b-ca29-446c-b8d0-7e1918694082" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6692b8bd-af7c-4f88-9b90-bb58e2defdae" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/357403a9-0818-4de5-90f4-39bbbc70ba08" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e8818d0b-bcf9-44dc-b14b-b945a3690f6d" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T112031Z:e8818d0b-bcf9-44dc-b14b-b945a3690f6d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 971A9EA8B0F441BC907759EB99D40367 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"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": [ "199" ], + "x-ms-client-request-id": [ "edd3746d-73f6-411b-85b1-1d515bd7d07d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "dec3ac96-618b-4a60-a125-0e27a88c658d", "cb1ee5fb-a6e0-45a4-898b-06584b4694a3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "5f91ac7e-9de3-423a-b4c2-9a20c1cabbdd" ], + "x-ms-correlation-request-id": [ "5f91ac7e-9de3-423a-b4c2-9a20c1cabbdd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112032Z:5f91ac7e-9de3-423a-b4c2-9a20c1cabbdd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2A21D878BA304A95B9C4896AA23EBFC6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "97b17a44-7967-4a43-bdc3-539d4629a0ea" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "a1a1ad02-f6fa-4390-a935-6f661f92726f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7cc3969c-a7fb-4efd-8de6-39ae6378267f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a52600b5-7039-49d3-8571-9f09162443fc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112032Z:a52600b5-7039-49d3-8571-9f09162443fc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BEC53EC962EE4CD5A6F6A080E53AB3BF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-112925?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/df17e7eb-c1a8-4213-ab4d-bef819f478ec" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "8c7a37b7-1f23-4e64-889f-db745444c7e1" ], + "x-ms-correlation-request-id": [ "8c7a37b7-1f23-4e64-889f-db745444c7e1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112058Z:8c7a37b7-1f23-4e64-889f-db745444c7e1" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6E9E83F22A204652A7E2979692A4BB4A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:20:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03cb7e-0000-0200-0000-69146d970000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-112925\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-112925\",\r\n \"AppId\": \"8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"27ea1b07-fd8d-4548-b836-6f3963752f28\",\r\n \"ConnectionString\": \"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-112925\",\r\n \"CreationDate\": \"2025-11-12T11:20:35.2452925+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-112925_8b3f974d-4b75-41fc-8ec1-52ae2bb0decd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-112925-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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"\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": [ "\"1DC53C66D0757A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4ce95562-f6db-4ce8-b2b7-ed3a4995debf" ], + "X-AspNet-Version": [ "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/fca51a3f-a0de-4b28-a392-cd4adbf37ce5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "e39abd18-7cae-4b6b-a5bd-a98670d88f85" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112122Z:e39abd18-7cae-4b6b-a5bd-a98670d88f85" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 339FA6117B864B29B53F0A5ECD6858B1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9665" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:00.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "94a15b75-0b69-4dac-bc85-f372f58072ab" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6796897C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7930fec7-ec39-43aa-9456-204e07bb2df3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "319ceaed-9eaa-428f-8177-96dc1d0574f0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112152Z:319ceaed-9eaa-428f-8177-96dc1d0574f0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3F5ED2419CC54E5E99899AF08BF91873 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9637" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:21.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "93593c1d-093b-4232-905d-8bd83b70991f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6796897C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b0c0291b-afe3-4503-bb07-367d98ba7f94" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2fa1a01d-7ba8-4706-860e-b04a4c4575d7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112153Z:2fa1a01d-7ba8-4706-860e-b04a4c4575d7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DBC0D0F14E904637AA2CF42A4E534EAE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9637" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:21.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "00745ac2-82ae-4288-8614-c7213f396e27" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7028ffa0-f49f-4c4b-ab50-a2e1545dccfd" ], + "X-AspNet-Version": [ "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/841aef02-1ae7-4926-b704-cc35093b02f0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "34096efa-0c34-47a7-a612-f7f7e5b27433" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112153Z:34096efa-0c34-47a7-a612-f7f7e5b27433" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B0356159DED14FDBAB69778B7377BCDA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "e1e7fc75-9d8f-4c20-8dcc-8bdfc9d31778" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "cade48c4-e4cd-488c-a452-bc2b3eee8566" ], + "X-AspNet-Version": [ "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/b1455ced-dad1-44a8-8103-e88cbe853355" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "66ca5bc1-5a6d-4e36-9f32-3361b9126d8b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112154Z:66ca5bc1-5a6d-4e36-9f32-3361b9126d8b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1F8249B2D67E43CA80A1196C1A8F344B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "840ac202-30ef-4515-825d-4efe35c83c23" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7e32d4ad-fa1e-4047-92d8-34b6553dfbae" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9d157a34-3046-4d5b-89a9-0aa5236c9509" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112155Z:9d157a34-3046-4d5b-89a9-0aa5236c9509" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 100E80FD18A2454F947D6B77B7122475 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "d719846b-a933-44ef-b99d-e8ae571ac71d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ce01c6ed-8d8d-49d5-a774-d1d25bc83a7c" ], + "X-AspNet-Version": [ "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/dae55995-d4aa-4a8b-836a-384fea025bfb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "04923f9d-933e-42d7-8b84-244e0e1c5876" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112155Z:04923f9d-933e-42d7-8b84-244e0e1c5876" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B14B9C882E9C4F80A9388D984FC74BFF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "3f58a2f7-6b02-4c6f-87d6-029baeb523d0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6796897C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cbbe7b03-c62f-4cd4-b690-9c10c663e9fd" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bae39426-f466-433e-bd3d-eb8ae9e0db94" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112156Z:bae39426-f466-433e-bd3d-eb8ae9e0db94" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 66BDBF1C467641DA8997322DC2D5DDD3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9637" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:21.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "f75291ff-32d9-4a32-bd2f-f27f329bec0d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "37ace822-ec2f-4618-9490-3693df82d06d" ], + "X-AspNet-Version": [ "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/108447de-64de-4887-893a-e6b6d06b56c1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5afcde38-3a69-464d-a71d-e069762ace2c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112156Z:5afcde38-3a69-464d-a71d-e069762ace2c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 170D5A8A474A44D493B9949B8961B97B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "52f14e2a-dd89-49ce-a135-ba12710a81f8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "b159f26d-8c19-4836-b280-7cd9b1c83f7d" ], + "X-AspNet-Version": [ "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/c0fb2954-bef2-4a7f-8b28-015eb10e0bd5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "70f45477-9bdd-4407-8f7c-be40e6d1040c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112156Z:70f45477-9bdd-4407-8f7c-be40e6d1040c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E9552CBC5FB7423093628CA60273A7C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:21:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "4a830bea-a7f8-412a-b789-2a6989a98585" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6796897C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "192fe4a9-1dcb-4721-befc-b48692bcc3a4" ], + "X-AspNet-Version": [ "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/242af9d3-7718-4a32-82ab-a159bc07264d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "420c25a9-8275-402c-b03b-bcd9f4263497" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112212Z:420c25a9-8275-402c-b03b-bcd9f4263497" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 552D9585B83548D185162F88C12B98EE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:12 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-112925\",\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": [ "ae4befd8-ca2f-4f30-abfe-c152ff92e621" ], + "X-AspNet-Version": [ "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/c44d3727-7928-478a-b2c9-c9f80a4a0f0b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "80625858-eb0e-497b-90a8-9d0435d13518" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112213Z:80625858-eb0e-497b-90a8-9d0435d13518" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0D2EAA6B78E5496E9FF617D9661E0461 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:12 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "002e4765-cded-4bcc-9959-91c70013c3ce" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/6a4d645e-f752-494e-9e0d-fcdc523e7f74" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a498efb4-eaec-45c2-8ce4-2725c41ff881" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T112217Z:a498efb4-eaec-45c2-8ce4-2725c41ff881" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 01C0DEDFEC8B4E98929962701D0DA5CD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "d4542b34-ee48-49a9-8e8a-85b41797fc7b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f65a8d99-5e88-4280-a754-e76262e69311" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "207af089-bda2-451e-8810-d92b73d624e6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112248Z:207af089-bda2-451e-8810-d92b73d624e6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A39061628168469297C86775E2706911 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "d4542b34-ee48-49a9-8e8a-85b41797fc7b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "64bf6bf9-a9a5-4e8c-bb71-450fdc32a015" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "705a8eb9-45d4-462a-b3d1-35b6105dd709" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112248Z:705a8eb9-45d4-462a-b3d1-35b6105dd709" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0DA5C248EA8D46BE809B25FF3BEBA331 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "218" ], + "x-ms-client-request-id": [ "e9b156af-0f30-4f22-81cc-2e3e7e6af745" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "8a4d1525-9928-4ec6-b8ae-517239387da2", "5c4b3290-95c1-4892-b5cf-b326b4088509" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "04e58d72-8db8-47ab-b56e-f3bca3d86445" ], + "x-ms-correlation-request-id": [ "04e58d72-8db8-47ab-b56e-f3bca3d86445" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112249Z:04e58d72-8db8-47ab-b56e-f3bca3d86445" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B22E3C8EB0914C27998350EC296DBB92 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "26198b5a-9637-4e09-9bca-f923b8b0562f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "26845d11-a619-4d9d-bc4c-5f77b8c19c1e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cd25a07e-8b85-469b-b8df-e46883b919b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "24db09e6-9694-48cf-894c-07203e799dbc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112249Z:24db09e6-9694-48cf-894c-07203e799dbc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F197E3C835BA4C06894157D6DC6F9F76 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2e37629a-901e-0050-70c6-53ac7b000000\\nTime:2025-11-12T11:22:49.6402051Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-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": [ "\"0x8DE21DDD087929C\"" ], + "x-ms-request-id": [ "5ff0af90-7bf8-45cd-9ab9-392b87598d82" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0d5a6725-ae63-4a3f-87c4-1f7e8135d918" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "30ee04dc-0cfd-4311-b5f4-1fd11ac44dbe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112250Z:30ee04dc-0cfd-4311-b5f4-1fd11ac44dbe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 67C6ED3F7EF04D02A6E6B0B7AE68D864 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000\",\"name\":\"app-package-functionsflexnode112925-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": [ "221" ], + "x-ms-client-request-id": [ "bca99958-4bdb-4421-9249-cca9eb3c7ff4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "8e610818-daf1-4e59-a1e8-21e358833d9d", "2607cb51-3ea2-4afe-80f6-63f40745cf51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "79726350-952b-46f5-85bf-17962e31b077" ], + "x-ms-correlation-request-id": [ "79726350-952b-46f5-85bf-17962e31b077" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112251Z:79726350-952b-46f5-85bf-17962e31b077" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3942CC5C98594141AD228F28890694E0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "c48f25ac-8583-4eb0-bfe0-23a17be3903d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "55b09d5c-f9ae-4196-9bd4-b0bff6bb825b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1ef370d7-0f84-4532-9449-d301fb7a9a92" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "95b379d6-169c-411a-aa3c-d25184bd9bce" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T112251Z:95b379d6-169c-411a-aa3c-d25184bd9bce" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 682BE0CBE1E24427870E66C7A529CC15 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:51Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"Ky2pxrgAJq6uFQNVPM7Rse3XEdAssBbQssUYKn03uJG1lER0qpRRjF7CRMAYfLI8IFlvffKrsbtN+AStHah/eQ==\",\"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": [ "223" ], + "x-ms-client-request-id": [ "ac9a8e02-1566-40f9-8242-0904563fb388" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c8601fd9-1880-4e9e-b4fd-182bf7681225", "09789554-768a-40a2-af2e-3e6eee2289b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "ea3db0fc-10d5-4c5f-b826-ad2177a30646" ], + "x-ms-correlation-request-id": [ "ea3db0fc-10d5-4c5f-b826-ad2177a30646" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112252Z:ea3db0fc-10d5-4c5f-b826-ad2177a30646" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4A79A667F1D543299AC9ADB6C4DAAD28 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:51Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "bad3aa8a-fdc4-42fd-97dd-7a760641a769" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "e1fbc5e4-2a41-4c31-a398-eb010725a777" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a47ba68f-18c4-4b83-b154-9b6041138527" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f7d226ad-08d7-425f-b6c0-f940532b5e65" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112252Z:f7d226ad-08d7-425f-b6c0-f940532b5e65" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 30B9CB7C7D1E488AB40642719DBE1269 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:22:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"Ky2pxrgAJq6uFQNVPM7Rse3XEdAssBbQssUYKn03uJG1lER0qpRRjF7CRMAYfLI8IFlvffKrsbtN+AStHah/eQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Node-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Node-112925?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/5cbfae98-985d-41e9-a1dc-da3febca2265" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "19b1ed69-729b-498a-aab8-8ca86a1cdc6b" ], + "x-ms-correlation-request-id": [ "19b1ed69-729b-498a-aab8-8ca86a1cdc6b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112309Z:19b1ed69-729b-498a-aab8-8ca86a1cdc6b" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C0AEEF43D9D34638A1AB18265B199D04 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:23:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1613" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e030783-0000-0200-0000-69146e1a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Node-112925\",\r\n \"name\": \"Functions-Flex-Node-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-112925\",\r\n \"AppId\": \"f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"2d0c1a0a-2951-423f-8471-574b6e71fb7d\",\r\n \"ConnectionString\": \"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\r\n \"Name\": \"Functions-Flex-Node-112925\",\r\n \"CreationDate\": \"2025-11-12T11:22:55.045101+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-112925_f0410b81-5d3e-4655-9df6-b3118e3db5d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-112925-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1977" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6BB3C6640\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7ba0e65f-9fa4-4ce9-b399-58981afcad4d" ], + "X-AspNet-Version": [ "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/03e45e2e-6236-4074-b568-acf664287b81" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "4b1bee8d-e368-48d3-8a38-1edff42154a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112333Z:4b1bee8d-e368-48d3-8a38-1edff42154a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 21E9E8C22E3D460A871666BC4FA041E0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:23:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:23:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9499" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:11.7366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "cbc90aa2-ee5c-4688-a826-95214465c953" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e589e69a-050d-4acf-936b-d593c54046b6" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "458ad4e7-cdd9-41f3-8437-65502ef79a7f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112404Z:458ad4e7-cdd9-41f3-8437-65502ef79a7f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4EC774C07F1B42C281340A84C4368D57 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9476" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:33.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "f48f788f-1c85-41ac-a819-7eb26e0a3c61" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "fdace427-2c2a-4c3e-b6ab-0106c08c6227" ], + "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": [ "7b7ed9a6-d18c-40e8-8c14-4245f798c3a5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112404Z:7b7ed9a6-d18c-40e8-8c14-4245f798c3a5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E4AB6E057C2B411FBC46E6D6E78BDF6A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9476" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:33.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "533ed4ab-1d53-478a-b08d-7094671e340f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "37cbbb74-58d2-4782-9a00-fc995f07212d" ], + "X-AspNet-Version": [ "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/9936bcc4-417a-4408-8644-9e766bb93d19" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2db22bf5-72f1-44c3-9cbd-773d623ef5a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112405Z:2db22bf5-72f1-44c3-9cbd-773d623ef5a4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F8A4CCD2F0414664A5897CAE867A29C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:04Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "e10187e6-fc81-4b14-beb5-ffa6d0c75e43" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "c82b323f-0214-425b-904f-1c9862d06fd2" ], + "X-AspNet-Version": [ "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/0cd6445a-85cb-482c-8cc9-7d3232d947a6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a901d72c-c359-4abd-8821-93913a92d01d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112405Z:a901d72c-c359-4abd-8821-93913a92d01d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AA1016C542EA49129756533B9BDDF451 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web\",\"name\":\"Functions-Flex-Node-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "2cd53681-b8a1-4ea1-a7e5-ee9dee135f88" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "181e2df4-71ff-47bd-9dd2-eb93c562e7aa" ], + "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": [ "6778ff0b-e6d4-4a09-b5c1-c4295ca42b6a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112405Z:6778ff0b-e6d4-4a09-b5c1-c4295ca42b6a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4541EACCABDE441E954CCFB66C77DEE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "4a2d86cf-29fd-46d3-9ab8-c8fc9e97e850" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5ecae044-2c9e-45d5-8613-8a4f0abab2e1" ], + "X-AspNet-Version": [ "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/8f3666d2-32e1-4b32-8119-6a95b9bfb3bb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bdbaf39d-87e6-44fa-9b82-d87944db2068" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112406Z:bdbaf39d-87e6-44fa-9b82-d87944db2068" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FFAB5CC0DD1947579DE0273B9359D50D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "4526760d-d246-4829-a81f-b67c9c71a0e0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7a0b4d9c-4f0f-4677-b0bd-c95590688898" ], + "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": [ "d7a6ea73-03fb-48c3-8f18-00adce2a4515" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112406Z:d7a6ea73-03fb-48c3-8f18-00adce2a4515" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 47CC1CCAD5464A09B9FE6981DF58356C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9476" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:33.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "c4ad76b9-8369-452a-94f7-36c382d13179" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5a3c87ed-7c21-419a-8677-8c3626a38d73" ], + "X-AspNet-Version": [ "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/b071deae-95bc-4510-a942-235c4672c274" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "efd6f0d8-2b4d-4da6-b598-60a589f93844" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112406Z:efd6f0d8-2b4d-4da6-b598-60a589f93844" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 67B15CD033FE43578291BF433EE31042 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "c0060f1e-ffd1-4bbb-a961-a58e6e2355ea" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "8d9f0ec1-a5c2-42f1-9988-ec6244ea8ca4" ], + "X-AspNet-Version": [ "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/0fa24f3a-e04c-4870-a780-7c32d75e3ac4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "113a5660-f6e9-4261-ab6b-7d3e88e5d021" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112407Z:113a5660-f6e9-4261-ab6b-7d3e88e5d021" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 60F972AC3C3D4D2FA2B17E4E2E26AB58 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web\",\"name\":\"Functions-Flex-Node-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "376e03b7-70fe-4471-b8f4-98e1fef64582" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "44bb9ae5-0285-4a0f-8b98-fe70fdd39f02" ], + "X-AspNet-Version": [ "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/8456d800-76c8-4583-bbba-165401b0f0bd" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "49afe75d-9405-461e-83ed-cd28ae6f8ad0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112422Z:49afe75d-9405-461e-83ed-cd28ae6f8ad0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F8274C2D805F438C9B651E24570E5DC1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:07Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:22 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-112925\",\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": [ "10eed904-ca79-4f57-8641-f338732b9dc5" ], + "X-AspNet-Version": [ "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/0d7aef33-7fd9-4d51-9b1e-8e6a7a9a0923" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0249c0fc-1242-40cc-92eb-8fb84188047b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112423Z:0249c0fc-1242-40cc-92eb-8fb84188047b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4152993506C74B27B300652D0E002C36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:23 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "68467bf7-ee2f-4f76-a66d-9a457b3bf35b" ], + "X-AspNet-Version": [ "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/60e15a0b-f1fc-4bcd-be1c-18f2f3f1ec47" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d78641e6-c278-4eb0-9328-9db615b7d6f2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112426Z:d78641e6-c278-4eb0-9328-9db615b7d6f2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B989333D21C945B8B07B776AB5C3930C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "eb9ffabe-e1e0-4f68-817c-a528b795bbf4" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d8634e02-58d6-4adf-b08a-481f25567067" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "48f1a77b-a407-402f-a710-be983956b7ff" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112457Z:48f1a77b-a407-402f-a710-be983956b7ff" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 16A89234A88E40529532A3460EBB97F8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "eb9ffabe-e1e0-4f68-817c-a528b795bbf4" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ce7a19b3-721d-4bf4-8dc1-22bd41668247" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fc715e40-5520-4361-ac57-356b155105b7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112457Z:fc715e40-5520-4361-ac57-356b155105b7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 302383DFEB044A57BBAB1A86C47F1872 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "242" ], + "x-ms-client-request-id": [ "5b3f09e4-50e9-475c-bc28-856dd886732c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "f367e15f-3494-459e-9533-d9b63fcba8d5", "f2d757e6-441e-40fd-bbae-e8a7d9bbe9ce" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "cbccd7c6-0c46-4c82-8e7e-a8cc15e7a424" ], + "x-ms-correlation-request-id": [ "cbccd7c6-0c46-4c82-8e7e-a8cc15e7a424" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112458Z:cbccd7c6-0c46-4c82-8e7e-a8cc15e7a424" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 49859C4662E14906A996732B9CA47E3B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "72c3dead-e53b-4218-a326-d2057ec54219" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "92d5f8f5-1ca2-4f18-aa53-1216d571f80e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6da4c4b7-ce8d-4b4e-bfd7-706ec89b1765" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a4969205-53c5-4b3e-9351-4710177e14b4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112458Z:a4969205-53c5-4b3e-9351-4710177e14b4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4201970D062C4ECDBB1B967E9E3384F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:177db427-101e-0011-50c6-5363b5000000\\nTime:2025-11-12T11:24:58.8962172Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-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": [ "\"0x8DE21DE1D81195C\"" ], + "x-ms-request-id": [ "85381f0f-f421-4f68-bb66-bbaf3d5bde46" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c62ac77e-913b-4c80-ae12-7105b8f83f5e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "db75bbde-6c17-4fd1-85d7-d2a9bf84982b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112459Z:db75bbde-6c17-4fd1-85d7-d2a9bf84982b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2DFE76C00DD04D4787EAA66F6BDBD293 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "454" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000\",\"name\":\"app-package-functionsflexpython112925-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": [ "245" ], + "x-ms-client-request-id": [ "27c87d6c-c64c-4efe-94cd-11cf72ec72f9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "25c1b5dd-ddea-4d5f-ba6a-fb056d5f1a39", "0af2a0b3-3d74-47d4-95a7-5444f2ec3d02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "7b1d44a7-f090-489f-badc-722d0bd678e5" ], + "x-ms-correlation-request-id": [ "7b1d44a7-f090-489f-badc-722d0bd678e5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112500Z:7b1d44a7-f090-489f-badc-722d0bd678e5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 566BEFEA39D14C528B1325ED8DDF78B2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:24:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "e2f25301-1ff7-48c5-b665-c9027f932a8e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "51a1ad0a-c012-4a86-a421-9986aa146566" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/26f8a003-80fe-4b47-8f55-63d1d2ea3d06" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e4c7769f-c037-4875-8e69-d37cc4e821a8" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T112500Z:e4c7769f-c037-4875-8e69-d37cc4e821a8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4FEBAF08B957465E952414FD91446E1C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:25:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"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": [ "247" ], + "x-ms-client-request-id": [ "4afb7976-23e9-4763-b310-221af72fa709" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "6734fa6b-986c-4912-8cd2-8d50b7b945dd", "2a73a162-7d55-4089-982d-0604eb91a8df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "09d8a612-336a-4ed9-8f1f-35776a150664" ], + "x-ms-correlation-request-id": [ "09d8a612-336a-4ed9-8f1f-35776a150664" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112501Z:09d8a612-336a-4ed9-8f1f-35776a150664" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED60D972DD724DD6B0C5D1016802930C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:25:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "a2e72161-16f2-4a77-94c4-a7bcf28bd68f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d9b58c54-bf18-4afe-a60c-7af675941a04" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f3ff39de-e8fb-4326-9c76-54d46ffeabb0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2f8ddc4d-0f9f-439c-a072-015a02dec7d3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112501Z:2f8ddc4d-0f9f-439c-a072-015a02dec7d3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EDBB31EEFD5A44C4B0963167146FCD67 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:25:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Python-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Python-112925?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/9746b90d-c066-47ca-ad09-0780b0403baa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "3ce05b1f-f43d-484b-b672-4e61f1b1eb9e" ], + "x-ms-correlation-request-id": [ "3ce05b1f-f43d-484b-b672-4e61f1b1eb9e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112517Z:3ce05b1f-f43d-484b-b672-4e61f1b1eb9e" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DFD7D500386946098749E47B045F0304 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:25:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1626" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03d785-0000-0200-0000-69146e9c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Python-112925\",\r\n \"name\": \"Functions-Flex-Python-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-112925\",\r\n \"AppId\": \"d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0cce5e22-34fc-4579-82f2-611013da28fa\",\r\n \"ConnectionString\": \"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\r\n \"Name\": \"Functions-Flex-Python-112925\",\r\n \"CreationDate\": \"2025-11-12T11:25:04.1330297+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-112925_d33efadf-7035-40be-bcb8-42d8b5eeaa38_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-112925-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"\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": [ "\"1DC53C7079561E0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e3cdf67d-6bea-4377-9dcf-a6258eae204f" ], + "X-AspNet-Version": [ "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/a2a31d44-d3ad-4531-aefe-be188490d5db" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "dbbec480-911c-4e5e-8e10-758ea7433652" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112542Z:dbbec480-911c-4e5e-8e10-758ea7433652" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5D22F5C5896F4C749338AFF795515972 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:25:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9530" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:19.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "944f49e3-2a03-4ba7-9013-76ac517fd8fb" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C71459D0A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d420ccf8-239a-49af-bf4f-e64751ca2bac" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "813f888e-9866-4f85-bbb1-6366cc47d77c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112612Z:813f888e-9866-4f85-bbb1-6366cc47d77c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4EDF8754AA0645ADB697090023F2258F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9507" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "a6fcaa9b-c88d-454c-929a-9d0d50ad380f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C71459D0A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "554bd881-8459-438e-9249-d534de493d78" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "692c78de-a9c1-4ab5-a9f4-2c556d6c062c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112612Z:692c78de-a9c1-4ab5-a9f4-2c556d6c062c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D7E7740950AC43CBA0C96867D32625EB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9507" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "a72f629b-643c-467a-9730-48a3934665df" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "11bd7b46-bcb6-4941-a040-acab5449950b" ], + "X-AspNet-Version": [ "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/e8766e68-035c-4ce4-9bd2-0f1b6428e405" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "90374887-9386-4cd1-b216-88bd61ed3d97" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112613Z:90374887-9386-4cd1-b216-88bd61ed3d97" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F07AD9638BCB4E4AA13ED0E360F41F9E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1017" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "545d67cb-a209-40c3-a761-cc4680c47d3f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "19b562a5-12e5-491a-b0d4-a3cb9a6ca116" ], + "X-AspNet-Version": [ "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/214b4b74-3947-4672-8472-dd801ae42655" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e559c57c-f302-40e7-b5c8-333650769ef6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112613Z:e559c57c-f302-40e7-b5c8-333650769ef6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B7AE9DB6175346C5A6ACB3B2C790E070 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web\",\"name\":\"Functions-Flex-Python-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "3dcc2840-4ae7-4019-8160-69b6280baca4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "378ff9d3-3f92-4221-ab64-855a99566c18" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c7825d2b-1ccf-4d98-a8b6-84ded90098a5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112614Z:c7825d2b-1ccf-4d98-a8b6-84ded90098a5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 459CA81334A54D57B4DA3D7044B7C585 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "50c4f8e5-b0c5-49f1-8870-aee76dac68eb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b68e913f-aa3c-4e19-8746-f81236edebe7" ], + "X-AspNet-Version": [ "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/c2c42028-39b9-4297-8967-5b50864a0c09" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1590e420-f733-4096-811c-99c2dde286bb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112614Z:1590e420-f733-4096-811c-99c2dde286bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 740B0C45E40841578BDF6221DB86F0F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1017" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "257" ], + "x-ms-client-request-id": [ "fd575813-3d7d-4bb2-8459-cafdfc966606" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C71459D0A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2ee873d7-297a-42d8-8d8e-99e9fceeead0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "986395a0-66ad-40b7-9e45-63b7508a2676" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112614Z:986395a0-66ad-40b7-9e45-63b7508a2676" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 47D0C03FBA314412B91473BE7C83580B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9507" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "2e1947df-f11c-4318-b4ef-d35ddd1b8814" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a6630ab9-e895-4a47-bda1-1f62da0c4984" ], + "X-AspNet-Version": [ "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/3e4f7d26-d8eb-4de6-9e26-762905cbd58d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4f031b24-5986-4016-adcc-6c1a71f8cc85" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112615Z:4f031b24-5986-4016-adcc-6c1a71f8cc85" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FD9A7C07D25740E08C7E1E14861169D8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1017" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "a1c53051-28a3-42ba-a95e-bce683db133f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "0587a308-f972-4a49-b46b-0f3086a68a98" ], + "X-AspNet-Version": [ "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/68d378fb-9bbb-4eb2-ae6c-b0ac1c3339bc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3b9cc722-68d0-4c40-b13e-21c09463a40a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112615Z:3b9cc722-68d0-4c40-b13e-21c09463a40a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5ECABF48F51E42B288873E6F2796664F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web\",\"name\":\"Functions-Flex-Python-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "991db32c-5879-4783-befa-d14d747032cf" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C71459D0A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e9e0b5bf-a05a-4910-bff5-6d56f1cf05e1" ], + "X-AspNet-Version": [ "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/b1b1ab84-7f44-4ba5-81c7-9178ea3827c5" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "c26eaf92-b058-4829-a555-84f3262f0667" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112635Z:c26eaf92-b058-4829-a555-84f3262f0667" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EA245099D9E142B19A99EF5E43FB8748 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:35 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-112925\",\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": [ "e20620ff-cb33-445d-b148-1c47921b2a8d" ], + "X-AspNet-Version": [ "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/08efa884-6fdd-4a0f-b258-526601f1c946" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3ea05173-dbee-4a69-ad88-1fff7843eba5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112636Z:3ea05173-dbee-4a69-ad88-1fff7843eba5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3335EE4921BC4073822382B5E8AC2E68 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:35 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "e03c9996-25f3-4966-9158-dd6b44327b87" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9c687c7a-fab0-4d19-9d4e-e09c9e2b2e2c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a56a8d96-63fb-40b7-b633-003525895727" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T112640Z:a56a8d96-63fb-40b7-b633-003525895727" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4AB72A8DB9EE447EA565878AB1024C60 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:26:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "3713827b-8e57-494f-a674-be8d4a7c4276" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e9bcc04e-dc3b-40f0-b1b4-599bedf14135" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fcf444f9-51cf-4dc7-b65b-70e7fd195830" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112710Z:fcf444f9-51cf-4dc7-b65b-70e7fd195830" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 195286AED7EC4611AB95A53440FEB781 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "3713827b-8e57-494f-a674-be8d4a7c4276" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b0eea3e2-e802-4626-ac22-2d4e56ec66bb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bda0477b-f16e-4db2-9f1a-1c8a12c694cc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112711Z:bda0477b-f16e-4db2-9f1a-1c8a12c694cc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7AC4572A67404552B5EC881DB9F1BB76 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "266" ], + "x-ms-client-request-id": [ "502dc9a8-08cd-4eaa-98eb-6e56928902d6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "d675d6b0-757b-4f2c-9436-e02e36054c9a", "c267fc13-1cbc-4392-a40f-be128aae35c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "8935abb2-9c0f-4cc8-b61a-434f136e6035" ], + "x-ms-correlation-request-id": [ "8935abb2-9c0f-4cc8-b61a-434f136e6035" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112711Z:8935abb2-9c0f-4cc8-b61a-434f136e6035" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 448A6645D2D644089D305D0EDE828499 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "44b4b473-b0e1-476a-a99e-ffb10402a871" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "821cca14-6f4f-4e7a-89e1-3c4ba56ec145" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d81347c7-840a-40e1-a6f0-978d350807c8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "87ff776c-02fe-446f-a970-d67a7496edfe" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112712Z:87ff776c-02fe-446f-a970-d67a7496edfe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8411178EA2664D8492DCC1EF257BB073 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2e3858c2-901e-0050-14c7-53ac7b000000\\nTime:2025-11-12T11:27:12.2377747Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-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": [ "\"0x8DE21DE6CEB6CFC\"" ], + "x-ms-request-id": [ "d409dd1f-310b-4720-b2dc-e1de4184661e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4fe84847-90d0-4647-89d8-3d211f3f0cfb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "c4422ccf-5f9d-480b-b084-2e73c666a485" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112712Z:c4422ccf-5f9d-480b-b084-2e73c666a485" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E85544EACB4B4279AB6AB53C25D65DA2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000\",\"name\":\"app-package-functionsflexjava112925-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": [ "269" ], + "x-ms-client-request-id": [ "b91a144c-dad2-4a32-87ba-22befd896fde" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "73c2418e-0052-462c-aa32-e5d46e99b950", "be316b28-d301-4e33-8cfb-13983eab63a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c5b24e96-df21-48c0-a054-c0367352e651" ], + "x-ms-correlation-request-id": [ "c5b24e96-df21-48c0-a054-c0367352e651" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112713Z:c5b24e96-df21-48c0-a054-c0367352e651" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 15E3A710457D4E56A14725B0E081CBDA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "01d83e2e-d12c-4b2a-ac7a-98b1483a7734" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "208c8b88-6e17-4a82-b104-c45d4f84c510" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/0446e42d-b00c-430b-bc73-d856b6cfa203" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3dfbf0e0-a3e7-41a2-adc9-f5e9e14a5a8c" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T112714Z:3dfbf0e0-a3e7-41a2-adc9-f5e9e14a5a8c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EEB2234F70C0488F8DBC9F0A5AC90672 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"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": [ "271" ], + "x-ms-client-request-id": [ "527fb990-b4ae-45fc-b025-a79afef62d96" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "033cce19-058b-4ba1-b55b-74673547fdee", "9172312e-f3a8-45e5-b396-e9a52d9a9640" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5602a1bf-19b6-44d7-a33d-48f6bac95cc4" ], + "x-ms-correlation-request-id": [ "5602a1bf-19b6-44d7-a33d-48f6bac95cc4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112715Z:5602a1bf-19b6-44d7-a33d-48f6bac95cc4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4E6FBFF0B6DB4BBFAFE880FAB331C45B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "9f5a7f74-9970-42dc-a323-f8978b9fef5e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d1d7c6ea-6399-4cdf-8fe9-a44e20b9cbd6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9158789e-ed52-4cb2-8d2a-49d0c692e714" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "719a9a6a-e532-4b93-862b-ad080c35a88e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112715Z:719a9a6a-e532-4b93-862b-ad080c35a88e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E72E937413374F2AA7C0272240A2AD22 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Java-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Java-112925?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/0c5cf6bd-abfd-4d87-afb0-ab2d4ee13bf2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "65e6bb62-6bb5-4d84-a245-262c4ff8a62a" ], + "x-ms-correlation-request-id": [ "65e6bb62-6bb5-4d84-a245-262c4ff8a62a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112731Z:65e6bb62-6bb5-4d84-a245-262c4ff8a62a" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5690FA3D1B8247789A2861C33F891A7D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1614" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e036188-0000-0200-0000-69146f220000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Java-112925\",\r\n \"name\": \"Functions-Flex-Java-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-112925\",\r\n \"AppId\": \"522e7f15-b24b-4f68-920f-130c48d314ea\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e653ce75-d374-49fd-a265-275d62e89fb1\",\r\n \"ConnectionString\": \"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\",\r\n \"Name\": \"Functions-Flex-Java-112925\",\r\n \"CreationDate\": \"2025-11-12T11:27:18.2695179+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-112925_522e7f15-b24b-4f68-920f-130c48d314ea_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-112925-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1977" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C757158E20\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "abe14775-0732-4b83-8016-a9e34ac3a1cd" ], + "X-AspNet-Version": [ "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/4b95ec96-34ac-4691-9f48-337857ccba79" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "abd1e0c9-2500-49b1-a7e8-491a8c179555" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112755Z:abd1e0c9-2500-49b1-a7e8-491a8c179555" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3B426FEDC8BE498E9645D91708DAB113 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:27:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9499" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:33.3966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "f721d911-d5a9-4e84-8b5e-319c54374418" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C763EF59A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c69fb685-66e5-4ef2-a550-da0a1ac1cff8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68a91834-ecac-4f23-8c53-a9376e6e00ad" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112826Z:68a91834-ecac-4f23-8c53-a9376e6e00ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0C1B5C7657D0426186C9F99E120EF63F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "b19e9aaa-a679-4a8e-8ed9-5478671a8f7f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C763EF59A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6b359ade-feb0-47ee-a3ce-18f3b9c56701" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68268253-daa7-418d-b748-cd5b5e8ba6c1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112826Z:68268253-daa7-418d-b748-cd5b5e8ba6c1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 40B5BE4164B4478FB705BF12150C79CF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "277" ], + "x-ms-client-request-id": [ "8bb3fc2c-effa-41ee-9480-d2198e0111d7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "40eac14d-08c7-46ea-b7de-3a15059e4b73" ], + "X-AspNet-Version": [ "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/9bb227d1-1558-4a00-9bc9-de995e2da31b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "94b49612-9914-41e7-8db8-8f756ca6a75e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112826Z:94b49612-9914-41e7-8db8-8f756ca6a75e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6D4FD1BFF8D84262B59205CAC0EB35A4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "278" ], + "x-ms-client-request-id": [ "bb6d7589-1917-4366-a1ee-862f4db59d20" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "e38f86d3-9cbf-4e64-8325-002bfd02da92" ], + "X-AspNet-Version": [ "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/824d93c3-d005-409c-a843-f0b58aa43881" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ee048778-635c-40f1-8b4e-65d8e97eebaa" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112827Z:ee048778-635c-40f1-8b4e-65d8e97eebaa" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CE0226229F7545598217B0ED7F6FF473 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web\",\"name\":\"Functions-Flex-Java-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "279" ], + "x-ms-client-request-id": [ "1577f64f-e4fb-4b07-8031-ee110ca08e72" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0666b0d4-9ea1-4ccb-8ea3-277ddf784367" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9c3f80d2-a58f-4fc7-b8d5-4f67880835b4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112827Z:9c3f80d2-a58f-4fc7-b8d5-4f67880835b4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D19977FE84404D6D8E82AA597813ADDC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "280" ], + "x-ms-client-request-id": [ "831c44a1-64b6-4186-a027-91f8a0de9039" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1862d797-02a2-4400-8917-447d1e680b61" ], + "X-AspNet-Version": [ "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/03520a8a-5be1-41c9-812a-fc4646a1223d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "560523f8-fc28-40b4-aa18-cae0e0379b2b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112827Z:560523f8-fc28-40b4-aa18-cae0e0379b2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 74D064F9158A40028D7D09BB04BABC88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "20fbb610-d280-4dc7-89c0-cace7ba36617" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C763EF59A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7afc645f-89e7-4df2-9300-2c237b5d12ce" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e89e386d-77d2-4753-a4af-df2315f1b25c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112828Z:e89e386d-77d2-4753-a4af-df2315f1b25c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AF5D6B4687FE4C80A8C7CC1EA9CD3573 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "24b3f675-eba9-48aa-8870-ebb7037f539a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1e892fce-9a59-4232-8d6d-b1c5a5cad276" ], + "X-AspNet-Version": [ "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/2178cb08-d3db-4d93-b719-c9276c8c6285" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "961495b8-8bdf-4326-9da7-e7b75883f669" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112828Z:961495b8-8bdf-4326-9da7-e7b75883f669" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 48076545E67845FAB0DF2E517BE9DB88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "4510cec2-02d9-40fb-86f4-46a2f1936e53" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "845d6fee-ef80-4a14-be4c-33c5249c00dc" ], + "X-AspNet-Version": [ "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/50e06bcc-ead8-4785-91fa-32fb1f3ec378" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fa5e35c6-f754-405e-83ee-9853fec85f86" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112829Z:fa5e35c6-f754-405e-83ee-9853fec85f86" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 54967147E4EE4D0D96605E9C12CA3655 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web\",\"name\":\"Functions-Flex-Java-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "2cba2d2a-5e0a-497a-acd0-93858f9cb077" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C763EF59A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5f7b6d87-6cdd-4542-9006-d4c0ba4db3ab" ], + "X-AspNet-Version": [ "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/1ed4e340-8a39-4965-9713-ebc250b11c3e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "80f970a5-7026-4538-b0cc-0cb5de7905ce" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112843Z:80f970a5-7026-4538-b0cc-0cb5de7905ce" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0181418F294B4EB087E843105BE7E97B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:29Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:42 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-112925\",\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": [ "22f51e2e-7d2b-4dab-8f89-fe5c3de906ba" ], + "X-AspNet-Version": [ "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/805fc3a2-1f7f-450b-a59d-8aed77716969" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d4b64ac4-f78d-476b-9b4d-0965f055aa37" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112844Z:d4b64ac4-f78d-476b-9b4d-0965f055aa37" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7161606FA19E472984881316507830FC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:43Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:44 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "74b57ad0-b859-4848-83a6-9eedf1578708" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b1b745d6-1cb1-42b0-bef1-3614faa0bbad" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "1fa4e502-0d45-4536-9c03-28a7adeffb5f" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T112848Z:1fa4e502-0d45-4536-9c03-28a7adeffb5f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BF0648A950F24720843A1DB40B780C92 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:28:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "6c24137a-65d2-415e-aaa4-78622bc4f027" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b42c811a-5ea5-406c-8a53-1993eb077469" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e7a6efaa-a01c-4bdc-a32c-65342d201d08" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112919Z:e7a6efaa-a01c-4bdc-a32c-65342d201d08" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 92AE5419926548AF946FEE833EBAA422 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "289" ], + "x-ms-client-request-id": [ "6c24137a-65d2-415e-aaa4-78622bc4f027" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d03fdac9-b9fd-4275-8c2c-6b9ee3e8e6a2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "32e051d1-3307-4e46-8630-c8fccad41e95" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112919Z:32e051d1-3307-4e46-8630-c8fccad41e95" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3795F8673D1B49EBA6602A0C0997323F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "290" ], + "x-ms-client-request-id": [ "5daf9ad6-cb2a-44e0-963a-0194e7f16001" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "0d46f7ae-3971-4c92-b115-14b03d1ce809", "71046f51-dc35-4279-9d00-cb92834b901e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "8baaf80c-5b27-4adf-bdd3-99e009d3fd43" ], + "x-ms-correlation-request-id": [ "8baaf80c-5b27-4adf-bdd3-99e009d3fd43" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112920Z:8baaf80c-5b27-4adf-bdd3-99e009d3fd43" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B45F4F00B13B4AACA70D3B0826208700 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "291" ], + "x-ms-client-request-id": [ "b5422ef2-98b2-4447-bdf2-02c1c07b1de9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3c85f68b-ba06-45d5-a2e4-69ebc1d98edf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/787b1ec1-656e-42f6-ac28-b80c32742061" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c11a37c9-0124-469b-9459-b5abe6beb327" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T112921Z:c11a37c9-0124-469b-9459-b5abe6beb327" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 409BB73105584606B1AC7C742033C2C6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:20Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:cbf64c6b-201e-0000-19c7-53db28000000\\nTime:2025-11-12T11:29:20.9459673Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-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": [ "\"0x8DE21DEB9BE6E8E\"" ], + "x-ms-request-id": [ "e05a7747-d52f-40be-9f39-ca1993da17cd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9cb7cadd-303e-477a-a9ef-5a6e8b8cba3e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a0e9f74b-b98e-4cf3-a6f5-4b1a83b6b1cf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112921Z:a0e9f74b-b98e-4cf3-a6f5-4b1a83b6b1cf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 731B095AC6B542A88BF5A96D3F0EA361 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "465" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000\",\"name\":\"app-package-functionsflexpowershell112925-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": [ "293" ], + "x-ms-client-request-id": [ "48019648-aa07-4a57-a9b4-7024ba7d1bd4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "0b7747ef-6629-49f3-92de-60c93e966e52", "80eecbac-d845-4ca2-ac0b-d81e178075f7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "6aae5d5d-ad46-4dc2-81aa-6428d6411083" ], + "x-ms-correlation-request-id": [ "6aae5d5d-ad46-4dc2-81aa-6428d6411083" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112922Z:6aae5d5d-ad46-4dc2-81aa-6428d6411083" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6B0A5D8C13664B0F82453C88BA4BD31C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "85f0df33-b0f7-4bfd-b1c7-00744e225ed8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "cd11afdf-a7f9-4397-b782-a821f102c3d6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6db30402-9302-4825-8b81-59ebb87fcc0d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f2ce24d4-f101-496e-847e-29ebc23776f1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112923Z:f2ce24d4-f101-496e-847e-29ebc23776f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B484D662126148EA95B018AF80C8729F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"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": [ "295" ], + "x-ms-client-request-id": [ "829afc6a-91c4-4129-bf20-00ec10799e97" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b14710eb-5274-4e20-89bc-d6ca6dbe2a50", "f3ed5752-1f9e-43a0-834b-53f1301360b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f432e8ed-ed14-45cf-ba0c-41cf3befc43f" ], + "x-ms-correlation-request-id": [ "f432e8ed-ed14-45cf-ba0c-41cf3befc43f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112924Z:f432e8ed-ed14-45cf-ba0c-41cf3befc43f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1FB523C4D2FB4E33B81DC77DFCFF8BF8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "7cfbc563-ff50-4499-a9ca-405fdc9adcd1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "b5ffd98b-9e89-4759-9ee5-35531639c1e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/92569da7-8037-40ca-83d0-44d6ed67f6f2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e9e7e4db-f211-441f-b7cb-ea5dda793d44" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T112924Z:e9e7e4db-f211-441f-b7cb-ea5dda793d44" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B0A1FC69300A42AF85C1EB58489265B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-112925?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/1dc21d5a-3a26-4857-acd2-53beb7c09044" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "d1042ce7-1d06-42bc-8a30-b0dceff90e17" ], + "x-ms-correlation-request-id": [ "d1042ce7-1d06-42bc-8a30-b0dceff90e17" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T112942Z:d1042ce7-1d06-42bc-8a30-b0dceff90e17" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A2C8CC24F1CB43D483199680C18CB42E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:29:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1650" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03698b-0000-0200-0000-69146fa50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-PowerShell-112925\",\r\n \"name\": \"Functions-Flex-PowerShell-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-112925\",\r\n \"AppId\": \"7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8026b150-b89d-4d44-81af-aa397315fd16\",\r\n \"ConnectionString\": \"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\r\n \"Name\": \"Functions-Flex-PowerShell-112925\",\r\n \"CreationDate\": \"2025-11-12T11:29:26.9007368+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-112925_7ff6c5cf-b63f-4a5d-a007-50d204c8dae4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-112925-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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"\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": [ "\"1DC53C7A50B8AEB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9130a714-3f60-4d17-9e1c-7e3e4eeb7e17" ], + "X-AspNet-Version": [ "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/38379bbe-69e8-458d-a9d6-ccabd0bbb902" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "ba1f07ec-c969-457e-b9be-f16ceea9df69" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113006Z:ba1f07ec-c969-457e-b9be-f16ceea9df69" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A54FFE7EC90640F594505B0AE67E5828 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9596" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:29:44.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "e4aac6b7-f51f-4a6e-8d9a-05cae1f8dc9e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C7B1A12E80\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "16470c61-c7cb-432a-9dd2-f2d186790001" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c3469a9d-6829-466f-b166-b60e1e37dde7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113036Z:c3469a9d-6829-466f-b166-b60e1e37dde7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C22C00B3DEDE4746B38C5F0EFE35E228 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9572" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:30:05.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "a67af1d4-9c36-4b80-9c7f-decf7f520756" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C7B1A12E80\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6e89734b-77dc-4025-8412-4c9c6a681907" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "900b046c-8aa8-4487-914c-cf59a2b38599" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113036Z:900b046c-8aa8-4487-914c-cf59a2b38599" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B71FAD054FA548809C03AB61E6AB522B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9572" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:30:05.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "896f01a3-a91c-49df-8bd3-533bd0e9f452" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b622ead6-f2aa-484e-9b98-0b381238f43f" ], + "X-AspNet-Version": [ "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/823c263e-8f5a-4a0c-8d73-e936f22f523c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f5450555-5677-4d98-9116-8d464f9869fe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113037Z:f5450555-5677-4d98-9116-8d464f9869fe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8044BD99E4374964B034378EF865A105 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "505343ef-2ed1-4c0d-b893-433828f00f11" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "dcf74470-21a5-49ed-943a-1de6cab670b5" ], + "X-AspNet-Version": [ "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/1807a281-37f2-4abe-a903-e209b8b7e1e9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "94ec6ed6-ce18-4e2e-8ca0-77484a63ce9c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113037Z:94ec6ed6-ce18-4e2e-8ca0-77484a63ce9c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8DDDF2827AA14028A154951FE7FFFC32 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4167" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web\",\"name\":\"Functions-Flex-PowerShell-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "303" ], + "x-ms-client-request-id": [ "7ef92e45-4729-462f-9db6-8b07d8494b6d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "43837490-7383-470d-8868-c961926445ff" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "10a73cd8-d4b9-46b1-ae27-c35b0312abd8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113038Z:10a73cd8-d4b9-46b1-ae27-c35b0312abd8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A4834F9D5B864B76886452076EB0FA57 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "304" ], + "x-ms-client-request-id": [ "2681d8a5-b486-4913-a52a-05b64ddaf273" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "45b7c298-f6b2-4314-b757-b6e0c36de5b9" ], + "X-AspNet-Version": [ "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/5628f496-9d84-4cef-a45d-85e4c86c88a4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e63d7880-c7b0-4eee-a01a-a512bcccbd9f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113038Z:e63d7880-c7b0-4eee-a01a-a512bcccbd9f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 000BB2CEC1FE451B9C771D85BC956240 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "9dce33ce-bb0a-451d-a842-463d62656dec" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C7B1A12E80\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3ee4f825-e2ff-4161-8e17-f737846d8dd0" ], + "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": [ "b867559c-704d-427d-8d7e-3debf68eefe3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113039Z:b867559c-704d-427d-8d7e-3debf68eefe3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C37AB29F468F4AF3A8CCC162EA418414 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9572" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:30:05.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "306" ], + "x-ms-client-request-id": [ "a56b24d6-ad4b-446d-b31e-bdae20010447" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cfe7a640-edba-4131-a747-ac25647c49c0" ], + "X-AspNet-Version": [ "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/be145e3d-256e-40b7-9041-53af058ca354" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "579107ee-5d22-448d-81d9-88eefe16be1e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113039Z:579107ee-5d22-448d-81d9-88eefe16be1e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4D280C55574B42A5BBF551D7F6ADDD98 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "307" ], + "x-ms-client-request-id": [ "f86f5863-90ce-4841-a0f7-f41407810525" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "0e140e8b-c511-4cbc-8256-402f4347c16b" ], + "X-AspNet-Version": [ "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/e947e90c-36bf-47e3-9528-e3bcdc0eba61" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "73b515e8-d552-4979-9e83-d1bb0253caa7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113039Z:73b515e8-d552-4979-9e83-d1bb0253caa7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DA56DA2EEA784912931F3FF17650D537 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4167" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web\",\"name\":\"Functions-Flex-PowerShell-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "21922765-0aab-42e0-b9d4-5031664d71f8" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C7B1A12E80\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ca7d462d-c311-453a-898f-0afd8886b1b7" ], + "X-AspNet-Version": [ "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/a8494a07-8fe7-4a0d-8cae-3f5f22f29474" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f3157f19-7a44-4e03-91a9-5df3131ff19a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113053Z:f3157f19-7a44-4e03-91a9-5df3131ff19a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7DD0937E236C41178108BE92B97F7E0F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:30:53 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-112925\",\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": [ "0e4547de-b957-4dc2-b6cb-2ed5b624f205" ], + "X-AspNet-Version": [ "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/f31b18f4-0e1d-4a17-b124-e96090cad98b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], + "x-ms-correlation-request-id": [ "1739df85-196c-47c1-b2d9-299ad1754623" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113109Z:1739df85-196c-47c1-b2d9-299ad1754623" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 990C92CB162243FFBEF5E15C592FB6AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:08 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "154dc257-3792-4317-aab9-aacaf9fabf62" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b2743635-034f-4c14-bba2-708559f81825" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "ac230631-6674-4ed8-a5a7-b2786d4685ef" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T113113Z:ac230631-6674-4ed8-a5a7-b2786d4685ef" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F7DE0EFE41584BC3AEF9AC27FDC78D7D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "f2d9a6e8-1046-43fd-9711-52eb09ef83d5" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ffc31734-8c81-46ef-9d02-f48d8a336132" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "53866dcd-1e27-44c6-9ea4-498e7813b601" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113143Z:53866dcd-1e27-44c6-9ea4-498e7813b601" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 64AC407C38684FD29246ECDEDEEF8A6C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:43Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "f2d9a6e8-1046-43fd-9711-52eb09ef83d5" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "17bb5b18-d557-41e5-976f-aaf5ba18a8f6" ], + "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": [ "28b0cec8-1aef-4acf-93ec-2ef11dd6ea8c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113143Z:28b0cec8-1aef-4acf-93ec-2ef11dd6ea8c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4233D6DD6AC044B18B84BA2C4B0EF594 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:43Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "314" ], + "x-ms-client-request-id": [ "1102be4a-95f3-4184-af2c-d0dc3464e49e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "1e8a3add-baad-45ba-971a-fc0a816e373f", "36bb6d28-6f2e-4f54-9c6d-3dafdfed31b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1bfb2550-cdd8-4b36-8a06-f69077419179" ], + "x-ms-correlation-request-id": [ "1bfb2550-cdd8-4b36-8a06-f69077419179" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113144Z:1bfb2550-cdd8-4b36-8a06-f69077419179" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 32FB4B88BBFC443E9F887AD8BE14A4EA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:44Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "f4c97f4d-674f-483a-bdcb-1736fec0ddbc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6eee7c26-a63b-47d7-9f33-39c623f41551" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4349ba7e-096a-472b-bfbb-593fa5051d8a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e8015aa3-eaed-44c6-b3fb-5be0bf4ad875" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T113145Z:e8015aa3-eaed-44c6-b3fb-5be0bf4ad875" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1582695AE5D54837BB55E39F3FD4B288 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:44Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:0d4bdbde-801e-0036-7dc7-53edd9000000\\nTime:2025-11-12T11:31:45.0572860Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-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": [ "\"0x8DE21DF0F882F79\"" ], + "x-ms-request-id": [ "5c211412-35be-4d3d-92f2-22f69479f3cf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/264be014-931f-4859-9713-b8a822602575" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "b322f288-a0a2-40ea-a7d6-9994adbab41d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113145Z:b322f288-a0a2-40ea-a7d6-9994adbab41d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 519C1D07B7C64EF7ACF6A3D0317482BA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "454" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000\",\"name\":\"app-package-functionsflexcustom112925-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": [ "317" ], + "x-ms-client-request-id": [ "25981a50-27b6-4e7a-956c-296cb25c4302" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "15715ac8-4fcd-4f9a-b031-602d4b90b7f1", "4046033e-59e2-480d-b102-c85433ab3ba6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "4d91b77d-bd4d-4a4d-aaaf-67b601d64a1d" ], + "x-ms-correlation-request-id": [ "4d91b77d-bd4d-4a4d-aaaf-67b601d64a1d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113146Z:4d91b77d-bd4d-4a4d-aaaf-67b601d64a1d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0EE660AB55604FA79EC499940F65D8F0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "318" ], + "x-ms-client-request-id": [ "5099c25c-ba7f-4f7c-a3dc-b672ffbebdcc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "464a7f31-7572-4601-9e07-68d2c8f59f55" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/ca8f0a9b-3f78-4ba0-816d-69f79dd2fff1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "de346e7b-75db-486d-be1e-8eafcfbddf6e" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T113147Z:de346e7b-75db-486d-be1e-8eafcfbddf6e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 78F8B39C8B0A4945B0E9152F62728FBB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:46Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"a1zLYLIOmWrzqHlD5m9253sY038BvCpPscldP6iRIWUT5O5MXS7irD2ezpNFhBrYjsQAtk8xlOWP+AStf1YXkg==\",\"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": [ "319" ], + "x-ms-client-request-id": [ "15649056-df07-44fd-959d-11c4242540f4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "f4b6621d-8f62-43f3-9960-ea82dbdd1297", "59e9c394-c869-48ca-af4e-8c949bf54ab7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f64c10a8-47b1-4a92-909d-142029d07bc7" ], + "x-ms-correlation-request-id": [ "f64c10a8-47b1-4a92-909d-142029d07bc7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113148Z:f64c10a8-47b1-4a92-909d-142029d07bc7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6DA6E25C317B461181EBB595DF203873 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "2dea7e6e-5499-40de-98e5-3bfd7025f961" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3c4e6eab-b3ae-4d67-a516-618b3a8abf02" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e45b6ee4-8905-4939-8d66-bd1b76c47f9e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "39803d09-7d3b-4215-96eb-e7d6d3a32523" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T113148Z:39803d09-7d3b-4215-96eb-e7d6d3a32523" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C230337227E47968AA4A1A6D90DD25C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:31:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"a1zLYLIOmWrzqHlD5m9253sY038BvCpPscldP6iRIWUT5O5MXS7irD2ezpNFhBrYjsQAtk8xlOWP+AStf1YXkg==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Custom-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Custom-112925?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/1b2a290f-0276-412a-9311-096a43018297" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "879ac728-6e97-4f05-81e0-e21f9d4905ce" ], + "x-ms-correlation-request-id": [ "879ac728-6e97-4f05-81e0-e21f9d4905ce" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113203Z:879ac728-6e97-4f05-81e0-e21f9d4905ce" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 55C421D71E864A929C6EDC2874591560 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1626" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03f58f-0000-0200-0000-691470310000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Custom-112925\",\r\n \"name\": \"Functions-Flex-Custom-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-112925\",\r\n \"AppId\": \"3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f6f831aa-5e80-4794-9339-96325a999025\",\r\n \"ConnectionString\": \"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\r\n \"Name\": \"Functions-Flex-Custom-112925\",\r\n \"CreationDate\": \"2025-11-12T11:31:50.9829727+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-112925_3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-112925-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1988" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C7F9367A8B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ba8cf823-b00f-47ac-8a71-495ac0f1b436" ], + "X-AspNet-Version": [ "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/2e63e04d-d609-4419-a036-b4d0c46b6d2b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "6441f0eb-9148-45a4-9172-df59075527da" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113227Z:6441f0eb-9148-45a4-9172-df59075527da" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1E2B2A1902FC4D4E890E5FC12F5651A7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:03Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9534" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:05.4566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "d77e79c6-7ff1-4282-9c40-36ac62adc83d" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C805C5816B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "de6081df-af5d-4748-a1b9-227b4ed907e7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1432251f-93ca-4242-aaf4-fe7d51297c43" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113257Z:1432251f-93ca-4242-aaf4-fe7d51297c43" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3D560913786147529142A958601BBBE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9511" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:26.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "0a917279-0cf3-4340-aa5d-0ce1bf1422f4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C805C5816B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ba15696c-4922-4d5e-ba2c-29e2fcb4cba5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "388a13b3-f21c-43b8-ad62-7ffb72ce6556" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113258Z:388a13b3-f21c-43b8-ad62-7ffb72ce6556" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 895046EE59B34273906962DF171AF61A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9511" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:26.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "9ed53b22-fec6-4144-8876-4255303d2932" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "655e7fec-611b-47fc-b7e6-92bafe222d89" ], + "X-AspNet-Version": [ "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/74c69519-1702-42cf-aed9-adb0b4bba611" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ac2f9649-b6d5-464e-a1dd-a2ec1e7994b8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113258Z:ac2f9649-b6d5-464e-a1dd-a2ec1e7994b8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2F45098A250D4603A1E8ABCE57A307AE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1017" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "ad32a1b8-0889-4273-a586-6a801fec3825" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "59575f33-1cb7-465a-a7ef-5b6f3cc3d8c1" ], + "X-AspNet-Version": [ "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/6e2f9928-a4ba-4b4f-bb39-36d66e97f0dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1de3ad5b-5a32-4abb-938f-48408ab371d5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113258Z:1de3ad5b-5a32-4abb-938f-48408ab371d5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5FA3B7122B444C1E86D17E60704DC557 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web\",\"name\":\"Functions-Flex-Custom-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "5c2444c5-c36e-4358-9b47-08e7b7758492" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "11d46fed-ef71-4948-b92c-f631798b7cc8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9c610d5b-1964-4d9f-9b7f-d5ca2b273c22" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113259Z:9c610d5b-1964-4d9f-9b7f-d5ca2b273c22" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A1C04F47C8EE4F72847210D162A1AD90 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "107e3688-1c05-4525-a574-b24427043b5a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9dfff3bc-ee7c-44a7-8984-0fde82322506" ], + "X-AspNet-Version": [ "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/88202caf-7914-4d67-99c0-3e8b992da286" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "805ef4bf-5cd2-4d4d-a2c6-2474ed3cd701" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113259Z:805ef4bf-5cd2-4d4d-a2c6-2474ed3cd701" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DC064FF5DF974F9CB6C79275628A9F41 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1017" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "329" ], + "x-ms-client-request-id": [ "18e6edb5-e453-47a6-9aa0-4236df8de826" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C805C5816B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8a878a1f-47d9-47a8-b5a9-9153921708ba" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "737452fa-3971-4525-8500-c4c3dfaf02ff" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113300Z:737452fa-3971-4525-8500-c4c3dfaf02ff" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 75CEC238A20343849A9DF8A679E7137C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9511" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:26.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "2eb93986-0751-47ff-ad4d-bae8e2870d23" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "fe5f96d5-bc7c-4bbb-9e78-b1b1395c875a" ], + "X-AspNet-Version": [ "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/592a59b1-a1aa-4be6-8047-d880850d8787" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "becbb085-91aa-4d10-8d76-7304cf58fb85" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113300Z:becbb085-91aa-4d10-8d76-7304cf58fb85" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BC2EF6498D1547E38234CEB4DDB5CF21 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:32:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1017" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "263528f5-df7d-4d5c-95c8-c8fad7c9d615" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "21fe50b4-48ce-43f3-b25a-95f8c41d165c" ], + "X-AspNet-Version": [ "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/6b4d2c15-615d-405e-a0e0-20be8c195e77" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "329b4576-b488-4fbe-8399-f23d0652ac33" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113300Z:329b4576-b488-4fbe-8399-f23d0652ac33" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7151C720D79046E895071E2F497E653A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web\",\"name\":\"Functions-Flex-Custom-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "cbb0db85-cbcd-46dd-af23-c0d8922852d2" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C805C5816B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f2289d16-aac4-4138-935a-6693d2e7b327" ], + "X-AspNet-Version": [ "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/2caa0ade-9490-435e-8723-32090132d560" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "7824ec46-f110-4542-a403-231279b47c48" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113315Z:7824ec46-f110-4542-a403-231279b47c48" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C69C1A0FC3A74A1B88AFF33EF36B9464 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:14 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-112925\",\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": [ "e4a6d0e4-2e28-4a0c-ac82-6d8b7bacbaea" ], + "X-AspNet-Version": [ "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/f655ddd4-8653-405f-b934-e4fea3b3a69d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3c9a4bf0-7926-4e89-9ebc-b3141b5f82f9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113315Z:3c9a4bf0-7926-4e89-9ebc-b3141b5f82f9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 53458F5EB91D4677918CB3FC17EC11DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:15 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "8612f835-c0b5-4439-adbc-b63389e5e522" ], + "X-AspNet-Version": [ "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/8c47749d-4345-4e0e-bd53-134f9703280d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "f7a952ad-6b86-4061-82a1-c0f55957673b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T113319Z:f7a952ad-6b86-4061-82a1-c0f55957673b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 85DC2F4368C341ECA7FE65B26DCB4DD8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "830c75a3-4620-4a71-aba8-39aeed046e47" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "702f6f22-6418-4141-acc0-cb4c0f0fd15e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "04a18bfa-2de5-4665-b903-151464c00308" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113349Z:04a18bfa-2de5-4665-b903-151464c00308" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 29062A0ED1354E63BECA9CA743965105 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "830c75a3-4620-4a71-aba8-39aeed046e47" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1d1c95b5-d198-409d-9e08-cdf6b14b8d2c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "26e2d3b1-69f7-4361-bab4-158d88e0aded" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113350Z:26e2d3b1-69f7-4361-bab4-158d88e0aded" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7B8788C8B44B4D7380A13256F19C517D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "338" ], + "x-ms-client-request-id": [ "908c0ade-3dcf-4eed-8607-14fa937f81f9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "fc1b2386-c213-47dd-a8eb-40f5713b0ab7", "8e8706e1-9c63-4c11-bf93-83a998183ae0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "993186ac-27da-4f45-ba86-a9436c86a2a2" ], + "x-ms-correlation-request-id": [ "993186ac-27da-4f45-ba86-a9436c86a2a2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113351Z:993186ac-27da-4f45-ba86-a9436c86a2a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A7A1F458A440467EA394766E426C2E6E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "15fd55b8-3316-43ed-b2a6-7d9721bb2d48" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ece144dd-6641-49fe-94a4-f36b4b768244" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28a4e6fc-647b-4505-aaec-38fcf540716a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "459feb32-cddc-4942-a869-edb5c9fe2b03" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T113351Z:459feb32-cddc-4942-a869-edb5c9fe2b03" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E9742F37FFD240499805AF113665BBD0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:51Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:038972cc-801e-0071-50c8-531f2a000000\\nTime:2025-11-12T11:33:51.7637098Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-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": [ "\"0x8DE21DF5B79E7A5\"" ], + "x-ms-request-id": [ "03fb67b6-bd85-4afd-948c-5fc24bbbc7c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ed1809ac-836b-4fe9-8b8d-f18acb81f79f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "4e18dd28-a442-47c4-bfd6-ca83e481bc84" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113353Z:4e18dd28-a442-47c4-bfd6-ca83e481bc84" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 34A3FB3726C745498054A22976E5DC7F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:51Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "468" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000\",\"name\":\"app-package-functionspythonflexscaling112925-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": [ "341" ], + "x-ms-client-request-id": [ "4c74528f-292b-49a1-836e-c0630604cd21" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b1dd08ec-9fa8-4703-b95e-cd9bf5bc94cf", "fd5e5e29-1362-4b03-8edb-78862b05850f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "583a28fd-b04b-46f2-a2ca-b8169607ee25" ], + "x-ms-correlation-request-id": [ "583a28fd-b04b-46f2-a2ca-b8169607ee25" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113353Z:583a28fd-b04b-46f2-a2ca-b8169607ee25" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3313E7BE7ACA4D62B761EC5D9480BDF5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "7c3bf269-2cf7-45c2-8795-c2b09f4188d4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "bd274e9e-fbba-4153-947d-345a2d8f5970" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c482ec61-d7cb-497e-a039-53be86d925d0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ea455ffa-8ccd-46f2-9b60-0a96612bbd76" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T113354Z:ea455ffa-8ccd-46f2-9b60-0a96612bbd76" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8519DDD0BE68429E978D40A643B647AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"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": [ "343" ], + "x-ms-client-request-id": [ "f9ecca4f-2711-4173-bb71-d2b49b275a2a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "1e5d40ed-71fd-4084-ac76-96ec6e14e590", "0c5c869b-cd7b-4f70-8125-4ea751e9d858" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1a5bddaa-fe5f-4a0f-a7fd-f3148f4a4105" ], + "x-ms-correlation-request-id": [ "1a5bddaa-fe5f-4a0f-a7fd-f3148f4a4105" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113354Z:1a5bddaa-fe5f-4a0f-a7fd-f3148f4a4105" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2C8730A285554134BBFF4CC63CE596B0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "8c8e927d-b456-41e9-acb4-11a2c12023c0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d81eab21-32ca-41a5-8497-1163f73fd110" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/f89b699a-75d0-4897-a6ab-2312770dab18" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "30115b25-5f27-48bc-b927-e6862ef21182" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T113355Z:30115b25-5f27-48bc-b927-e6862ef21182" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AE5DB7E5619E48378227225823E8559F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:33:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-112925?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/f73c6335-d65a-470c-92ea-26ddf3461aca" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "acc89d20-f2b5-421f-b4a1-5441f36de740" ], + "x-ms-correlation-request-id": [ "acc89d20-f2b5-421f-b4a1-5441f36de740" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113414Z:acc89d20-f2b5-421f-b4a1-5441f36de740" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6AF201E551214526ACAD4C7C22584A2F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:34:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e031b94-0000-0200-0000-691470b50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-112925\",\r\n \"name\": \"Functions-Python-Flex-Scaling-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-112925\",\r\n \"AppId\": \"6c98ccd8-e53a-451d-a19f-554753026e85\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dfc253e3-77b0-4844-94e1-32dcd5882a3f\",\r\n \"ConnectionString\": \"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-112925\",\r\n \"CreationDate\": \"2025-11-12T11:33:57.6896087+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-112925_6c98ccd8-e53a-451d-a19f-554753026e85_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-112925-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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2232" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C847FA75B5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d5271bff-3fcb-430b-8ccb-e7b1c9392fdd" ], + "X-AspNet-Version": [ "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/f23c2379-f772-4bf3-971f-7d2db49f7b92" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "34cc09cd-58f3-4114-8c85-400d056b355c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113439Z:34cc09cd-58f3-4114-8c85-400d056b355c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8090867DD3BD4C17B934F70B96739A8A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:34:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:34:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9719" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:17.2133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "e5b1bf8d-cc4f-4274-a151-eb5f49a14207" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8544F80D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c3b3b727-736f-4e11-bf60-a95219b2a3f0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c7fc0d9d-8674-42f1-9559-b3ae74d1c06c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113509Z:c7fc0d9d-8674-42f1-9559-b3ae74d1c06c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 74FB4B05E6324E9B86D870C5AFEB004C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9696" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:38.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "9c6a5bef-2a6b-4f7d-923e-19fb13270f93" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8544F80D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a86a0162-1aa3-49df-a589-cf5bd078af76" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1cfb3386-f8fc-4b07-b49a-0f761f45759c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113510Z:1cfb3386-f8fc-4b07-b49a-0f761f45759c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4A61A57CB1024942979B36DDE4447995 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9696" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:38.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "49559fd6-d387-4832-b0d0-4e2f07fe16e5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "460659ab-5105-416c-8e54-e5463aeaa3f7" ], + "X-AspNet-Version": [ "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/06b24b6c-7f4f-48fb-87db-f35d5990ae21" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "27bafcbc-5d4f-4264-8380-550ebae945b7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113510Z:27bafcbc-5d4f-4264-8380-550ebae945b7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4A5419FF753F4256BDDEC532231121CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1025" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "a58eab17-3704-4407-bcca-8f7059858431" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "53611c1f-c6e8-4f7d-9501-e73dcba0e496" ], + "X-AspNet-Version": [ "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/0d6b2e75-93f9-4731-acdb-5acfeab39b9a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b2a6afa4-eb86-4fc8-b8c6-de5c71ca1413" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113510Z:b2a6afa4-eb86-4fc8-b8c6-de5c71ca1413" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4C44278C145F48C5B898555DCB8F44C1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "e7b70bcb-bdf8-4093-8ab0-dfc320ef71f4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d3cec71a-6565-4503-833b-76cd0492858c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9d1df2d8-335d-4327-904a-9a928d9c1892" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113511Z:9d1df2d8-335d-4327-904a-9a928d9c1892" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D100CE74D5D8415F917864D45DE1FCFA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "a44ed233-370c-44c6-8423-c7131a959004" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a31ff10f-c620-4675-be50-c6151c2bf53f" ], + "X-AspNet-Version": [ "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/8051811d-3c32-458a-b13b-8e27bd492a39" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "98ff976b-707d-4405-8d27-7693b0e709ba" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113511Z:98ff976b-707d-4405-8d27-7693b0e709ba" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 30D3E9A7DE004AD78119395C13C8839F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1025" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "353" ], + "x-ms-client-request-id": [ "d9e72752-7c86-4f1b-9cde-74ac5ea57c1b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8544F80D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c1a469ae-3c15-4787-ab6d-5f66b8e76ead" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "923530d5-8b5b-4bf5-9a76-99029b3e9287" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113512Z:923530d5-8b5b-4bf5-9a76-99029b3e9287" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 564E236B2277428A94440BDE74781DB4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9696" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:38.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "63c910a0-e4dc-411e-b6c0-ed4c7e6a9415" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c7ea102c-ffd5-48ad-bd25-cee0c7125915" ], + "X-AspNet-Version": [ "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/b5da67f2-eb68-4fd1-93a0-f0fc3b37e925" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "9fd4a21d-56ae-49dd-840e-048c96b091f3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113512Z:9fd4a21d-56ae-49dd-840e-048c96b091f3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4C2019B159D34CD4865E2637C3300F97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1025" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "32d6edb1-f7aa-4263-bf52-b1b3c20f203a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "f37774a4-d568-4e4c-bbbb-b137d54e84bd" ], + "X-AspNet-Version": [ "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/9e598c5b-577f-4377-bad3-b262f7938871" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c25e7c01-746e-4911-b868-c3366d3e8f06" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113512Z:c25e7c01-746e-4911-b868-c3366d3e8f06" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AFF12813A56A4753BDE1073E37B831CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "67897528-4a33-4be2-b9b3-f0db3dbaf314" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8544F80D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b559e3aa-f62c-46a8-914a-8f822b3986c5" ], + "X-AspNet-Version": [ "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/794fe1e6-32cc-427c-862b-6839cb5b5a48" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "61d62180-9fdd-4edf-826a-e34824c49f3c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113530Z:61d62180-9fdd-4edf-826a-e34824c49f3c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 08C29B9AD9724E2D8BB1B030E838BF1E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:29 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-112925\",\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": [ "2e934532-dce7-4566-af00-075197a2e7f7" ], + "X-AspNet-Version": [ "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/ca7d531d-0584-4e14-b770-65253bebae84" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fc1682ff-5156-4f76-9d95-481e7e250f2d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113531Z:fc1682ff-5156-4f76-9d95-481e7e250f2d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5676BB5507EF44659A4E2AEB532460B0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:30Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:30 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "be073d7b-c1db-4822-859e-2b00dbe1912c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a6cb417-d986-45b5-a83a-7e04d5d93e20" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "64deb0e8-d687-47ec-a92e-7996b76506eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T113536Z:64deb0e8-d687-47ec-a92e-7996b76506eb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 15D13DF3F33E4D1D8903679822A2FF89 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:35:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "8c8c17ae-d7b6-4f3d-9261-ce0f0d4aa601" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f2acd2a9-c88f-452f-889b-25fe6a0fd0a6" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ceb35cd1-cc76-480e-9217-d87c2989b112" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113606Z:ceb35cd1-cc76-480e-9217-d87c2989b112" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6EE14623463A47308E17D8C6391A819A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "8c8c17ae-d7b6-4f3d-9261-ce0f0d4aa601" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0625641d-9f87-4fbb-abae-3d75b771b81a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "08f6f86d-8613-4388-aa04-97c5862a788d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113606Z:08f6f86d-8613-4388-aa04-97c5862a788d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5B2B3CC3C80A45C7BDAA374C3D8D3C58 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "362" ], + "x-ms-client-request-id": [ "5f130f87-d099-4e00-b51d-e7550a85e492" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "792a3514-8ab0-4658-9a90-96108a96e8f8", "86455b94-0383-499d-a0c4-e58bda61c388" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "4b4653e5-57f9-4eda-9836-25457f327f8c" ], + "x-ms-correlation-request-id": [ "4b4653e5-57f9-4eda-9836-25457f327f8c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113607Z:4b4653e5-57f9-4eda-9836-25457f327f8c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0ABCA997B59F4972AA5079F361419212 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:07Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "363" ], + "x-ms-client-request-id": [ "2d157073-0e86-40de-aa0c-91a3e186cde7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1f216d3c-dab3-4ff7-ac3f-8096b0bea239" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4700c1ff-b01f-4dff-8a4d-04be49adbf8f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b5c25ea1-0507-48bc-b838-7905eb44631d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T113608Z:b5c25ea1-0507-48bc-b838-7905eb44631d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3ACEC0A1613346128D247102E214FB80 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:82762403-501e-0084-28c8-531c2a000000\\nTime:2025-11-12T11:36:08.8008686Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-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": [ "\"0x8DE21DFACD7B36C\"" ], + "x-ms-request-id": [ "00df87be-ce05-412f-b3fe-583f50942462" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6b3d0e66-957c-4162-a5f4-a04161594955" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "e52f174b-9f2d-4eb9-a458-fa9df911c3d9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113609Z:e52f174b-9f2d-4eb9-a458-fa9df911c3d9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2E237C1D199F4F4CBCD6C011255D69B5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "466" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000\",\"name\":\"app-package-functionsnodesystemidentity11292-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": [ "365" ], + "x-ms-client-request-id": [ "698be997-b201-450b-85cd-deab533f3b86" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "bbac105e-8337-4e53-835f-ab25438b8862", "e9490599-18e9-48a7-b40e-13ec8311794e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f6be81af-4726-46cf-b6da-be7cfb274de7" ], + "x-ms-correlation-request-id": [ "f6be81af-4726-46cf-b6da-be7cfb274de7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113610Z:f6be81af-4726-46cf-b6da-be7cfb274de7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0BF179926F494F038E735A20A93FFB00 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "69d7e228-6f4b-4e30-818d-d3ab7301b7b2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "62eaa06b-d377-496c-ab68-99dc260fdb77" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bcd28a20-c1fe-49e7-a73f-d4406df74edb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "692c670b-309b-447d-bce5-5b625e55e771" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T113611Z:692c670b-309b-447d-bce5-5b625e55e771" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 40491FCB68754FEC88E05A17575AA248 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"Ky2pxrgAJq6uFQNVPM7Rse3XEdAssBbQssUYKn03uJG1lER0qpRRjF7CRMAYfLI8IFlvffKrsbtN+AStHah/eQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-112925?api-version=2015-05-01+10": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-112925?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/b512ff74-b2d1-47c3-aafe-bcf1ccb86dbc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "08d3d86d-e380-4337-929f-282f26fa0d62" ], + "x-ms-correlation-request-id": [ "08d3d86d-e380-4337-929f-282f26fa0d62" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113625Z:08d3d86d-e380-4337-929f-282f26fa0d62" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4E6226F4AB9A45039516686A4A3966D4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e032497-0000-0200-0000-691471380000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Node-SystemIdentity-112925\",\r\n \"name\": \"Functions-Node-SystemIdentity-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-112925\",\r\n \"AppId\": \"6a33d57a-89ba-47c9-822f-a404ba432ebb\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d94d8d1d-e341-455d-bf5e-6d34b12c1ee6\",\r\n \"ConnectionString\": \"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\",\r\n \"Name\": \"Functions-Node-SystemIdentity-112925\",\r\n \"CreationDate\": \"2025-11-12T11:36:13.5609158+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-112925_6a33d57a-89ba-47c9-822f-a404ba432ebb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-112925-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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+11": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"\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": [ "1641" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C896A2F9A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c5725d06-03be-4643-803d-d96603514ab8" ], + "X-AspNet-Version": [ "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/87460ac1-9f21-457a-90cd-a3834e74d2ad" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "e25a085d-3550-48e3-ba8b-91ca2ec402f0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113650Z:e25a085d-3550-48e3-ba8b-91ca2ec402f0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BE3B1961F3BE472890BBEFDA376EF8C5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:36:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9746" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:29.5933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "969dd141-418f-4b55-a2dc-c7f55c176113" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8A2E225CB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3ea5fcd3-fd34-4f8b-a1cb-f8252bf09a77" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1146ccc5-9ba3-4c80-9311-fa1e07422004" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113721Z:1146ccc5-9ba3-4c80-9311-fa1e07422004" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B98F8A19BFEC4DE082B76A402B0F8AD3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9723" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:50.5566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "ce764cb5-bf6d-4e19-a15a-b90374700ade" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8A2E225CB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6ec0cc8b-0d59-4a73-81fc-20eb46957c7e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d724f5c9-06df-45f5-b245-ec44677399f3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113721Z:d724f5c9-06df-45f5-b245-ec44677399f3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B2548E21C3994A1FBC9C356AC3EEDBB7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9723" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:50.5566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "371" ], + "x-ms-client-request-id": [ "ad30e52c-c7a3-421b-9c14-266f3f973621" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "08dfe1f7-1494-48b6-8444-08246dd1239e" ], + "X-AspNet-Version": [ "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/02d02d32-05fc-409a-acfa-281565b5d122" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9218e0f5-83ef-404b-869f-2d185799f40c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113722Z:9218e0f5-83ef-404b-869f-2d185799f40c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 19D0D175EC8A470F9402FCB8F4DB25E3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "785" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "372" ], + "x-ms-client-request-id": [ "aff87ab5-483f-4808-b3dd-8531cca5a7f0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "bf7d21b1-ade7-4081-b0c4-e82884843e9d" ], + "X-AspNet-Version": [ "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/923de47c-791d-475e-93a7-1d169b789bed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "72fff29b-5a30-4f8c-a776-43fe23c54401" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113722Z:72fff29b-5a30-4f8c-a776-43fe23c54401" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3FDB6D62C5324152BE49B28CF2016D30 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4176" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"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\":33494,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "cc6d2302-d6eb-42dc-b905-0d28139b95ec" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8b5764f7-79ba-4c6a-b948-c68d383adf26" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "029c2eb1-7d59-4a84-bb9a-1b5a2f853274" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113723Z:029c2eb1-7d59-4a84-bb9a-1b5a2f853274" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9ED7B3B62EE64BBEA907620823CF3257 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "2a3ed97c-fb85-43c4-92f8-d34f602fcc36" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0d200dfe-2bab-4d40-b1f3-05c9054af28b" ], + "X-AspNet-Version": [ "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/db747efe-8a79-4835-942e-a6bbfbca0816" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "535ec668-feac-4476-b15d-8f346d217565" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113723Z:535ec668-feac-4476-b15d-8f346d217565" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5B8869937252425385DB04B05E587CB1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "785" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "375" ], + "x-ms-client-request-id": [ "e63db21a-60d6-4018-ac03-6a935ffc5b6b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8A2E225CB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "91aecb22-f8cd-4fff-915a-a31bce7f8f9b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "92444012-4aa0-4c6d-a9f5-4f1413c228b5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113723Z:92444012-4aa0-4c6d-a9f5-4f1413c228b5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4D83BCC4991C4D39A868AE5BD5DFF70C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9723" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:50.5566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "8a6d4bbf-f0a2-45ab-a151-e04652a07a40" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "136ecee3-859b-452d-9d2f-287347c56a6b" ], + "X-AspNet-Version": [ "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/e9c409a9-974f-4431-9bb3-7e0359366bfd" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "d9800f68-c02c-45aa-bae8-bd2238f88ec7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113724Z:d9800f68-c02c-45aa-bae8-bd2238f88ec7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3421B7514969439C9D5039D26A3508C4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "785" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "103bb993-4d27-4b4c-b44e-edf3c47127c2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "4a336973-67af-4cad-9235-c1d3bee8593e" ], + "X-AspNet-Version": [ "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/14db9db8-9430-40d1-8cca-5f0c4fb14930" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9cd4fdef-0c45-4ed3-b93b-5aca6058f99e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113724Z:9cd4fdef-0c45-4ed3-b93b-5aca6058f99e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F86BDB578E1B423F8FF825CD30F4AB4A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4176" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"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\":33494,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "4d52adf6-1fb9-4968-a320-2b8b63553fa3" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8A2E225CB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c4b51635-9654-435a-be8a-9b963cb13e56" ], + "X-AspNet-Version": [ "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/e166eba2-19e4-4cb8-b97c-a915b3271690" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "13768b72-4225-4a56-a402-b420d0e584f4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113746Z:13768b72-4225-4a56-a402-b420d0e584f4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A45C3283099E41558BDAE893AD58FA6A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:45 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-112925\",\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": [ "6853e9b4-bc0d-477e-a5f9-e4c49e4a8a30" ], + "X-AspNet-Version": [ "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/62b9259e-67bf-45c9-b1fe-459a564ef1e3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "42a60aaf-b8a3-43a8-bcd8-da915bb6e359" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113747Z:42a60aaf-b8a3-43a8-bcd8-da915bb6e359" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2D4E46F5ACF844C8BD09F7026EB1224D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:46Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37: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 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "e24ede74-9f33-4ace-b49a-4531d315c647" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5127a546-6291-4f74-a74f-1156c31c473c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "86d4c811-c4ab-4504-8b76-afb34eba85e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T113751Z:86d4c811-c4ab-4504-8b76-afb34eba85e1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 38B409499E9A4F41BDC882BA3662C4E1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:37:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "8b8fd9a6-d439-4cd4-a587-5fbdaefd91cd" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "14b65762-0621-4b8e-9be0-7c2591069ecf" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "69c74840-9ba0-4f81-828b-3e26860fcd10" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113822Z:69c74840-9ba0-4f81-828b-3e26860fcd10" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 58A96C01A4A84D118370F3317D37F340 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "8b8fd9a6-d439-4cd4-a587-5fbdaefd91cd" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "557d93a2-dee1-456a-ba28-56bffbc82e7b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7f761fd5-8da0-4d3f-8de9-81f6fc57f2ca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113822Z:7f761fd5-8da0-4d3f-8de9-81f6fc57f2ca" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E313E3A3B0D94CCB9F8FE96A5851C1E2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "384" ], + "x-ms-client-request-id": [ "4629d387-9b21-4af8-b32c-4708c4deabf4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "3a8b941c-7308-42cf-b805-fc1e8f71bd64", "e5093fd6-af65-44fe-9c4f-655fe4757cb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "fb1341ef-b7e8-4974-9aad-3c42bc45802e" ], + "x-ms-correlation-request-id": [ "fb1341ef-b7e8-4974-9aad-3c42bc45802e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113823Z:fb1341ef-b7e8-4974-9aad-3c42bc45802e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7AAACDAEFD1F4AFB8C149F384931D2A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "8df5388b-e598-4b6f-b1a7-b55bdb2700c7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "fd77c511-b52e-4ac2-88b1-65a58bb61529" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/a8b5734a-ada3-41b9-9c73-5e537a1e5d09" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a44e177b-a5da-41a0-b6e8-18b71f41d25d" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T113824Z:a44e177b-a5da-41a0-b6e8-18b71f41d25d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3A297C9DD0E44D9DBAF9C6A2F4A9B06A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:5a80c971-201e-003f-1cc8-53138b000000\\nTime:2025-11-12T11:38:24.2629858Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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": [ "\"0x8DE21DFFD8C159B\"" ], + "x-ms-request-id": [ "55bf1d3f-4c0a-482b-8f80-e811b930d93b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a9150321-a1e6-463e-b4a1-3cf5ecb198e3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "141d4e13-d004-44d9-bded-3b90218c8209" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113824Z:141d4e13-d004-44d9-bded-3b90218c8209" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F49EDFAEA9F344D593C121E40FB44E38 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925?api-version=2018-11-30+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925?api-version=2018-11-30", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "c76384b6-6b24-4140-ba02-379ca95d112a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzUserAssignedIdentity" ], + "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "26b7d855-55b7-42c3-8491-064e04f5f187" ], + "x-ms-correlation-request-id": [ "26b7d855-55b7-42c3-8491-064e04f5f187" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113825Z:26b7d855-55b7-42c3-8491-064e04f5f187" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 582C52DE7C9C42FD8CA6F8E3ED7EFBF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:24 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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"name\":\"my-flex-app-uai-112925\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}", + "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": [ "388" ], + "x-ms-client-request-id": [ "4bd3ccc2-6054-4f84-be2b-5cd0ffdbdd67" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "928dcdb3-8f81-4067-83c0-16f096aa55c6", "8dd6cb2a-1317-43da-a9ae-08b5edf05067" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c853d660-e91e-427f-8522-7aa26e0d52a5" ], + "x-ms-correlation-request-id": [ "c853d660-e91e-427f-8522-7aa26e0d52a5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113825Z:c853d660-e91e-427f-8522-7aa26e0d52a5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 932249F2E01F4C7DB0B89807DDB93724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "389" ], + "x-ms-client-request-id": [ "ba26d0ee-711d-4973-b2fa-a0f96d95347f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "39bfc460-1a7c-453a-a89d-e8856500be38" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8043d095-892b-40eb-9ddb-9db377c5a598" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c995772a-5564-491a-9bb5-c796f01d2f8b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T113826Z:c995772a-5564-491a-9bb5-c796f01d2f8b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B84E836CD0D44EF9BFF588232C3C848 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2015-05-01+11": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-112925?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/05b72e53-5093-48ee-8938-a6a6cadd36b5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "66868887-54f8-499d-a9ca-9a8716335904" ], + "x-ms-correlation-request-id": [ "66868887-54f8-499d-a9ca-9a8716335904" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113838Z:66868887-54f8-499d-a9ca-9a8716335904" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BA1B41A0FDD14F148812B839B6F07819 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:38:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1708" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03a29a-0000-0200-0000-691471be0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"AppId\": \"b67d6d86-8122-4475-8e21-d77b809defdc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ccecbaee-8cab-45d3-be5b-5192664369ea\",\r\n \"ConnectionString\": \"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"CreationDate\": \"2025-11-12T11:38:27.6901102+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-1129_b67d6d86-8122-4475-8e21-d77b809defdc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-112925-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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa11292.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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"\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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\": {\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": [ "\"1DC53C8E58D9CA0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "01a251c7-a7eb-462d-82dc-af14e3c2660b" ], + "X-AspNet-Version": [ "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/8ccac54c-6313-4523-bcfb-b5d9a2fb0cb4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "dc7d30b1-9e09-4489-bf04-614732267d80" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113903Z:dc7d30b1-9e09-4489-bf04-614732267d80" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 60EC7D811A15421BB88F2195A7901631 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10214" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:38:41.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "286ad32e-71b1-4424-9eb1-c91e3f16943e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8F1E12120\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cc5776ef-ef0a-4925-bebb-b8073574f95b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "528ae4d8-dd94-4ba8-afa9-ef66a5d8a909" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113933Z:528ae4d8-dd94-4ba8-afa9-ef66a5d8a909" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D87D911A54B1457BAE37D9A4FE86593B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10186" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:39:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "4d097ee0-f92e-4ca8-a15a-f284b357fcd1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8F1E12120\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d80b4f80-e2e9-4142-a908-bc4e43e691eb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "788c3c0b-4b73-4eea-8949-cf92b624a213" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113934Z:788c3c0b-4b73-4eea-8949-cf92b624a213" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 21D57BEA14DE43B9882D92F62A556BCB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10186" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:39:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "f9523d21-4537-4940-93b5-21cb80e3e8be" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "959d38cd-8468-4c55-b3f1-442eb3f60c4b" ], + "X-AspNet-Version": [ "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/24fb4a02-476f-473f-a798-cf7f3e941e64" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "add4ed19-8aff-40cd-b080-c66d20323090" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113934Z:add4ed19-8aff-40cd-b080-c66d20323090" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 922A460BDF414845BAF54DA3B1FDA346 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "796" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "b3119ab0-0b55-458b-9cbe-e182b5f69135" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "64f8de3b-44e3-4b3a-afa3-cdf47cf46503" ], + "X-AspNet-Version": [ "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/58a93bda-cc2b-4ebf-a4b9-5d004888d160" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "83a18b72-c847-4514-a32f-f3301f9f9d0d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113934Z:83a18b72-c847-4514-a32f-f3301f9f9d0d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AA964AC1EEAF426BAD2FEA81D0BF3AF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4188" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"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\":33495,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "d22d37ae-e403-4e18-a8db-32b399cc2d83" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d1d2aebc-4757-4cf5-98d2-16b847f99a20" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "39dbfc37-0dfe-4bb0-ae76-3f4c45f6a72f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113935Z:39dbfc37-0dfe-4bb0-ae76-3f4c45f6a72f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 86334DB63AB248DB9001762666258228 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "397" ], + "x-ms-client-request-id": [ "c909918c-de0d-4e1b-8d83-ad449166ee5b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "90f3d5d5-8841-4ca4-af87-0a7dc2d5c507" ], + "X-AspNet-Version": [ "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/21754a68-0825-4d3f-a0e5-9524fda17fa8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "441b6735-6937-4f4f-9775-71522829f920" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113937Z:441b6735-6937-4f4f-9775-71522829f920" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 44CCEBC6CBC24D0B8ABCA104DDDBB2CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "796" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "4730ac0a-71aa-4a60-b54e-3887e74bdc90" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8F1E12120\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "45879194-d52b-45d0-947b-0109c49bf4d0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8f0481c6-98c7-4529-a7bb-aacb70b948e0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113937Z:8f0481c6-98c7-4529-a7bb-aacb70b948e0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7BE1670E4CD549A09462D519756CE15B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10186" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:39:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "399" ], + "x-ms-client-request-id": [ "af17c833-0946-4610-8b57-233cf9f0631b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e139871a-5fca-43ba-851c-dbb4133ef106" ], + "X-AspNet-Version": [ "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/c0db0e7e-a134-4ef1-98a4-14c891b6bebe" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "588e3089-c137-4edf-859a-0ef08ea21c46" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113941Z:588e3089-c137-4edf-859a-0ef08ea21c46" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C655FF3D6DDA4AEAA3D5D043D9A3BB52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "796" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"}}", + "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "400" ], + "x-ms-client-request-id": [ "ea0491b9-839d-4d61-86c3-92c33eeb3f7a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "c1fab4d5-bb86-4d63-85e8-4ebfe22f756a" ], + "X-AspNet-Version": [ "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/fd73c2ec-6db3-4bd7-84b3-789b1b4b0ff9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4726059f-6f23-433c-a99c-2de05b356fd5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113942Z:4726059f-6f23-433c-a99c-2de05b356fd5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BF0FE1C710364E518EB06CC8467A3587 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4188" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"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\":33495,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "401" ], + "x-ms-client-request-id": [ "255b3721-d31b-42c8-bbe9-d29c1eaf4121" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C8F1E12120\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ad776ea0-5e19-45c6-bc17-24ada3b2a800" ], + "X-AspNet-Version": [ "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/ab92d657-77ef-412c-965d-8365c9c47e7d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "a03aa24b-7346-48d1-a4e2-1403b5c6db2f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T113957Z:a03aa24b-7346-48d1-a4e2-1403b5c6db2f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BC4C3277D0D847889367A00FFD9E12DB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:39:57 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-112925\",\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": [ "fb07fdfa-54ce-452f-9a09-5afc2fb06b8e" ], + "X-AspNet-Version": [ "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/737a17ae-7f4c-49ca-a9ec-a2ba51712740" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b3483a40-bac4-413a-b251-27604cf7dd01" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114001Z:b3483a40-bac4-413a-b251-27604cf7dd01" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C6C81B0C3A024E988300A7C7D895D271 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:01 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "01cb969a-39e9-48e2-9f4e-641b212610a2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/3fb253fb-0426-43b9-b832-c8a3868f5098" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-correlation-request-id": [ "a4fc0bcf-a4ea-4857-898c-bb9f9ef54e24" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114009Z:a4fc0bcf-a4ea-4857-898c-bb9f9ef54e24" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BFD675182E1B4B1390F24AF8D5CB33AD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:02Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "405" ], + "x-ms-client-request-id": [ "2ad05347-4544-4bdb-96fd-7f13d71c7638" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d6a3ed80-08e1-47b9-8dd9-03e49eaaf8ad" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "22952656-29ea-4d32-bf17-d038d9498397" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114039Z:22952656-29ea-4d32-bf17-d038d9498397" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4DC4231955F84D7193B699F7A319ED3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "2ad05347-4544-4bdb-96fd-7f13d71c7638" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "28137166-5c12-4a5a-977c-964e82db9ba8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "712d039e-c080-49df-9559-e937189ba6a9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114039Z:712d039e-c080-49df-9559-e937189ba6a9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 614FBAE9831942CDA6EED0BB86F3CF3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "407" ], + "x-ms-client-request-id": [ "6895f6ee-c943-4d9d-abed-9b726e1f1619" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "85970363-1d6a-43eb-832d-c31c889a79d1", "1753d22f-704d-4264-8e0b-1a356bdc6975" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "954770bf-6cb5-4967-8406-3b159277437a" ], + "x-ms-correlation-request-id": [ "954770bf-6cb5-4967-8406-3b159277437a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114040Z:954770bf-6cb5-4967-8406-3b159277437a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 718A478F675A41F2A425E692C844506E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "08759d56-6b1f-4a30-856f-83e125b7e0b5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "33d0d04f-d278-4235-b369-4e042c10382f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69c51324-a431-4abe-a570-a70431f3b55d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ac878443-886c-44ff-99ea-7ecdf8c4d5e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114041Z:ac878443-886c-44ff-99ea-7ecdf8c4d5e9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 66480F10E7CD46799FC34D4B5291E7AC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9e53e490-b01e-0060-54c9-53a7b7000000\\nTime:2025-11-12T11:40:41.3466683Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-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": [ "\"0x8DE21E04F4D5053\"" ], + "x-ms-request-id": [ "124832ed-547b-480f-a421-1ce8d9877e39" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7755ee78-520c-4ffc-90da-74262062ab72" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "12286161-071c-4a8a-84af-b5277aab8b82" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114042Z:12286161-071c-4a8a-84af-b5277aab8b82" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 344A82C71A2B47B79E6884FAC282706D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "465" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000\",\"name\":\"app-package-functionspscustomconfig112925-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": [ "410" ], + "x-ms-client-request-id": [ "68ad99c0-c363-4930-805a-22b8627f355b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b6661f72-c8c3-4a74-aff2-b0aa93ca0404", "8bc95497-3a51-4c1c-bf5c-9e9f4af5a3db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "08462258-dc1d-46a4-a8b1-3760aaf114dc" ], + "x-ms-correlation-request-id": [ "08462258-dc1d-46a4-a8b1-3760aaf114dc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114042Z:08462258-dc1d-46a4-a8b1-3760aaf114dc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F834D4BC23A245AABBF24C92B1005674 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "99ad3024-a5a1-4603-acf0-b5a998fbea25" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "fac514b8-49e6-4956-9f9d-f482af1828a1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2ebfc3d1-5039-4e2d-9857-fcf6448d54f6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "88467128-e3ab-4f69-b184-c5ce52b8cdea" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114043Z:88467128-e3ab-4f69-b184-c5ce52b8cdea" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4D82725BFB184DD290FFA1AA234B564A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"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": [ "412" ], + "x-ms-client-request-id": [ "ce32bf48-ab80-4332-8892-ed8e92589d78" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "85255feb-4cfb-47a4-9427-650638111931", "a65e3686-35e2-4e6c-b85a-a10a33311b35" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "dc51d948-3fb0-4ba9-83c4-c44fe0f0a430" ], + "x-ms-correlation-request-id": [ "dc51d948-3fb0-4ba9-83c4-c44fe0f0a430" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114044Z:dc51d948-3fb0-4ba9-83c4-c44fe0f0a430" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B9016AC498C54001B0C37CF6EF492142 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:43Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "1160b7a6-5e2c-4fe5-bfea-df55f09a53ef" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "592f8db2-f6b6-4340-be2d-3f8b7d199687" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/048623ef-0269-4e1b-bb82-5853938bd129" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "32306f78-da44-4cff-8354-4cf401befc7f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114045Z:32306f78-da44-4cff-8354-4cf401befc7f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E7EEE06E34CF401CABAF8CD3B86F7724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:44Z" ], + "Date": [ "Wed, 12 Nov 2025 11:40:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-112925?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-112925?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/42746969-6b6c-4334-963e-f97a242b7843" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "97fc5a80-b4be-4207-a81e-9b3597f365e4" ], + "x-ms-correlation-request-id": [ "97fc5a80-b4be-4207-a81e-9b3597f365e4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114101Z:97fc5a80-b4be-4207-a81e-9b3597f365e4" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D4E55A1BBBAC43849B40E98C02FDF8E4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1650" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03079e-0000-0200-0000-6914724a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-PS-CustomConfig-112925\",\r\n \"name\": \"Functions-PS-CustomConfig-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-112925\",\r\n \"AppId\": \"737a23a8-f881-4961-bffc-251143cffa60\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"63ba4b8f-4132-45cd-82df-dc9432538e53\",\r\n \"ConnectionString\": \"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\r\n \"Name\": \"Functions-PS-CustomConfig-112925\",\r\n \"CreationDate\": \"2025-11-12T11:40:47.4450527+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-112925_737a23a8-f881-4961-bffc-251143cffa60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-112925-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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\"\r\n },\r\n {\r\n \"name\": \"CustomSetting1\",\r\n \"value\": \"Value1\"\r\n },\r\n {\r\n \"name\": \"CustomSetting2\",\r\n \"value\": \"Value2\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2292" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C93B3993F5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cda4baee-377b-4816-9076-192dce0b19ed" ], + "X-AspNet-Version": [ "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/4687b495-cd5e-489a-9d04-c2f12e1559fc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "e2446c30-3d1c-4f38-bc39-c1714c124dc6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114127Z:e2446c30-3d1c-4f38-bc39-c1714c124dc6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0EA6536DF223427FAFD92CD552AC243A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9747" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:05.7233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "416" ], + "x-ms-client-request-id": [ "712d668e-8b11-423d-a002-964c320e4e3f" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C947BCE80B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2b9edfac-08a1-48f2-bdb8-eb51487f9147" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1488ca57-8d70-4b1a-b6ef-57eb4d6971ac" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114157Z:1488ca57-8d70-4b1a-b6ef-57eb4d6971ac" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E2D1CF151BF74E8987553356AF76205D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:27.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "50f016f3-8d59-4fc2-af55-22be6b1448ca" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C947BCE80B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a1fc0e92-fa7f-476a-8546-98dbac346c08" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "937ac559-7a53-406f-82b5-d301c24a6888" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114158Z:937ac559-7a53-406f-82b5-d301c24a6888" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0A7CB6D3BD284928A6CB5E59978CA4D7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:27.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "76a6d3e9-a5b6-4c38-be03-25d30446720d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "eee2b839-9b21-4c43-bb0b-4a8106178bdb" ], + "X-AspNet-Version": [ "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/e8875908-cb37-426f-b864-04ddcab99675" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0327df93-ccbb-487f-af98-4a572d1aaec6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114158Z:0327df93-ccbb-487f-af98-4a572d1aaec6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F8FB1E89C3B4416AB1CB12C816468617 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1158" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "419" ], + "x-ms-client-request-id": [ "32d5fe70-e8df-4ee8-9b11-518f91ad7317" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "0effdec5-9381-419e-8fb8-13ab54b37785" ], + "X-AspNet-Version": [ "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/4c506553-f605-4a73-b1cd-22ab27e45352" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e7485f7b-048e-4819-80a4-a066976c118d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114159Z:e7485f7b-048e-4819-80a4-a066976c118d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BB2425E16C16425EA160886C6B241431 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4246" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web\",\"name\":\"Functions-PS-CustomConfig-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "f7ae1c90-10da-4dc5-b851-df11fa1e4789" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a3a07d33-ad3c-45a4-95c3-40bdbcb28cb5" ], + "X-AspNet-Version": [ "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/75457489-ec39-4923-9ec6-536f6901bf51" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d27a564a-4530-45f5-bd4a-384b557c6920" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114159Z:d27a564a-4530-45f5-bd4a-384b557c6920" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 71153836B23145E89C1E5C62C941F710 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:41:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1158" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "421" ], + "x-ms-client-request-id": [ "fc21fe0c-341d-40e1-925d-0188979b6600" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "972240b7-241d-4cbf-82c7-47fdf1e18e68" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aeabb828-88af-46a0-b01f-5da2dc06941d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114200Z:aeabb828-88af-46a0-b01f-5da2dc06941d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D57C559E75A043CBBEBE3D5B7C92D588 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "f83d5b87-bf36-48b0-a58f-e171810a54df" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C947BCE80B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7c370bd4-8054-4a28-b21e-d289ee248ada" ], + "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": [ "f598124b-03af-4d84-8a14-5f21b18b2d90" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114200Z:f598124b-03af-4d84-8a14-5f21b18b2d90" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1124DF18FB8245FFA2B7C102CF53C651 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:27.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "423" ], + "x-ms-client-request-id": [ "ae182c46-6103-4678-938f-12fc10cb0f95" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b76de03c-b21d-4ce1-a658-4e2a57d02db0" ], + "X-AspNet-Version": [ "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/94b9eec4-e64b-4dbd-95f1-499e73a2582e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "cd190249-9d8b-414c-aeb7-e5c83fa08d31" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114201Z:cd190249-9d8b-414c-aeb7-e5c83fa08d31" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1858BD0C86624DC5B9464E038F4624BC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1158" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "18a2466b-d413-4c8a-bab7-f948d99d5b7f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "c4ba9dac-80a5-4afa-88bd-690d0ce598f5" ], + "X-AspNet-Version": [ "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/4bc01cd2-ee32-496a-a5e0-adf22672ab41" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "3220f9c1-9f8c-4614-a161-ec2d589cba4b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114201Z:3220f9c1-9f8c-4614-a161-ec2d589cba4b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E4AEE97BFDA94EB18F900AD0CE83EF2B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4246" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web\",\"name\":\"Functions-PS-CustomConfig-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "43f2e13f-16bd-46dd-80ac-de6b833ba524" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C947BCE80B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "dc6a800e-fe7c-452a-a136-bd14039aae60" ], + "X-AspNet-Version": [ "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/cde35ab4-08d5-4470-be3e-a194cdc80f45" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "cf19f2dd-87c7-4570-b569-086809ea5376" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114217Z:cf19f2dd-87c7-4570-b569-086809ea5376" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3CF8BF3834D74C3A9E5DB06AD35BFF6B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:17 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-112925\",\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": [ "ecb1a007-fbd6-4d3a-8187-3cd70d2314c8" ], + "X-AspNet-Version": [ "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/83f5567c-2e22-46e5-a3cc-696411eaf09c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d3e4acef-eed3-497f-8821-fa3e9cbb2015" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114218Z:d3e4acef-eed3-497f-8821-fa3e9cbb2015" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D5B9FEE5915B48408BAC50295C714436 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:18 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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": [ "ac945d20-deba-44f5-b23c-9fe3807549a2" ], + "X-AspNet-Version": [ "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/b753c326-7bbc-47f2-bfe4-6251e8da006c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "2ff085f4-c88a-499f-bee4-b4fe9965c1a5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114222Z:2ff085f4-c88a-499f-bee4-b4fe9965c1a5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CE5B7E6197FC478D89133D0E0F7595AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "de19e02e-598e-4f36-acfa-ae33fe56648b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c342dd31-f74e-4ae4-8dc7-bfdd8985d6ad" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "289739a9-04d0-434c-8366-faf6d09e3a5d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114252Z:289739a9-04d0-434c-8366-faf6d09e3a5d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8A6C176D3AE04F048A9630D88EC4DA8E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "de19e02e-598e-4f36-acfa-ae33fe56648b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a4a6c02c-07eb-4637-87c8-5aeb78add304" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "07c0343c-bbc8-4bd4-9418-4fbf85c3269d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114253Z:07c0343c-bbc8-4bd4-9418-4fbf85c3269d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2199A895EC4A46E6BB41E1A3D080E7DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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": [ "431" ], + "x-ms-client-request-id": [ "15311edd-4a4b-4e46-908f-43e129b9ed2d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "5ad5de34-b0d9-48e9-a0af-743150cf7187", "6c784084-721c-4d04-9a84-44a33d26e734" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "dc25e375-0ac8-4ead-b973-3dd5984c64fb" ], + "x-ms-correlation-request-id": [ "dc25e375-0ac8-4ead-b973-3dd5984c64fb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114253Z:dc25e375-0ac8-4ead-b973-3dd5984c64fb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BE420565F10441D896744467736B76DC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "0ba4af82-9d46-4730-bb3a-836bc183dc28" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3825aef8-63a1-4634-a5e4-165499a0c7ed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/69437028-9d8c-4207-8538-994c51736fb5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d55ae519-23ae-4b09-8bdb-f3f37c9554bb" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114254Z:d55ae519-23ae-4b09-8bdb-f3f37c9554bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8ED4A83C2D7F4AA083D0C12741FBAA0B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:f4b26b08-401e-0053-2cc9-534d1f000000\\nTime:2025-11-12T11:42:54.1194305Z\"}}", + "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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-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": [ "\"0x8DE21E09E9C0858\"" ], + "x-ms-request-id": [ "91abec56-c686-4994-b33c-b84ee2deb8df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/269834fb-52c8-4e1d-aa37-49e3f5c8414f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "fc435b72-2797-43b1-9de4-59d2fbb1c460" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114255Z:fc435b72-2797-43b1-9de4-59d2fbb1c460" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 838AB9720FF6497BA747FA75CF3AD5D4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "466" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000\",\"name\":\"app-package-functionsjavanoappinsights112925-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": [ "434" ], + "x-ms-client-request-id": [ "376ad92a-91a3-4c1f-afec-07b8ecaf76bc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ab043b26-9dff-4648-a844-0b1f35e509ec", "06b7c825-0658-4168-a31f-f45e164bd968" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ee6ba35e-a857-4c88-9422-1e4324d8aab7" ], + "x-ms-correlation-request-id": [ "ee6ba35e-a857-4c88-9422-1e4324d8aab7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114256Z:ee6ba35e-a857-4c88-9422-1e4324d8aab7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D9427A0C12714D73AC1BF8F6FBED894B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "ea1574cb-6d75-441c-8c43-4b1eaad8a098" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "f5e60a7a-00ec-4da6-934e-99820ba6a03b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1dc43e39-1ea6-4345-b93c-443dbde9dba3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6c43a7e7-99cc-4b7f-8da3-c19e0e882f0a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114256Z:6c43a7e7-99cc-4b7f-8da3-c19e0e882f0a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E540EB3349B04987A3745CC5368FEBB7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"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": [ "436" ], + "x-ms-client-request-id": [ "dd068048-b677-4f3e-bcf6-1a050901a3af" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "fcd35792-7e50-489d-aacf-38dfc2f6da0f", "56d3c07b-57e1-4f11-b08f-41f87e67022c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3a7dfd07-56c3-44fb-99c0-015a0d5e43c0" ], + "x-ms-correlation-request-id": [ "3a7dfd07-56c3-44fb-99c0-015a0d5e43c0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114257Z:3a7dfd07-56c3-44fb-99c0-015a0d5e43c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3FCABA580CE2490E8522F2689C51F262 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "437" ], + "x-ms-client-request-id": [ "69ffbc42-e39e-4fcb-bd85-12e423e1e12c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1756db5e-784e-4d01-8dde-076d16ac6dbd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b1f04d34-58cc-4f9b-8254-38c07e073b0f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8b1cb853-0831-4708-adb9-3f5aedfe5b8d" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114258Z:8b1cb853-0831-4708-adb9-3f5aedfe5b8d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 11E060D5A6464DCFA77D65711556D9AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:57Z" ], + "Date": [ "Wed, 12 Nov 2025 11:42:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1638" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C97F6DB3A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "67586a33-260a-4a77-9685-e00a613ce43f" ], + "X-AspNet-Version": [ "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/328c87a6-304e-4b60-8506-8e8ccbd89e7e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a249c385-20c5-44ca-94e7-6e6b0ec8289f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114322Z:a249c385-20c5-44ca-94e7-6e6b0ec8289f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 235691378E4D485E8D967777D3BE3F2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:58Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9634" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:42:59.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "608aedad-701d-4e59-b2d4-0fbab2e79c73" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a129c56e-2b70-412a-9266-60afff94616f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "39998d56-cd4f-4e24-853e-815d366ed429" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114352Z:39998d56-cd4f-4e24-853e-815d366ed429" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 92A37F2932FB4FCAB3D551D824AE74DE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9606" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:43:21.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "b63c0c16-2c4c-4733-819d-d297a9b22f59" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c039093e-c7c5-42f8-8adc-fc469c1b95b2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d9400e62-9dde-48b6-b883-06f756b444ae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114353Z:d9400e62-9dde-48b6-b883-06f756b444ae" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 22F75A7613134749B315CDFE10BB592F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9606" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:43:21.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "d9e24f06-4671-47c8-a159-40013a7c6df2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9564ef70-da8d-42e8-9d95-3c7d87ad7e4e" ], + "X-AspNet-Version": [ "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/ab5206c3-3b89-47de-b932-3b288e4d44df" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "661f8fdf-5939-4d45-bc80-00a94287c6ae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114353Z:661f8fdf-5939-4d45-bc80-00a94287c6ae" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7AA102696CF34B7795C727D35A4B1322 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:53Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "735" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "d182f48f-5665-4033-80ea-b5939af4c82b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "20757f2c-256a-4e10-a4cb-d44569014699" ], + "X-AspNet-Version": [ "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/e6829ddf-8167-4a41-b2c4-e07f63c92d84" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "14fb2af5-af3e-4fd7-b925-fd61c9c66efc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114354Z:14fb2af5-af3e-4fd7-b925-fd61c9c66efc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 95F147B91516497F80D25799FD580939 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "443" ], + "x-ms-client-request-id": [ "ef9fbdc2-bc30-4443-aff3-1efae9be6242" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a1a13293-e1a4-438c-91bb-27b5d263198e" ], + "X-AspNet-Version": [ "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/534a4b90-6caf-4e39-95b8-7fdab8ccd433" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "dca99772-c8b2-4ceb-ae73-cfda5f4f1b44" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114354Z:dca99772-c8b2-4ceb-ae73-cfda5f4f1b44" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E865CE468BCB4A18984DC795715C4954 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "735" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "9abc6a1b-d082-492b-8ee1-132b397ea1a4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "614a157a-19c4-47d7-8f02-2a2ed9df53d5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2bbaddf3-e75b-45dd-bf00-d775213fdfeb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114355Z:2bbaddf3-e75b-45dd-bf00-d775213fdfeb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C9285DE8B7B44213B8CB731FCA47D4D0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "445" ], + "x-ms-client-request-id": [ "7465990a-4962-4aa4-a738-0e02331326ef" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "30d9d66a-ad69-4aa6-910f-9021fb94ca16" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "de2bce24-face-40eb-b531-429c1baf8374" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114355Z:de2bce24-face-40eb-b531-429c1baf8374" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7A285E693CD74484BE8130BD701A4F85 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9606" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:43:21.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "4197732b-ba4b-4362-befe-ed762c59528b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b726a600-3dd0-4569-a1fa-b04099a25cb1" ], + "X-AspNet-Version": [ "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/4f774ce4-5d52-45b2-a7f0-38cbd3a2e58e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9002bb45-c040-4ddc-820d-a61b2e8d172f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114356Z:9002bb45-c040-4ddc-820d-a61b2e8d172f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F9C3E83BA27D4D74BEB101E41719C52F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "735" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "d08e969e-6514-4695-a6a2-128fcd4cc34e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "058fe10b-dca1-4b0c-8bb4-624427d470fe" ], + "X-AspNet-Version": [ "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/e877c520-8303-415f-b56b-4d1dada308ce" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2d33b27a-1b8f-463e-befd-bda31d237118" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114356Z:2d33b27a-1b8f-463e-befd-bda31d237118" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2B1B5728F49945C2AE33A240371FCBFD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:43:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "448" ], + "x-ms-client-request-id": [ "27600d10-dea7-489e-b3d0-f08ebc8d4f12" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4e80930d-5a7a-4d2b-a617-bd5e3a08b534" ], + "X-AspNet-Version": [ "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/45d8c062-c889-425b-86ed-cc91faf4ba2a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "3c8ecc58-8d50-4e8f-ab5f-e2463272d234" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114411Z:3c8ecc58-8d50-4e8f-ab5f-e2463272d234" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 76A22A3D12E043B3941B99EA10F5048F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:56Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:11 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-112925\",\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": [ "9b56a98f-eee5-47d3-ace2-a11a6b112791" ], + "X-AspNet-Version": [ "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/0a57ddbd-84eb-4988-b981-2a153064ebdd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5af1ed9d-6555-4c4f-b4a9-82a3dc5dc488" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114412Z:5af1ed9d-6555-4c4f-b4a9-82a3dc5dc488" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E1824B4BA1944EC7BEA58C42B891DE12 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:11Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:12 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": [ "451" ], + "x-ms-client-request-id": [ "6042a566-ef7d-4976-8529-334a43f63d11" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "8a09d1e4-55ab-46c8-b0c1-99f825e9cb31", "c44f205d-a5b6-4fe1-adec-05570cce0a55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3954fa1b-9f1a-4d37-98d2-53c3c2898012" ], + "x-ms-correlation-request-id": [ "3954fa1b-9f1a-4d37-98d2-53c3c2898012" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114413Z:3954fa1b-9f1a-4d37-98d2-53c3c2898012" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F0A8429DBE874F3C92CC93242426AE39 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:12Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsdotnetwhatif112925-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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsdotnetwhatif112925-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "cee48719-7230-41ea-9817-109d64a6dde6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1b49ef48-f7a4-418b-b135-0a2e5e523584" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/cf0c6c58-7c31-4e6c-9833-16f2a1615ace" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "810d2c8e-a93b-448e-af23-46585a03cd25" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114413Z:810d2c8e-a93b-448e-af23-46585a03cd25" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 604245734655412BB30A056A5922BF49 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2220e96d-701e-006f-6dc9-536a5a000000\\nTime:2025-11-12T11:44:13.4880506Z\"}}", + "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": [ "453" ], + "x-ms-client-request-id": [ "1eaa84c7-b467-4abd-9714-3f0730e812b0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "05fc82e4-3565-4511-a476-75887205a842", "db8fcce8-957a-4945-a7cd-c4eb809d7be4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "398755e2-52a0-487b-8b25-126f270bcf69" ], + "x-ms-correlation-request-id": [ "398755e2-52a0-487b-8b25-126f270bcf69" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114414Z:398755e2-52a0-487b-8b25-126f270bcf69" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B4E1D326B0FD4B29AEE9CD8450003B87 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:13Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "5d6b7493-107d-4de7-bfc6-948f345429c9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1855a8c8-4c29-4e70-b25d-68bcd3d6899e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9554396-9fc4-4979-8b4f-e80a70e60abf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "196e43c2-add6-45fa-9551-e399e0804723" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114415Z:196e43c2-add6-45fa-9551-e399e0804723" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CF510A6814D04AEB990EF7FBD7954FF4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"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": [ "455" ], + "x-ms-client-request-id": [ "15bc4d02-048d-46e3-abe8-1200ef166e54" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "e2762f66-0361-4c36-a30e-567574f80ecb", "0b6676bc-e27f-450f-924d-ffd8b303da1a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5982b33c-ad0d-4cf9-a4d1-71b89c0ab242" ], + "x-ms-correlation-request-id": [ "5982b33c-ad0d-4cf9-a4d1-71b89c0ab242" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114415Z:5982b33c-ad0d-4cf9-a4d1-71b89c0ab242" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C718BC755640483BADF6D0D81E155EBE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "456" ], + "x-ms-client-request-id": [ "b2ba5bcd-e09e-4b2d-9540-6a4cc0318294" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "96f06ae9-273f-47b2-bc04-9f9d65777e99" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f9d22037-fee8-4a88-8c49-d8c8faafcebb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "566ed701-23ec-4218-8e33-b3fac5c7727b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114416Z:566ed701-23ec-4218-8e33-b3fac5c7727b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9852B8CC7D3047CCBD7654427D9A5453 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"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-112925/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-112925?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-112925?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "457" ], + "x-ms-client-request-id": [ "16dff972-4485-44eb-8c58-cab1e2141ba3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "6adfe0a6-8795-43e6-944a-84f6b78050eb" ], + "x-ms-correlation-request-id": [ "6adfe0a6-8795-43e6-944a-84f6b78050eb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114416Z:6adfe0a6-8795-43e6-944a-84f6b78050eb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 43020B51303344DBBC380AAD940F8E3C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:16 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-112925\u0027 under resource group \u0027Functions-Flex-RG-112925\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.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 8fcaee414e48..825d4ea5fc11 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-yji9lmaxko\",\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": [ "59716f22-78ae-417d-92e8-968e54163961" ], "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/eastasia/69e50c1f-cbdb-43d2-9086-2cc05fa16d3a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6d4c3b4d-cdbd-491e-9107-19729e2282bb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114418Z:6d4c3b4d-cdbd-491e-9107-19729e2282bb" ], "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: 20BCC16B4FD247DEA362D1A5B6DB93C3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:18 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": [ "459" ], + "x-ms-client-request-id": [ "1aab9796-5432-4b0a-bf3f-3431be1cab70" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,41 +63,85 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "393b601b-fdde-451d-bb27-1192655f26e9", "bbd2150b-3a54-42cd-972b-a8a177ec4954" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "8955933b-a3b0-400f-a6bc-fdcc136b6dfc" ], + "x-ms-correlation-request-id": [ "8955933b-a3b0-400f-a6bc-fdcc136b6dfc" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T114419Z:8955933b-a3b0-400f-a6bc-fdcc136b6dfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa0b8a59-4129-4442-944c-e62054fae53e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FF5A85BD25384DA5A6A662B644E054C4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12094" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "460" ], + "x-ms-client-request-id": [ "be7fc235-81ed-466c-8d07-0eca121c5684" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2ec325d5-5b71-4dc5-a792-29b669ed684e" ], "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-correlation-request-id": [ "82b9a44c-d4f4-4ca8-8034-6e47912255ab" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114419Z:82b9a44c-d4f4-4ca8-8034-6e47912255ab" ], "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: 70294FD0E9F44D33892607225F29B994 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-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-Windows-Consumption-o1blrw/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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?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": [ "461" ], + "x-ms-client-request-id": [ "498b423e-3f66-4bf3-be07-4ab5eee7d970" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adc7b04a-1eb9-4ce9-98c7-ba2c9472e8ea" ], + "x-ms-request-id": [ "c5088e54-a630-48cb-b5be-b9f8e321fd9c" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "20a54220-5226-4ce0-a66a-c9780e515c61" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114419Z:20a54220-5226-4ce0-a66a-c9780e515c61" ], "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: B55ECB473BF94657BD869F15C327B23E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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": [ "462" ], + "x-ms-client-request-id": [ "46d78c79-b03d-49ac-b496-5c038046aa24" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3da56c8e-f1ae-4c3a-a179-062df62d8138" ], + "x-ms-request-id": [ "0f570c52-cab1-405c-b693-de376e884c7e" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "79d89f94-f127-4ab9-80ae-dc7c177dc7be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114419Z:79d89f94-f127-4ab9-80ae-dc7c177dc7be" ], "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: C1AABD33A9F9405B8B76819F076CC18C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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/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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "463" ], + "x-ms-client-request-id": [ "443b83a5-f5ba-4969-be24-0e095c062e11" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +243,130 @@ "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": [ "b3ee0b20-654e-4572-ade2-cc2529810c7c" ], "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": [ "5babfcce-b154-4050-ac5f-47eb4c8bc3e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114420Z:5babfcce-b154-4050-ac5f-47eb4c8bc3e8" ], "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: 37B39007B9B948A397FE699DB5425547 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:20Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1814" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "2acae4c2-86ae-4cae-b9e9-a5bf3f37c53a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a719236a-136c-4af5-a0e3-abedb7089916" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "865b860b-c458-4ad5-a6cf-8de4a38fc776" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114420Z:865b860b-c458-4ad5-a6cf-8de4a38fc776" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 49939A41F8AF4FCAA63BF5DB4F83E33D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:20Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "28e79e8e-32e6-4100-88ac-f5f4a4bf1b65" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f3ba467d-fae4-409b-89ef-5db3f4440e42" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "91cb8f59-b806-475a-affb-98da6f50d028" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114421Z:91cb8f59-b806-475a-affb-98da6f50d028" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 55463CA265E742C690365489F512321E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:20Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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": [ "466" ], + "x-ms-client-request-id": [ "232023af-a53f-4f3e-8df7-c0385aa3a1ac" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +378,40 @@ "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": [ "32873136-8960-44b7-ab77-1cd359aa6292" ], "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": [ "017775de-630f-4878-b33c-43c56310ef39" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114421Z:017775de-630f-4878-b33c-43c56310ef39" ], "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: FB644A38AFA9499F9FBFD089BCAFE2F8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1700" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":6,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+7": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "a93b20cb-1cb7-4948-a397-730557239f58" ], + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "1c08e575-3349-4084-8895-bdd149b152f6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,39 +422,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "69dd1eac-3fe8-4f1a-a758-509ab7982f83" ], + "x-ms-original-request-ids": [ "2da39634-8484-4005-9db7-e248cf798abe", "a945deb9-edd5-471d-9b98-fefa3b0c7dc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "4dfd4e0a-d01c-4f5a-bbe2-c6f065c74ada" ], + "x-ms-correlation-request-id": [ "4dfd4e0a-d01c-4f5a-bbe2-c6f065c74ada" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114422Z:4dfd4e0a-d01c-4f5a-bbe2-c6f065c74ada" ], "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-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: 1B448ABCCA5E4C449974EBE50B1547B1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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": [ "468" ], + "x-ms-client-request-id": [ "3e910a6a-b78a-4fb4-8e45-571847cdc4a0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -330,30 +466,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8a246323-fd6d-4145-a14c-19f029851d68" ], + "x-ms-request-id": [ "dcfb0b12-dfdc-425e-9968-1b97613d3286" ], "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/westus/f757fd88-867c-4d89-99e9-0bd74bec726c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "fc0f953b-9dfb-4950-af3d-05aa19870c8a" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114422Z:fc0f953b-9dfb-4950-af3d-05aa19870c8a" ], "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: 85388D3DBD8F40DF8A9C14D05467525D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:22 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\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"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-gpxn1b/providers/Microsoft.Insights/components/Functions-CustomImage-yji9lmaxko?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Insights/components/Functions-CustomImage-yji9lmaxko?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 +509,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": [ "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/a314982a-db3a-4e14-81e9-188043f6788a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "0ba3f94d-3d8d-4b6c-bbe9-badbaa5db974" ], + "x-ms-correlation-request-id": [ "0ba3f94d-3d8d-4b6c-bbe9-badbaa5db974" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114427Z:0ba3f94d-3d8d-4b6c-bbe9-badbaa5db974" ], "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: 160B12AF1BE84BBA8D82D070534F010C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1397" ], + "Content-Length": [ "1664" ], "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\": \"\\\"710656fd-0000-0300-0000-6914731b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-CustomImage-yji9lmaxko\",\r\n \"name\": \"Functions-CustomImage-yji9lmaxko\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-yji9lmaxko\",\r\n \"AppId\": \"9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8b8afcaa-2646-4009-95c4-6e2cf3b772bc\",\r\n \"ConnectionString\": \"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\r\n \"Name\": \"Functions-CustomImage-yji9lmaxko\",\r\n \"CreationDate\": \"2025-11-12T11:44:23.2238886+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-yji9lmaxko_9feb715d-3efc-439e-aaed-40eb4c7fba8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-yji9lmaxko-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-yji9lmaxko\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\"\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": { @@ -409,43 +546,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375CF1A94EB\"" ], + "ETag": [ "\"1DC53C9B4DA2780\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20178b47-e474-4398-ae22-cda95c3fc93f" ], + "x-ms-request-id": [ "8d531b16-3b68-4fb9-bd34-e12dc19fe5bb" ], "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/08c05f15-6d6a-4bf4-9a05-acb77b511fb4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "5cfbb133-0595-4d12-953f-9570887a354f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114452Z:5cfbb133-0595-4d12-953f-9570887a354f" ], "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: 40A82193E099444B978ECBD491ED9275 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:44:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7690" ], + "Content-Length": [ "8504" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:29.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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": [ "471" ], + "x-ms-client-request-id": [ "26059d80-a7b0-4163-ad34-3da05ae46ac3" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -455,42 +592,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC53C9C1C33540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ba6a53b-6166-464e-b674-f89c71e88c7d" ], + "x-ms-request-id": [ "51566338-5162-48aa-a393-e3f8d0e6bae1" ], "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": [ "bf5f305f-d524-4c40-a1b6-61c7570a5e4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114522Z:bf5f305f-d524-4c40-a1b6-61c7570a5e4b" ], "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: E0309005FAB5482F8F2C38C109C481B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7524" ], + "Content-Length": [ "8511" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:51.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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": [ "472" ], + "x-ms-client-request-id": [ "8b381a81-c3b2-43d2-8414-78b021907c26" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -501,42 +638,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC53C9C1C33540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1aafe0cc-97b2-42f1-9cb5-ca1414395fda" ], + "x-ms-request-id": [ "94be4ec0-c170-4891-a5cf-740f7042fb4f" ], "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": [ "116987f8-e581-4772-bc2d-e5fc16f980aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114522Z:116987f8-e581-4772-bc2d-e5fc16f980aa" ], "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: E20069271C954E089083200C737FAC21 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7524" ], + "Content-Length": [ "8511" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:51.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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": [ "473" ], + "x-ms-client-request-id": [ "1d38ee12-c2bc-465c-8a70-c09525a92921" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,40 +685,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": [ "51251b0f-1f63-4252-bd99-c52904e734ad" ], "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/8e16c5a8-603a-4b30-a687-1eeab2d79fbb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "66310ece-eb7a-4a31-a428-72a5f5d0b91e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114522Z:66310ece-eb7a-4a31-a428-72a5f5d0b91e" ], "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: 4A947CF87CF84D31BF7E818C329D6672 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1292" ], + "Content-Length": [ "1246" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-yji9lmaxko\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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": [ "474" ], + "x-ms-client-request-id": [ "95c69b42-36bb-4751-8a2e-384cebeb46b5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,40 +730,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": [ "262ba39a-e5ad-4536-96da-d33a149f834e" ], "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/c1e49519-7896-4fef-be4b-76cb08aa6bc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2c0f7001-737c-4cf0-883e-20e4cc01b7dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114523Z:2c0f7001-737c-4cf0-883e-20e4cc01b7dc" ], "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: 08A3CE79CC714A968A20926741AAE650 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:22 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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-CustomImage-5y3dpkzqcb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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": [ "475" ], + "x-ms-client-request-id": [ "ac0cd492-b277-481f-8327-6ef02b68dedb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -637,42 +775,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC53C9C1C33540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d990fee-c775-48fd-89b2-7a4dd1cab9af" ], + "x-ms-request-id": [ "05c1951b-2a1f-431d-8f2f-866e6c045e5f" ], "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": [ "832ef504-f938-45ce-b1be-c2376b2b26eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114523Z:832ef504-f938-45ce-b1be-c2376b2b26eb" ], "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: D26499DBA9BD41FA84DF14E29A99DE0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7524" ], + "Content-Length": [ "8511" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:51.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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": [ "476" ], + "x-ms-client-request-id": [ "8f8bce81-6fb2-4592-92be-a7b4bf1ed14a" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -684,40 +822,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": [ "3ad4de04-c168-43da-97bc-474d798eed17" ], "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/5df8d41e-fe6e-48d0-9295-13d9b2f4a4f8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9c81bccf-4103-4887-98ce-1a91b4847330" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114523Z:9c81bccf-4103-4887-98ce-1a91b4847330" ], "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: 8D78825B0F834E54920CECB57E367CAC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1292" ], + "Content-Length": [ "1246" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-yji9lmaxko\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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": [ "477" ], + "x-ms-client-request-id": [ "e5ca2c7e-2530-45e6-85f3-9eb9076250d2" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -729,40 +867,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": [ "014d6433-edff-4604-a1d3-c1e87041f292" ], "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/93dff054-5002-4dca-a82f-93c2f9c0430a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "870635fa-8c4d-4496-9cb5-a416f3aa5118" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114524Z:870635fa-8c4d-4496-9cb5-a416f3aa5118" ], "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: D94AB33D1B1145D88A3834DE9AE56723 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:23 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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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": [ "478" ], + "x-ms-client-request-id": [ "69760e6a-dff8-4ac8-842f-12a4079aab55" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -773,19 +912,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC53C9C1C33540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70465545-791b-4708-b46f-a5fb30593e86" ], + "x-ms-request-id": [ "71ea04b2-1e77-4094-a4c8-cb365b080418" ], "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/3bf1c58e-bfae-4bee-a0aa-54f91cf1e68b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "8ad99948-9620-44e5-ba32-d1c9f2e0064f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114531Z:8ad99948-9620-44e5-ba32-d1c9f2e0064f" ], "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: D3E9647F81814400A753786D4CBD9B9C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -799,7 +939,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -814,17 +954,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": [ "877598fc-fdc4-4291-bd32-a7d18541f226" ], "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/111040a0-e691-4111-80c4-fb40f6f9ebb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "48c05b9f-99e7-4514-98b1-434e6efd8a00" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114531Z:48c05b9f-99e7-4514-98b1-434e6efd8a00" ], "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: 6530CDC01075421AA77198A676FBDF69 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -842,12 +983,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": [ "480" ], + "x-ms-client-request-id": [ "61cf6161-1619-4442-90cb-1d5102d6d050" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -859,24 +1000,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": [ "6290b720-1ec2-4afa-bf37-2698e3d1c974" ], "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/d9e9d1af-4620-4dac-8e87-24f55b851594" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bd7e9484-e805-4eeb-adf6-2646223c4e9a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114532Z:bd7e9484-e805-4eeb-adf6-2646223c4e9a" ], "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: 33AC4A141BA24B43854879341CAA0724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36852" ], "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;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 } }, @@ -887,12 +1029,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": [ "481" ], + "x-ms-client-request-id": [ "165a9fc4-0339-4dbf-9db1-5e668d20ffd0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -903,39 +1045,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c6a2e951-1615-4cab-93df-a0955caabc12" ], + "x-ms-original-request-ids": [ "fa55592a-1582-4873-8c8e-37dd08b1c5e3", "dc1668c3-78a8-444f-b929-da47aad9917d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "a3bf68fb-26b8-4851-8216-f90a994b81bb" ], + "x-ms-correlation-request-id": [ "a3bf68fb-26b8-4851-8216-f90a994b81bb" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114532Z:a3bf68fb-26b8-4851-8216-f90a994b81bb" ], "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-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: EAD7C84CAB744542BDDDD82EEAD9C5FD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "482" ], + "x-ms-client-request-id": [ "79e6518b-54b0-4d4e-8cf2-c222496bd555" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -946,64 +1089,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6790867b-ac87-400b-9f07-122cece14b0f" ], + "x-ms-request-id": [ "c83b1e8c-9357-4012-bab3-eb0425eacb53" ], "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/westus/8a774aab-2556-4e9a-9c7d-f10a28e9988e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "df115854-62ac-400b-91ef-a956c0afa633" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114532Z:df115854-62ac-400b-91ef-a956c0afa633" ], "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: 4FFEC9FB5C3A427CAAE63AC8FB2969C5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:32Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:32 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 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": { - "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" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1399" ], - "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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1011,7 +1113,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1026,17 +1128,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": [ "05cf92bb-7c67-4513-beae-f8ebe219b321" ], "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/c2cee2eb-c235-47d8-bbc7-4d4b6d7dbcc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "104ed5f1-ddd7-4e32-8ce3-198990510f6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114533Z:104ed5f1-ddd7-4e32-8ce3-198990510f6f" ], "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: 3E822822CA414A50945DE6A3731D78D0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1054,12 +1157,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": [ "484" ], + "x-ms-client-request-id": [ "0fab4863-9081-409a-942d-901f19b48360" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1071,24 +1174,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": [ "c758e697-9b0e-4d6d-802a-a017a2b35d3f" ], "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/ff8858b1-938c-4230-8655-fbf60b5a2eb1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "358d266a-fd09-43ec-bd46-95989458cc89" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114533Z:358d266a-fd09-43ec-bd46-95989458cc89" ], "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: 953D874B59434A3DB68B5976534DD391 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36852" ], "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;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 } }, @@ -1099,12 +1203,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": [ "485" ], + "x-ms-client-request-id": [ "6e6ed072-d2cb-4a74-bbc1-4a6f6ceb54c8" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1115,39 +1219,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e535b750-8260-4810-b026-48676f7a2a4a" ], + "x-ms-original-request-ids": [ "5eb0a522-1ffd-4014-a840-4698872dec94", "3dc24384-59bb-4e3e-98fb-f36494319d6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ed60d1a2-b946-4a0c-ad37-fef4f4a8816d" ], + "x-ms-correlation-request-id": [ "ed60d1a2-b946-4a0c-ad37-fef4f4a8816d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114533Z:ed60d1a2-b946-4a0c-ad37-fef4f4a8816d" ], "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-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: 09879C1D38144426A554D8DBBB636051 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "486" ], + "x-ms-client-request-id": [ "6ca05968-1af0-4baa-8a76-62d9b71fb28e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1158,64 +1263,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "05c52f3e-f60d-462b-b5e0-026a3e585b31" ], + "x-ms-request-id": [ "57047a1b-6d3d-465e-bcba-5cb765c41e12" ], "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/westus/1c692554-e603-492b-b3ab-ec9d34a3e012" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d1c094d7-e7d6-4838-918c-71f79b239fbb" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114534Z:d1c094d7-e7d6-4838-918c-71f79b239fbb" ], "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: AFCC058B968D4AEF9C2713BC61B538ED Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:33 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 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": { - "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" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1399" ], - "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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1223,7 +1287,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1238,17 +1302,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": [ "799d395f-5d5c-45e9-a54b-8792e93555fb" ], "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/c5c548bb-1bcf-43d2-8ce2-ece02f1aadf5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f205d46e-87f6-4309-bf06-4ee749b3675c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114534Z:f205d46e-87f6-4309-bf06-4ee749b3675c" ], "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: 3FE2A27B65B845BB8AEC171F63B7A004 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1266,12 +1331,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": [ "488" ], + "x-ms-client-request-id": [ "e6775cbf-dba9-4ea6-ac75-983fc214ee76" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1283,24 +1348,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": [ "b8a033c4-7fc5-4bbe-99b3-f53bb291f6ec" ], "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/01dfdaf4-cdea-4d97-b490-d00b8c2f8a98" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fdb79cab-8d95-4640-875d-d77c93b45677" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114534Z:fdb79cab-8d95-4640-875d-d77c93b45677" ], "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: 3CEDC487750243D8BA296AADFD4A7DA7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36852" ], "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;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 } }, @@ -1311,12 +1377,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": [ "489" ], + "x-ms-client-request-id": [ "9e4a8d5a-1e35-4dbf-ad7e-cf8cb245164f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1327,39 +1393,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b044fb86-bfdb-442c-81a3-ea699176c133" ], + "x-ms-original-request-ids": [ "f48a7206-13fe-49a3-878b-3751aa9dbb3e", "d13ba3ef-056e-4701-932c-bf3315565d57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "b1a4259e-16f6-4832-a39c-c5daa8153cd7" ], + "x-ms-correlation-request-id": [ "b1a4259e-16f6-4832-a39c-c5daa8153cd7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114535Z:b1a4259e-16f6-4832-a39c-c5daa8153cd7" ], "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-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: A6828BEEE5484BF8896DE15FE253BC36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "490" ], + "x-ms-client-request-id": [ "00019d52-1f94-4ae7-9a99-bbd5135e9713" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1370,64 +1437,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ab2610a8-f6d0-4947-857e-2ec193ae1ec9" ], + "x-ms-request-id": [ "3d7fc89e-3fef-4cfe-a160-388292db8325" ], "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/f03681b0-9f59-4f5f-b6c9-1c2ed17306c8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7b8e0d13-4e75-4698-9bce-acb4b5e564d7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114535Z:7b8e0d13-4e75-4698-9bce-acb4b5e564d7" ], "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: E89E45AA66C74B2FAEFF3C3BF026C39D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45: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 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": { - "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" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1399" ], - "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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1435,7 +1461,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1450,17 +1476,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": [ "7b47b204-c752-4beb-a624-ff6ca262abae" ], "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/375ff426-dcd2-4eb8-ba4a-7cc1d1994a49" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d69138c3-1636-4419-8ec1-0fa268593f4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114535Z:d69138c3-1636-4419-8ec1-0fa268593f4f" ], "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: 084BA13E25A24A5C8920E880C0BDBB54 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1478,12 +1505,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": [ "492" ], + "x-ms-client-request-id": [ "e1900374-2f15-4488-bba1-9e632b9fcd3d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1495,24 +1522,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": [ "2fb55452-cc9e-445e-a7e1-3332f303f0c0" ], "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/1d64429e-50d1-4ab7-8982-2b084c210769" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "961c7fe5-6dbf-437c-b37d-52c562a74771" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114535Z:961c7fe5-6dbf-437c-b37d-52c562a74771" ], "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: 5D042FB94CAB4A34BC0610931EDA802C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36852" ], "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;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 } }, @@ -1523,12 +1551,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": [ "493" ], + "x-ms-client-request-id": [ "7ecef0cb-a9cc-4146-bab8-e34a31d136b7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1539,39 +1567,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eed441fa-6ce0-4b69-946f-7f52ebe49f12" ], + "x-ms-original-request-ids": [ "9186a594-608a-402f-88db-53e22bf139f0", "a9c1b96c-c3b5-45be-a9dc-075c46aef1e2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "d215b1ee-f6e6-4f35-8417-36baf2d7d9f2" ], + "x-ms-correlation-request-id": [ "d215b1ee-f6e6-4f35-8417-36baf2d7d9f2" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114536Z:d215b1ee-f6e6-4f35-8417-36baf2d7d9f2" ], "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-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: F98DF0DAF9BC41E78C2E1836492DDDB5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "494" ], + "x-ms-client-request-id": [ "48a50de0-5c26-4bf0-8598-2566afbb3fec" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1582,64 +1611,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "59dbd690-de61-4cec-83b9-bf570e1937fb" ], + "x-ms-request-id": [ "193d94aa-afe9-4a15-b0f6-dd3edd51cd93" ], "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/westus/7d5be738-06c1-4c4f-bb91-f4b2b61888ef" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "046e76e8-ff61-4b46-bcc9-1b8a47fd723a" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114536Z:046e76e8-ff61-4b46-bcc9-1b8a47fd723a" ], "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: 4507DF56E50644C3BA756E44C30C28E5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45: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\"}]}", - "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": { - "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" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1399" ], - "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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1647,7 +1635,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1662,17 +1650,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": [ "9a216b54-da3d-493a-a586-244235b86a03" ], "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/e7ddbb68-0da2-4d57-b08b-29f02ae1331a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "805a207e-56c3-4fff-ac27-4f57b9c07f28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114536Z:805a207e-56c3-4fff-ac27-4f57b9c07f28" ], "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: 4B0D28E5995F4A6583D4ECDCACC2BC88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1690,12 +1679,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": [ "496" ], + "x-ms-client-request-id": [ "f62fef17-564e-4e84-ae69-92d3d6c1525c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1707,24 +1696,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": [ "5e92c749-1da0-43ff-9c83-c4c08a7673da" ], "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/2784ab2d-8e4c-4c31-b6b9-1b476227e3fb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dc84a940-ed29-4424-a6d4-4f32b7c315be" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114536Z:dc84a940-ed29-4424-a6d4-4f32b7c315be" ], "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: 30BD094CB2A2466D9195758784706B4A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36852" ], "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;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 } }, @@ -1735,12 +1725,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": [ "497" ], + "x-ms-client-request-id": [ "58efbb16-7caa-42cb-bf4a-8a4f93753dbd" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1751,39 +1741,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cae478af-acf7-4f99-b2e8-0fd13fe481c3" ], + "x-ms-original-request-ids": [ "e16d3d95-765c-4218-8ab6-e8d3b2ff98b5", "ff6d126f-bc05-4d62-b0b2-6ec414db8503" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "3d018551-62eb-4446-8b91-4948b66932dc" ], + "x-ms-correlation-request-id": [ "3d018551-62eb-4446-8b91-4948b66932dc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114537Z:3d018551-62eb-4446-8b91-4948b66932dc" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 87475168031D414E88F74C9A8FC2ABCE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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": { + "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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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" ], + "x-ms-unique-id": [ "498" ], + "x-ms-client-request-id": [ "1ee9a1fc-c261-40cf-9389-42416cd10b22" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1794,37 +1785,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bc425cf9-c0e4-4d05-a9cd-bab4dec8531a" ], + "x-ms-request-id": [ "159b09e9-5c94-4ede-a92d-b4d3d9273e30" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6f15222e-60a9-4c4e-a141-d62ab65d058e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1261d88f-26ac-4563-acb7-b9c427456112" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114537Z:1261d88f-26ac-4563-acb7-b9c427456112" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 2B1F46C8548548F0BB2A2525DD7D90FA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45: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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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": { + "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": "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}", + "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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] + "Content-Length": [ "69" ] } }, "Response": { @@ -1832,34 +1823,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-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ "8b8c84ba-9978-4b5f-a5b4-e21b03b185aa" ], + "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-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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/88bce49d-7e17-44d8-ab10-d31b3069824a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "a7b1f989-76eb-4ffb-8a3e-445dc03009cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114537Z:a7b1f989-76eb-4ffb-8a3e-445dc03009cd" ], + "X-Content-Type-Options": [ "nosniff" ], "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: BE780E8753B84484A856518DE00B6B3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:37Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "47" ], + "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-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}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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": { + "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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1874,17 +1865,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "452b359a-4292-4646-a41e-8b933988219c" ], + "x-ms-request-id": [ "57a51805-ec7c-40bc-b072-4a1b46ea655f" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a50693d2-98fc-45ba-9b55-57a9a4379ef9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "77f52d70-7583-4ddd-940f-ab17b405e005" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114538Z:77f52d70-7583-4ddd-940f-ab17b405e005" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 443CB06930374E1D9441E678BA3C4BC2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1895,22 +1887,17 @@ "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": { + "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": "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, + "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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "69" ] } }, "Response": { @@ -1919,245 +1906,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de44a805-7f9a-4f09-83e3-8ae39339c824" ], + "x-ms-request-id": [ "eeea1984-f042-4c66-a6f7-622fb351a76a" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f4b9fb31-99c4-4444-a6d4-288c09c2c180" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "58c10271-e11e-4b4d-8ee0-d9db87cdc784" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114538Z:58c10271-e11e-4b4d-8ee0-d9db87cdc784" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 0826CFE03FBA4AE4B255684FA2E5E08A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "47" ], "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": "{\"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.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\"}}]}", - "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": { - "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": [ "182" ], - "x-ms-client-request-id": [ "360ff814-5352-4317-8d94-32b9668072b8" ], - "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": [ "b85f6a54-ad3d-4b77-bef8-46faedf65346" ], - "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-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" ] - }, - "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]+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": { - "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", - "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": [ "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-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" ] - }, - "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-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}", - "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": { - "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": [ "a91b61a2-fada-41a1-8ac1-dcadc83f90f8" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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": { - "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": [ "e23c32cd-7c70-45d4-8b25-f53540017191" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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]+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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-10bxo65l7g\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] + "Content-Length": [ "64" ] } }, "Response": { @@ -2166,17 +1947,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": [ "0d570469-7099-4ee0-bbc3-36a90f33f421" ], "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/a711bd26-0e9f-43c2-8540-86d3315337b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8fff4af0-2dfc-4973-bde1-da8415bd223a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114539Z:8fff4af0-2dfc-4973-bde1-da8415bd223a" ], "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: 560EC0A6009949C3A81843DEEE778FD7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2187,17 +1969,22 @@ "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]+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-TestAppName-o7atemdn6x\",\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": [ "503" ], + "x-ms-client-request-id": [ "60aac9e1-4484-4340-ae17-eec2578bfc71" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] } }, "Response": { @@ -2205,39 +1992,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "319e832e-da8d-410c-8173-e5769c1cfa2d", "ab68ea1d-1878-4c79-a19c-c47ba38a1895" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "84c82fb4-efc0-4980-936f-3e2668d1e0dc" ], + "x-ms-correlation-request-id": [ "84c82fb4-efc0-4980-936f-3e2668d1e0dc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114539Z:84c82fb4-efc0-4980-936f-3e2668d1e0dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5c0b8cd-590e-4f83-a13a-6966cdcdd313" ], - "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-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: 1C05482FE1C24774A0EE7432F39A9BF4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "12094" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "79333179-a0ce-4b7a-b88f-e444420ad553" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] } }, "Response": { @@ -2246,38 +2037,43 @@ "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": [ "68f47dd1-722b-4b64-895f-245031f657d6" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bb7d39bc-5529-4cb0-8918-bc23242db084" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114539Z:bb7d39bc-5529-4cb0-8918-bc23242db084" ], "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: C1DE0F9AC95A4F4BB465C13B4C913F10 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$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/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Python-iyf85pjd9l\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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": [ "c2313275-83a3-42ec-8568-a7e8e6711274" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] } }, "Response": { @@ -2286,40 +2082,40 @@ "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": [ "2b868052-2204-499a-b105-a1f01d3f55ae" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a76db52a-aa86-45c4-a67e-876d99fa0bec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:a76db52a-aa86-45c4-a67e-876d99fa0bec" ], "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: 243BF757A4F84E98A65D265899107ECE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:39Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+5": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "31f82413-26a6-47fb-9954-9b9b5d06cb81" ], + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "45aff07a-93af-441a-b7af-6881007e956f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2331,40 +2127,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08b7e806-bdd0-43bc-ab1a-d14514e6ac98" ], + "x-ms-request-id": [ "627818ca-f4d2-4b7d-a1cd-789139265142" ], "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-correlation-request-id": [ "0eba1c47-1da0-4df4-9700-01481f590a8c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:0eba1c47-1da0-4df4-9700-01481f590a8c" ], "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: D820B1A26988458E9DB95ED9A3B5F1AE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "507" ], + "x-ms-client-request-id": [ "347e3740-c9b1-4502-a7e2-ac157e8198d5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2376,40 +2172,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fc089eb-b327-42db-9b20-5b1ac8375691" ], + "x-ms-request-id": [ "02fe1648-c8fd-4d18-bd5f-0354f5e68f65" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a00bcdc1-d1c7-48ea-a5fc-8a954e2e97f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:a00bcdc1-d1c7-48ea-a5fc-8a954e2e97f0" ], "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: DEE185F6FEDC4BDFA9F0C8A2F398BE81 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "508" ], + "x-ms-client-request-id": [ "ecef6490-65e8-4dd9-962a-3bd169413e14" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2421,40 +2217,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d08a83a-abcd-4957-9abc-ebdfcb11ce1d" ], + "x-ms-request-id": [ "63f5d1da-0fc8-4918-90c3-f0d36843318a" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "57b28d72-ae8c-4941-b998-95890b079d16" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:57b28d72-ae8c-4941-b998-95890b079d16" ], "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: 5E626432759A454CB7602DD0F9D922EE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1826" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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": [ "509" ], + "x-ms-client-request-id": [ "5fa01b44-7d21-46fa-aaf8-ada08f04ace5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2466,40 +2262,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": [ "a2bb801b-72b6-436c-b6f7-391e656a3358" ], "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": [ "af239804-3416-4529-9bd3-71f36f944fe4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114541Z:af239804-3416-4529-9bd3-71f36f944fe4" ], "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: 412247FEE456429CB5D5AE594F8B824D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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": [ "510" ], + "x-ms-client-request-id": [ "132e0f1c-68cf-46d4-a37c-95e00d2e174e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2511,40 +2307,40 @@ "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": [ "2b493a6c-8def-41e4-95b6-83bc7d68f6eb" ], "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": [ "38c292df-ef73-4157-9a26-f2aa07ac3b29" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114541Z:38c292df-ef73-4157-9a26-f2aa07ac3b29" ], "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: E4F918BF58C049A6A87ACDB7DFE78187 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1700" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":7,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+7": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "195" ], - "x-ms-client-request-id": [ "57663308-7057-4ab8-b1fa-5f4e5656fd8e" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "ac9be2d0-6d7b-470b-868a-1663f9ba4765" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2555,39 +2351,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "97614865-ee82-4163-88ce-27bcfc842519" ], + "x-ms-original-request-ids": [ "cea7b3ac-5278-440e-906c-ac9c0c6168b1", "3a41517e-7645-449c-9333-03dd317a6de0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "2a17aacb-50d4-47f7-8e88-61e0dd5c077c" ], + "x-ms-correlation-request-id": [ "2a17aacb-50d4-47f7-8e88-61e0dd5c077c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114542Z:2a17aacb-50d4-47f7-8e88-61e0dd5c077c" ], "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-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: F56806B75B5D4F29BC120D5EA9E0DC1F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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": [ "512" ], + "x-ms-client-request-id": [ "b80856ee-76f4-4ea6-95ec-10c11d0e44ea" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2598,30 +2395,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ed904198-caf2-455d-83a6-fe32deade7d9" ], + "x-ms-request-id": [ "4fcb0115-ceeb-41fa-916f-1ce2669379e1" ], "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/westus/a829c8df-cc2e-4b41-924b-5fba7f65f9e8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "171dd594-2bdc-4312-91de-960989fbc9a9" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T114542Z:171dd594-2bdc-4312-91de-960989fbc9a9" ], "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: B9E0A175F8F94ED9B19ED172C4DDCB5C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:42 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\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"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-gpxn1b/providers/Microsoft.Insights/components/Functions-Python-10bxo65l7g?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Insights/components/Functions-Python-10bxo65l7g?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,35 +2438,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": [ "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/c258452a-3643-4626-b9fa-6163d39b611b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "a68f384f-5dcb-4cb0-b653-61f8d0626018" ], + "x-ms-correlation-request-id": [ "a68f384f-5dcb-4cb0-b653-61f8d0626018" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114547Z:a68f384f-5dcb-4cb0-b653-61f8d0626018" ], "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: 068678E04D3D41A287B2CE15611351AB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:45:47 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\": \"\\\"72068313-0000-0300-0000-6914736b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-Python-10bxo65l7g\",\r\n \"name\": \"Functions-Python-10bxo65l7g\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-10bxo65l7g\",\r\n \"AppId\": \"7967637b-0d12-45cd-8669-9c7aa63ed33a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5e580f9c-4125-4781-8542-efa816dacafb\",\r\n \"ConnectionString\": \"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\",\r\n \"Name\": \"Functions-Python-10bxo65l7g\",\r\n \"CreationDate\": \"2025-11-12T11:45:43.3663723+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-10bxo65l7g_7967637b-0d12-45cd-8669-9c7aa63ed33a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-10bxo65l7g-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-10bxo65l7g\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"\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": { @@ -2677,43 +2475,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3760A1D4AA0\"" ], + "ETag": [ "\"1DC53C9E41FE660\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c78c06a-f27e-4ac4-add5-75e2177b4e71" ], + "x-ms-request-id": [ "ef3bf8da-6cbb-421e-bb29-3ae38174abb3" ], "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/e04bf1d0-c0d6-4b3a-a334-600e02efa97e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "ebe49f49-7e43-45bf-af91-42ae6878cc05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114610Z:ebe49f49-7e43-45bf-af91-42ae6878cc05" ], "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: 92D0660EFFE9473BA1E2C11CBBAC502C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7573" ], + "Content-Length": [ "8387" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:45:48.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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": [ "515" ], + "x-ms-client-request-id": [ "f8b49076-388d-4493-97eb-8da2b92c0afe" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -2723,42 +2521,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC53C9F05B8315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2849fb2e-a34c-4f69-8d5f-0ca02528cad4" ], + "x-ms-request-id": [ "51a5565a-10e3-4ffb-8797-d97ed6855dc8" ], "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": [ "ecd00aa0-9ac7-465b-9925-ff0ce35d39bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114640Z:ecd00aa0-9ac7-465b-9925-ff0ce35d39bd" ], "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: 19D7D51CCC8B4182945243EE339A7FE5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7380" ], + "Content-Length": [ "8372" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:46:10.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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": [ "516" ], + "x-ms-client-request-id": [ "05126723-3902-4f14-a2b6-37484dd82b9e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2769,42 +2567,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC53C9F05B8315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40faafa6-ee0c-48cc-9710-3dcc22842e04" ], + "x-ms-request-id": [ "b9afd90c-4b18-4fe8-b28d-4adaa6a28169" ], "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": [ "a5a61ba3-9492-49fb-9f3a-daa731d4f49e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114641Z:a5a61ba3-9492-49fb-9f3a-daa731d4f49e" ], "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: 303FB8CFD05E46979C9AEE83636E37F9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:40Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7380" ], + "Content-Length": [ "8372" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:46:10.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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": [ "517" ], + "x-ms-client-request-id": [ "e076c25f-df80-48a2-884b-b7ac2acddad1" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2816,40 +2614,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": [ "73d7ecaf-1c12-4bf4-920b-edfb6ad539b8" ], "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/e122781a-f50a-47b5-a7a4-06f2efd58f60" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "dfb833c1-2171-421f-af0b-1d2e0ab96fb2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114641Z:dfb833c1-2171-421f-af0b-1d2e0ab96fb2" ], "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: 0221D07EA82147C082AFF494AEF683D5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:41 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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-10bxo65l7g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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": [ "518" ], + "x-ms-client-request-id": [ "942d8386-fdb7-4f93-b3cf-aea53500fc22" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2861,40 +2659,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": [ "dcd707ff-70a0-4ff8-9734-825f52e11c48" ], "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/e8245422-4838-4dc4-9969-c2a7e7e3d39b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "86ff6f41-c268-4d37-b8dd-672d49084d7f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:86ff6f41-c268-4d37-b8dd-672d49084d7f" ], "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: 9F64B55F720B41F7BD0840D6C7ABE588 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:41Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:41 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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": [ "519" ], + "x-ms-client-request-id": [ "bd941d8a-4a64-491b-8e99-6aa5b47d1e9d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2906,40 +2705,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": [ "23b2f075-37aa-4ce6-8b62-16494b072302" ], "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/48dd4808-2023-4ed9-8d54-a0a308a35e4d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2073bab8-2236-42e3-895c-385eb540346f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:2073bab8-2236-42e3-895c-385eb540346f" ], "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: 276976309DD64E70A7DB315727307ADE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:41 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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-10bxo65l7g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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": [ "520" ], + "x-ms-client-request-id": [ "c4fb77f6-b109-4aaf-9113-c6ce023ca21c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2950,42 +2749,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC53C9F05B8315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "793d60cd-dd75-4b05-ba0b-628cb9242626" ], + "x-ms-request-id": [ "20ba4009-d6b0-4d94-9555-ed424161d6f1" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1da1206c-8965-477a-b447-c76de3d21895" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:1da1206c-8965-477a-b447-c76de3d21895" ], "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: 66D27AB7B7E548E0A19C972D5F454C6F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7380" ], + "Content-Length": [ "8372" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:46:10.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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": [ "521" ], + "x-ms-client-request-id": [ "80ee17eb-bcd1-41a2-897e-af0c9057eccd" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2997,40 +2796,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": [ "273b0a67-6e38-4f2e-9e1f-b34e6fa916b8" ], "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/a2d3ac1a-9196-43eb-b91e-756bcb720332" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9cddbaa2-15d8-455c-a9ea-7140eb3f124f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:9cddbaa2-15d8-455c-a9ea-7140eb3f124f" ], "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: 4ACEC1B1279545BA83A9EEB939110F3C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:42 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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-10bxo65l7g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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": [ "522" ], + "x-ms-client-request-id": [ "433150fc-b4b0-4666-943b-a48ee36ab83d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3042,40 +2841,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": [ "88aac420-cb31-4163-9010-940f0a327576" ], "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/21c60e41-d253-4d89-8d28-ec79b8a3c43d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0a6d74d9-32bd-40bd-ab60-9d4600a4b8fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114643Z:0a6d74d9-32bd-40bd-ab60-9d4600a4b8fa" ], "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: 73184EBE67F046B4A1389F8DB97EF208 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:42 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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": [ "523" ], + "x-ms-client-request-id": [ "55f84b8d-476d-4d15-be28-fbe4b303c210" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3086,19 +2886,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC53C9F05B8315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b38c7bcd-78fe-4e34-8d93-15e6babacc33" ], + "x-ms-request-id": [ "bdbd4db6-418a-4a31-9239-bd8b4c23a36f" ], "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/72b6ca9f-33b0-4465-ba0e-29f99d8aa3c3" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "49d0a846-50ad-4018-b01e-233ad8dc9595" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114653Z:49d0a846-50ad-4018-b01e-233ad8dc9595" ], "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: 0D2A228B7F5548F8B1C5ACCDCE877644 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:43Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3112,13 +2913,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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -3127,17 +2928,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": [ "12ebab17-44d6-49a3-8406-e9ababef127f" ], "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/84d2424c-cb9d-41e5-88f6-93fd47204f77" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "649a5b6d-3cdd-4d3d-a31f-4eca41bd90d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114654Z:649a5b6d-3cdd-4d3d-a31f-4eca41bd90d1" ], "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: EC9711FAF1784FACA204424A1BDD60F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3155,12 +2957,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": [ "525" ], + "x-ms-client-request-id": [ "0af71197-548f-44a0-8a54-719c26f41bcb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3172,24 +2974,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": [ "7ef18e31-aee0-4c25-b629-47fc660b75aa" ], "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/86309022-2c89-4186-ac32-1453648db8f3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68b4a7ef-61e1-4715-8bba-d20945fda52d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114654Z:68b4a7ef-61e1-4715-8bba-d20945fda52d" ], "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: 5C396E409B0B4748AAB3B38C0C9D864A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36852" ], "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;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 } }, @@ -3200,12 +3003,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": [ "526" ], + "x-ms-client-request-id": [ "a1a735a4-8fd8-4ec8-9b24-3ce6b8995f04" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3216,39 +3019,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3420e8e9-81eb-403e-9fa1-ba8a5670e1d3" ], + "x-ms-original-request-ids": [ "a12b1cdb-cbb6-48e3-8660-11c4ec47ed69", "68afbe5d-bd92-4a19-a835-fc5e669d3d51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c839fee7-4460-4aab-b0a5-ccde9efa5c87" ], + "x-ms-correlation-request-id": [ "c839fee7-4460-4aab-b0a5-ccde9efa5c87" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114655Z:c839fee7-4460-4aab-b0a5-ccde9efa5c87" ], "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-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: FAE6F0F81C4B4C75B6A3882D95FAA1AB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:54Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "527" ], + "x-ms-client-request-id": [ "348956e9-ed48-4189-97b6-bec6e7b733ad" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3259,30 +3063,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0a3b397f-10bf-469c-81de-389fce3a5d20" ], + "x-ms-request-id": [ "33e84ac8-b8bd-4118-a5fa-e143ba8e6fe2" ], "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/westcentralus/22b02ed6-c7f8-479e-bada-225d72ddb2dc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ab7635e5-3353-46c1-b68d-634748f4de25" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T114655Z:ab7635e5-3353-46c1-b68d-634748f4de25" ], "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: 08AFB96A751F482B95D1BD9148B6237B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:46:55 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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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-o1blrw/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?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-o1blrw/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?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 +3106,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/67443c39-8137-4c27-953b-ce986f61b5cf" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "446cc0a1-7a05-4811-934f-81216bd8ab32" ], + "x-ms-correlation-request-id": [ "446cc0a1-7a05-4811-934f-81216bd8ab32" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114702Z:446cc0a1-7a05-4811-934f-81216bd8ab32" ], "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: 6700032E7935476580CB32D2CA357AF0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:47:02 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\": \"\\\"72069527-0000-0300-0000-691473b60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\r\n \"name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"AppId\": \"dce78295-bb82-4bc2-907e-e7da2d157471\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be\",\r\n \"ConnectionString\": \"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\r\n \"Name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"CreationDate\": \"2025-11-12T11:46:55.9737326+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-u074f23mpl_dce78295-bb82-4bc2-907e-e7da2d157471_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\"\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": [ "1845" ] } }, "Response": { @@ -3338,43 +3143,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3763CA6B5CB\"" ], + "ETag": [ "\"1DC53CA10CF6A00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f177b59c-24c5-4dc4-95fc-fbf2fecd1c31" ], + "x-ms-request-id": [ "3af1640b-997d-4d34-b54f-399e08d8af8d" ], "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/9beac49e-23dc-400a-95cb-b4363a10f236" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a0f3f419-1771-47fb-ba6c-b1de89b66b60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114744Z:a0f3f419-1771-47fb-ba6c-b1de89b66b60" ], "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: 82EDCB41CD6E495AA613B8E1C519711B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:47:02Z" ], + "Date": [ "Wed, 12 Nov 2025 11:47:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7595" ], + "Content-Length": [ "8952" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:03.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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": [ "530" ], + "x-ms-client-request-id": [ "1a51b135-f133-40a9-991c-1e573d1aed17" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -3384,42 +3189,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC53CA28569115\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95261f8d-6f6e-4bf8-84c9-6a955b7e2f7b" ], + "x-ms-request-id": [ "44332e64-5573-48b4-83a1-61fb2d3cb348" ], "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": [ "c1c5d3f9-f944-46ce-92c7-ccbc4217b599" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114814Z:c1c5d3f9-f944-46ce-92c7-ccbc4217b599" ], "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: 429A4772286F4D619DF76B5B6984A24A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7399" ], + "Content-Length": [ "8929" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:43.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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": [ "531" ], + "x-ms-client-request-id": [ "13a05b02-7e2f-4c77-a0d8-07e373a2d191" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3430,42 +3235,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC53CA28569115\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0122da65-7f75-4405-9a99-c9e67da81879" ], + "x-ms-request-id": [ "3bea08e2-bcfb-4386-b063-6602cd1c227d" ], "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": [ "d76c98a9-7215-4388-a726-f64e243a9868" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114814Z:d76c98a9-7215-4388-a726-f64e243a9868" ], "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: 2D4EBBD83AC84131B1C4C54A503CA775 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:14Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7399" ], + "Content-Length": [ "8929" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:43.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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": [ "532" ], + "x-ms-client-request-id": [ "a31db156-148b-48ec-877d-98d37c56cc5a" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3477,40 +3282,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": [ "aaa8637a-28c9-4099-a74f-74d30b32e1a6" ], "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/3e64806a-222d-4536-9dc5-e58bd1f3f423" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a7e04f71-5227-483c-9478-390a8901667d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114815Z:a7e04f71-5227-483c-9478-390a8901667d" ], "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: E8DDF032251C4909A58EFB29F9612E9E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1301" ], + "Content-Length": [ "1300" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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": [ "533" ], + "x-ms-client-request-id": [ "10e5a811-bf17-4adc-98df-557ccf55d24a" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3522,40 +3327,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": [ "c7d070c4-c77e-4a6c-93fb-8bbcdc4b2943" ], "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/203121e5-84ad-4a34-bbe7-3b576c12d40e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "12d567f4-0884-4d9e-bd37-c2e36d6afeef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114815Z:12d567f4-0884-4d9e-bd37-c2e36d6afeef" ], "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: 92D0072D5BA0457C8F30DC3F2702A790 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:15 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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"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-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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": [ "534" ], + "x-ms-client-request-id": [ "bc7d938a-5350-48a2-ba61-0e7d3108c1f2" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3567,40 +3373,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": [ "1ad7efdc-96f3-4baf-a7cc-ace64440ab59" ], "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/b03288ba-5020-4ea4-bd23-6b365da6d60d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8cf802b5-e218-4118-b937-3a69dece7248" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114815Z:8cf802b5-e218-4118-b937-3a69dece7248" ], "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: E74ED2A513204DBEAFFE667695FCE00F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1301" ], + "Content-Length": [ "1300" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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": [ "535" ], + "x-ms-client-request-id": [ "9e3b9fc8-8962-4080-981a-619b65bab378" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3611,42 +3417,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC53CA28569115\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35757407-d458-4e7b-826a-e3775c72678d" ], + "x-ms-request-id": [ "03286d57-0ffd-4323-99ae-ed44bc6e197a" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b49d90bd-7783-414c-b2fe-3960500a95b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114816Z:b49d90bd-7783-414c-b2fe-3960500a95b6" ], "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: A75E3184A4E546958D06A743E84559C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7399" ], + "Content-Length": [ "8929" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:43.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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": [ "536" ], + "x-ms-client-request-id": [ "9f725f6a-ee51-4db1-9ef0-a37e5573543d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3658,40 +3464,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": [ "04526631-7f57-4f76-9d55-5b5b5cba3d13" ], "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/ff60dc83-cd54-4865-9345-110d6e7a996d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "809ab253-ebaa-41a4-9800-351a1c26df7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114816Z:809ab253-ebaa-41a4-9800-351a1c26df7c" ], "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: D987C396009B48F4992F166E91F1439C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1301" ], + "Content-Length": [ "1300" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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": [ "537" ], + "x-ms-client-request-id": [ "c35555ff-dfc1-46c7-b3fe-e54a5b84408c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3703,40 +3509,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": [ "41ffd6bc-785e-4aa9-aaa7-85609b7c2366" ], "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/8442bbb3-d373-477d-adca-0b8d848a73ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6e4a7c0c-bc9b-437f-b75c-0155e77946ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114816Z:6e4a7c0c-bc9b-437f-b75c-0155e77946ea" ], "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: 11145B952C2742CCA59CCEA80A072387 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:16 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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"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-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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": [ "538" ], + "x-ms-client-request-id": [ "833a5ba8-354d-4e73-ab3b-bbb604c094c0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3747,19 +3554,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC53CA28569115\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11c4ec43-093d-4969-8e10-99f75c489d0f" ], + "x-ms-request-id": [ "5af51717-9bb2-4c67-9305-2e8b234591e3" ], "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/f69b55a8-4051-48c3-aa4f-d28b42a7a7eb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "be1d520a-03de-4a7d-bed1-92047a41239b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114826Z:be1d520a-03de-4a7d-bed1-92047a41239b" ], "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: B4BEAAFDD75342C98CF423D8C2FE2A91 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3773,13 +3581,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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -3788,17 +3596,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": [ "7559ac18-2c58-4f75-b4bc-4140c104631a" ], "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/5a707f0e-9548-4035-995e-88db826b6c18" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9e3959e4-29cf-4364-a3ae-28f7c0517ad0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114827Z:9e3959e4-29cf-4364-a3ae-28f7c0517ad0" ], "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: 59D5E07F487D431687FBDE847AC86278 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3816,12 +3625,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": [ "540" ], + "x-ms-client-request-id": [ "83a8230c-9c83-48a0-b15e-d073b2610c0e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3832,41 +3641,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b0158564-7d33-41df-8e8c-5c49e29b17fe", "16f1978f-763a-4890-8fa1-d6288f1b2fd5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c6211331-642f-4ee2-ad51-b3fc2a930a22" ], + "x-ms-correlation-request-id": [ "c6211331-642f-4ee2-ad51-b3fc2a930a22" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114827Z:c6211331-642f-4ee2-ad51-b3fc2a930a22" ], "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-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: 9CD83F6D879742F1B207B8FCDD751034 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "12094" ], + "Content-Type": [ "application/json; charset=utf-8" ], "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": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-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-cjes6i/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-cjes6i/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": [ "541" ], + "x-ms-client-request-id": [ "63a2e0d9-ca94-4dff-9093-b2d995457e39" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3878,40 +3686,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "189c27ea-dcbb-4f2b-9db7-cbb54dc3b1a5" ], + "x-ms-request-id": [ "961da54c-d576-43bf-96c6-9b43c97c09cb" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "31130ac3-0936-4055-9838-1cb238cba537" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114827Z:31130ac3-0936-4055-9838-1cb238cba537" ], "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: 0F01F1DCA2DB4F528C3D8DA7992339B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-o1blrw/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-o1blrw/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": [ "542" ], + "x-ms-client-request-id": [ "feca2b5e-37aa-4cc6-b7ac-91d68e413a62" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3923,40 +3731,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": [ "9cf4e4dc-320e-4683-8f8f-633b7b8a5c22" ], "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": [ "08e8fcc0-17c6-4323-a4bf-d69680153a32" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:08e8fcc0-17c6-4323-a4bf-d69680153a32" ], "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: 2FF5E3B5EB4246199CCDE6C8F229D7C5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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": [ "543" ], + "x-ms-client-request-id": [ "deeae7ad-d41b-40b3-82c0-d20d4fcb0181" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3968,40 +3776,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": [ "3bb27527-b038-4a00-a403-492150e27875" ], "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": [ "aefdc4ee-2104-44e3-8e09-2b8ceae142d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:aefdc4ee-2104-44e3-8e09-2b8ceae142d9" ], "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: DFE1E6B440F94BBC8B62C01AD9B81104 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "544" ], + "x-ms-client-request-id": [ "46d3b9dc-8a16-4f0f-92db-9e09c33a9f5e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4013,40 +3821,40 @@ "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": [ "5ccb36a6-e0a0-4285-af5a-b4b78d0f9fde" ], "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": [ "c10c26a5-97f7-41df-a36f-81ea35847f44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:c10c26a5-97f7-41df-a36f-81ea35847f44" ], "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: 72C667F667734ECAB729E61C7A1BB049 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "229" ], - "x-ms-client-request-id": [ "8aa2199c-0cc8-44f2-9174-400332a80436" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "8f2ff706-98e4-4994-94b5-844cd9625277" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4057,39 +3865,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ac943580-0df7-448a-a08c-27c6e146a7d6" ], "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-request-id": [ "0869f77f-8636-4496-a616-9c812ae5c6ea" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7ca2f761-635b-4f7e-9939-39f6aef57543" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:7ca2f761-635b-4f7e-9939-39f6aef57543" ], "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: 8CCE6E5EAB72466299A2D4472EF4B404 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "1826" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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 +$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 +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "6df0fe8f-070d-4cea-b86e-e96436ae1972" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "90dd9442-8521-4a14-9744-1501b606d4cf" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4100,37 +3910,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2778eaba-0b24-445d-8ab8-af3d29625f6e" ], "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-request-id": [ "7ff7eaa2-8da1-4a0c-a57a-050964038b8f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f3af7efc-89bb-4f19-b5ab-e61d0a1c9bfc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114829Z:f3af7efc-89bb-4f19-b5ab-e61d0a1c9bfc" ], "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: 01C4765C983C4099A9D565AF6E05581C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$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 +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "144bdbf2-a15f-4d20-a7de-6dcf4555a958" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -4138,3575 +3955,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-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ "b4fb4eca-3387-4f54-9667-1934ce673b37" ], + "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-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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "02a08c45-c9a4-4851-a237-3b551fb560b1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114830Z:02a08c45-c9a4-4851-a237-3b551fb560b1" ], + "X-Content-Type-Options": [ "nosniff" ], "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: 7C4F58E871674D83BE353BBC5D610D36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:30Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1700" ], + "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\": \"\\\"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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$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 +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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}", + "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": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "2067" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3766F5DE7B5\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfbc92c6-a887-47dc-b3d4-64af0ac2c0fd" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7854" ], - "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\"}}}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "c00060a2-8df0-41be-8002-0973b8d6d4c4" ], - "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": [ "\"1DAC3767CF56AEB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a6f474a-18fc-4174-be0b-024bb3b6ed27" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7650" ], - "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\"}}}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "234" ], - "x-ms-client-request-id": [ "1481dd7d-62a1-4d86-a021-1d0c8e4d67d0" ], - "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": [ "\"1DAC3767CF56AEB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "76f55bbe-613b-416d-88b4-5bf3405557fc" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7650" ], - "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\"}}}}", - "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": { - "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": [ "235" ], - "x-ms-client-request-id": [ "6db4d578-4c8f-435b-9710-14c57d756e75" ], - "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": [ "6b5b42f5-436c-467e-89af-527723b29b75" ], - "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-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" ] - }, - "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-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\"}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "a6567f1c-d5ba-4356-be55-d7a610c1cedd" ], - "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": [ "2a0b232b-b8a7-4b78-ae51-c3e0bf44d928" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4073" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "ee16a3ff-d973-4e5c-a534-ccd832e1926d" ], - "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": [ "\"1DAC3767CF56AEB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b71b5e09-8f1c-4408-9f9f-9e2d276a2f67" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7650" ], - "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\"}}}}", - "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": { - "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": [ "238" ], - "x-ms-client-request-id": [ "2663c108-57fa-4b60-a1a2-cdfab879c028" ], - "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": [ "bcfcb250-599c-4c29-a437-3abfe8166af2" ], - "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-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" ] - }, - "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-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\"}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "239" ], - "x-ms-client-request-id": [ "cf5fcfc8-ce10-4d23-a8a4-c9ba381ca924" ], - "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": [ "60ff20d2-5339-4809-811e-9027551e17f0" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4073" ], - "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}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "f0ac85e8-3c2f-4a20-8e06-fe7d5f90b176" ], - "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": [ "\"1DAC3767CF56AEB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1ddcb8c-07d8-48c2-a1e5-4c1e4f9d3278" ], - "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-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" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-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": [ "435b6812-05fd-4f91-942e-b8e396a7403f" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "0fd4a832-6612-42b3-a427-4d56036c04a4" ], - "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": [ "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-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" ] - }, - "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 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": { - "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": [ "243" ], - "x-ms-client-request-id": [ "7a6f3e01-4365-4798-a1f9-b3ceafcbf1f4" ], - "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": [ "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" ] - }, - "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 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": { - "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": [ "244" ], - "x-ms-client-request-id": [ "a6c3f55c-28f5-45ec-94d3-5379492fe792" ], - "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": [ "14a5d1e4-b21c-407e-afd4-80e0202ed2bb" ], - "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-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" ] - }, - "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 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": { - "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": [ "245" ], - "x-ms-client-request-id": [ "3e6f810b-ad66-4b59-bb07-9baf46698bb4" ], - "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": [ "d6f9de99-14c8-45f0-adb5-35fecbe8190b" ], - "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-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" ] - }, - "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 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": { - "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": [ "246" ], - "x-ms-client-request-id": [ "9cff1b48-6b9c-435d-9cdc-09d338866815" ], - "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": [ "4536be18-5d8a-4ac8-be32-8b7fdb9a0beb" ], - "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-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" ] - }, - "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 a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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": [ "247" ], - "x-ms-client-request-id": [ "1226fba8-6a05-42ca-8085-2680a38e2661" ], - "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": [ "f61b65b7-44d1-4bdc-90d7-c1937856867f" ], - "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-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" ] - }, - "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 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": { - "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": [ "248" ], - "x-ms-client-request-id": [ "5cd662c7-ea2d-41d5-bfca-7f2cb528a485" ], - "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": [ "4fe23641-d298-4301-91d0-161b9aacec8c" ], - "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-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" ] - }, - "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 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": { - "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}", - "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": [ "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1395" ], - "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}", - "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": { - "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}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "2014" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376A40C21AB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd153135-4659-4872-b35e-d0a11345f61e" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7657" ], - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "251" ], - "x-ms-client-request-id": [ "14d602ef-8655-453e-a082-c3d132dc8fe9" ], - "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": [ "\"1DAC376A9E48295\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0c59722-8555-4eb3-81c8-bce1276c9e0e" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7453" ], - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "252" ], - "x-ms-client-request-id": [ "fe6e9625-b369-48d2-a928-b48ea6498cc6" ], - "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": [ "\"1DAC376A9E48295\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b874597-83b7-4455-832d-b58034428d84" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7453" ], - "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\"}}", - "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": { - "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": [ "253" ], - "x-ms-client-request-id": [ "8fd116ba-7229-4581-8a90-4b6f1127d7d4" ], - "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": [ "d9efefe2-3c51-4278-b151-c3b2220a6596" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1232" ], - "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\"}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "5952ab54-91ce-4e82-a47c-4d641c0eca90" ], - "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": [ "dae2b087-bc37-433e-9cdd-74e672747f7b" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4073" ], - "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}}", - "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": { - "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": [ "255" ], - "x-ms-client-request-id": [ "7458f526-3dc7-4f23-a2c3-06d8390f0111" ], - "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": [ "795809b2-238d-4765-8a0c-7609795f03e4" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1232" ], - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "719dc7eb-82b2-4fed-a23a-2269d8d33bf7" ], - "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": [ "\"1DAC376A9E48295\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb3bc6b8-83f7-424f-ae20-835eaa656420" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7453" ], - "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\"}}", - "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": { - "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": [ "257" ], - "x-ms-client-request-id": [ "e5361d3b-d3f6-4ad5-bba2-3a52447efe9f" ], - "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": [ "f15eb3f0-c80b-4817-a4d8-0ff1e6c098d0" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1232" ], - "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\"}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "4cae1d4f-9b32-4fbe-89a3-5bb943a902b7" ], - "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": [ "b4c25c18-3deb-4aec-b5d9-b3d9e949c404" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4073" ], - "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}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "6ad950b3-04b8-4369-9351-9b5503bf13d4" ], - "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": [ "\"1DAC376A9E48295\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7707d4e-6bf6-4bb8-ad51-290bf7c320bf" ], - "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-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" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "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/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": [ "7ac9baee-06c2-43f9-a620-df2f7d376fb2" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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/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": [ "261" ], - "x-ms-client-request-id": [ "437b2e38-6d3b-4453-8845-44c79da23686" ], - "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": [ "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-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" ] - }, - "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]+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": { - "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": [ "262" ], - "x-ms-client-request-id": [ "9aeb2f92-531d-4f41-a891-dff2b950f5c1" ], - "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": [ "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" ] - }, - "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]+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": { - "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": [ "263" ], - "x-ms-client-request-id": [ "e169bcc2-cc2f-490e-b71a-a2aa279cbc10" ], - "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": [ "dc1862cf-7576-41bc-8f38-5f4c0ea01afc" ], - "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-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" ] - }, - "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]+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": { - "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": [ "264" ], - "x-ms-client-request-id": [ "dd161252-5f1c-4da5-8a25-1aedfef5a8c9" ], - "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": [ "7ef68199-da3a-481d-9758-032ec717e852" ], - "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-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" ] - }, - "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]+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": { - "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": [ "265" ], - "x-ms-client-request-id": [ "513bc9e5-f6a8-49d5-8ce4-8ec16becd3ce" ], - "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": [ "57ff1f54-acf3-42b3-ad4d-29f13a42e71d" ], - "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-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" ] - }, - "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]+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/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": [ "266" ], - "x-ms-client-request-id": [ "b721dfec-1e21-45d8-81a1-e98510f02ca4" ], - "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": [ "b8f39fe9-b309-4e25-ac2c-c39aaaf5d2db" ], - "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-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" ] - }, - "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]+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": { - "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": [ "267" ], - "x-ms-client-request-id": [ "d18d88de-90d0-47a1-942b-83f5ac96096a" ], - "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": [ "1f32da7c-aaca-4fe8-a48e-3eb671df0575" ], - "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-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" ] - }, - "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]+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": { - "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}", - "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": [ "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1395" ], - "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}", - "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/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}", - "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": [ "b4952fc4-14d6-4611-bd0a-8cbf1c866490" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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/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": [ "270" ], - "x-ms-client-request-id": [ "09bbdc65-e13c-40ae-aa45-8f982b7507fb" ], - "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": [ "69ee9769-1631-4b92-80ee-568c92a6628d" ], - "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-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" ] - }, - "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 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/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": [ "271" ], - "x-ms-client-request-id": [ "06d64a5e-c308-47a7-b789-66fbb20e47f2" ], - "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": [ "dc3e5af7-f746-412d-b87f-fec92b16d7b5" ], - "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-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" ] - }, - "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 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": { - "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": [ "272" ], - "x-ms-client-request-id": [ "a619f8ec-0c65-48d9-b4cb-d66a63d1e314" ], - "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": [ "6f662c3e-500e-4f12-81ad-ec52642e3a83" ], - "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-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" ] - }, - "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]+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": { - "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", - "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": [ "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-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" ] - }, - "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-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}", - "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": { - "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}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1689" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376CB98568B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c839c584-3fbc-44e5-8dcf-28315df7214d" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7337" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "d35e2635-20e3-4b85-b093-50a21a268869" ], - "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": [ "\"1DAC376D74D2A0B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a623bec6-eed4-46fe-88cd-902e735e1220" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7145" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "ab4dae3c-3cfa-4f05-8ea4-14a9000a3672" ], - "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": [ "\"1DAC376D74D2A0B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "835dd541-84f0-4ff7-9954-c4658ee6689f" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7145" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "52a15007-2c78-4e8c-b2eb-9b4ac51eb968" ], - "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": [ "f35fed2d-7c3d-4e97-a4c7-34f862cc51a4" ], - "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-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" ] - }, - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "32ecb27e-23bd-4984-a677-5888f75aeafc" ], - "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": [ "70c69cb7-7305-4af7-86d9-de461196c91b" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4076" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "279" ], - "x-ms-client-request-id": [ "56bc0900-4076-4d3d-b44f-ee8ec1dabff7" ], - "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": [ "\"1DAC376D74D2A0B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2141255b-ca53-42b8-9aa6-2c2246ad92f5" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7145" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "280" ], - "x-ms-client-request-id": [ "93d88048-bce4-4198-bab7-bc7ce84ac9d7" ], - "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": [ "83dd67c7-cab1-45fc-a8a1-8abc8b9afbfe" ], - "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-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" ] - }, - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "45d283ef-d868-4f14-a44b-b909c473e1c1" ], - "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": [ "af041da2-c6d5-4ba8-aa88-09cb73ac5360" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4076" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "8a98aff8-0658-4936-b188-2b1aea21442e" ], - "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": [ "\"1DAC376D74D2A0B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f904e26-2ce7-4adf-89f5-f8c4508a5a56" ], - "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-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" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": 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/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": [ "d0a8c9ab-a483-4723-830a-ed8c17a971a0" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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.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": [ "284" ], - "x-ms-client-request-id": [ "06d6744c-6082-40e2-a472-464257fb9a4e" ], - "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": [ "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-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" ] - }, - "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]+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": { - "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": [ "285" ], - "x-ms-client-request-id": [ "82a9d3e3-18c6-4d0e-ab0c-84f6e6754030" ], - "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": [ "83eab083-c5e8-4c82-ad0f-3224c03daf42" ], - "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-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" ] - }, - "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]+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": { - "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": [ "286" ], - "x-ms-client-request-id": [ "69e6ed1c-8c45-451e-9205-a7258fea1958" ], - "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": [ "422f4670-709c-46fd-a7ce-20098b2bc138" ], - "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-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" ] - }, - "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]+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": { - "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": [ "287" ], - "x-ms-client-request-id": [ "76bd5d75-b868-45a0-9441-c9c3d89e18af" ], - "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": [ "0fcdbd0b-55a3-472b-a75e-8680a4b452d1" ], - "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-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" ] - }, - "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]+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": { - "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": [ "288" ], - "x-ms-client-request-id": [ "4bc4b460-3b0b-45c5-844c-2961ea3511c7" ], - "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": [ "035370f9-aa72-4765-bae1-7589fc36d5e6" ], - "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-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" ] - }, - "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]+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": [ "289" ], - "x-ms-client-request-id": [ "956d6b98-9225-445f-aecc-f72b8bbb3dd8" ], - "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": [ "2ea611fd-9f73-468d-9686-c539f1ad1fa6" ], - "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-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" ] - }, - "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 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": { - "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": [ "290" ], - "x-ms-client-request-id": [ "445f79b5-ca85-4a1d-be6c-5b360eac92eb" ], - "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": [ "3407e38d-bf88-4206-9a4c-cba508d921b7" ], - "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-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" ] - }, - "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 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": { - "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}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1651" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376F6A337E0\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e801d651-c046-4ef5-8237-a41c44e1dcd6" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7517" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "a1ed0f15-8841-4407-82cc-ea94c3cbc8ca" ], - "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": [ "\"1DAC377062489B5\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aaa0568e-e8be-45cf-b63c-593d1ec9e482" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7313" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "bdfaff66-31b3-4a64-b2ce-c5718160c27f" ], - "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": [ "\"1DAC377062489B5\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0de0c0eb-1dcb-46c2-b313-c94e3ac0340e" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7313" ], - "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}}", - "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": { - "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": [ "294" ], - "x-ms-client-request-id": [ "0fbf4ec0-95c0-403e-92c4-ee6d4c81a120" ], - "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": [ "f9854a48-5190-4388-987a-701fd36bc117" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1111" ], - "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\"}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "baf7dbb7-374c-4aec-b0c3-2b2dfa4e7c69" ], - "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": [ "f3fcd186-d5eb-45c6-958a-8d9a13c177eb" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4072" ], - "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}}", - "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": { - "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": [ "296" ], - "x-ms-client-request-id": [ "5531bb47-9eb6-49ee-a620-7033d2ae53bc" ], - "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": [ "e6d3d848-0649-441e-9fb0-d0d8e345d413" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1111" ], - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "10a67d95-d658-4405-9be3-a6c3efe0e8d0" ], - "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": [ "\"1DAC377062489B5\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f59ccfc1-5ccd-46da-ad59-40a59a2a3a25" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7313" ], - "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}}", - "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": { - "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": [ "298" ], - "x-ms-client-request-id": [ "0686eaa5-9ee5-4d3f-b6d7-dcf7968f3023" ], - "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": [ "b9b5e65f-88dd-4d07-aaa0-a8f6c50372af" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "1111" ], - "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\"}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "d186579e-a12c-4f62-a4d5-44d9c5fef22e" ], - "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": [ "3958120c-8a0a-43de-b3d0-87a513319ed6" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4072" ], - "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}}", - "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": { - "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, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "25fb3fb4-5e8e-4c62-b633-215a114e7472" ], - "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": [ "\"1DAC377062489B5\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "388a6f3f-15c8-4d9b-b524-6a6dbe019f93" ], - "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-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" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": 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/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}", - "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": [ "7f476c4a-10aa-4197-86c7-19fc82ab264d" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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": { - "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" ], - "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": [ "cb2fac88-edb2-41ee-a580-fca9475507f0" ], - "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-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" ] - }, - "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 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": { - "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" ], - "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": [ "75b97c44-6fe2-4efd-bc79-3d6ae60ec468" ], - "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-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" ] - }, - "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 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": { - "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": [ "304" ], - "x-ms-client-request-id": [ "270c0e9f-fb43-49db-9dca-58e588a02f38" ], - "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": [ "99093d04-c702-46df-81e8-17a4085577e2" ], - "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-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" ] - }, - "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 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": { - "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", - "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": [ "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-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" ] - }, - "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-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}", - "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": { - "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}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1689" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37725473880\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e88e6e9-192d-4f97-81a4-61542f1fc38d" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7332" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "307" ], - "x-ms-client-request-id": [ "4aa34d62-1492-42a0-838b-1005e90161bd" ], - "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": [ "\"1DAC37730FC8E35\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3677d58-39e9-4eb4-b03f-91f6a0087c56" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7145" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "a0be67eb-7adf-41cd-97cb-72b87496adff" ], - "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": [ "\"1DAC37730FC8E35\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c76c9e0e-f389-4050-9edb-4d62fbd6ed22" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7145" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "309" ], - "x-ms-client-request-id": [ "5ce99a99-280a-47ec-9d62-1ca46c8ba1e4" ], - "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": [ "f956bf7f-1355-469b-9a6e-0b4288905342" ], - "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-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" ] - }, - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "310" ], - "x-ms-client-request-id": [ "88c7756c-bda9-4b13-9521-37de868bdf8c" ], - "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": [ "db4446d2-21c9-487a-b8ec-f20216a90666" ], - "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-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" ] - }, - "ContentHeaders": { - "Content-Length": [ "4076" ], - "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}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "a7e98e6e-76bf-43eb-9ea2-c1b9f7ee87fe" ], - "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": [ "0cdac969-db8e-408a-90ca-971ed5e09ca0" ], - "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-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" ] - }, - "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\"}}", - "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": { - "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", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "2d52177a-5dac-4ba4-bb26-a35de69d3a63" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "3280efee-7807-4f1f-b470-463ca65f318b" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7717,42 +4000,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37730FC8E35\"" ], + "x-ms-original-request-ids": [ "b526ecc6-58e8-45fa-83af-b2365268fe8d", "75b740f3-245e-421a-9563-d9a3cafe463a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3f21d356-a41f-40c0-853b-991ade84d589" ], + "x-ms-correlation-request-id": [ "3f21d356-a41f-40c0-853b-991ade84d589" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T114831Z:3f21d356-a41f-40c0-853b-991ade84d589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b6049f5-03cb-43cd-a727-e03e5dd759de" ], - "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-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: 980F53F8B9CE4CE2A044F3A6AAB36C66 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:30Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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/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": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-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-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "313" ], - "x-ms-client-request-id": [ "0d92633b-5a01-4442-a761-4d281f0ec520" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "a6dee35a-e925-49f9-8dc2-3b35d5e573cd" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7763,44 +4044,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6bb6b130-c9e7-465e-940e-122a11f64491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61d0bf90-e31e-4364-81af-4b151c0847bb" ], - "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/westus2/ca3d8d72-b17c-44e4-bcb0-7ec28e298a8f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "930bbb86-0439-47c3-8a6d-3839f7d1f2a4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T114831Z:930bbb86-0439-47c3-8a6d-3839f7d1f2a4" ], "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: 746C1AB886FD4A21B0CE3E9B84A66C27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "288" ], "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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-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/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-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?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": [ "314" ], - "x-ms-client-request-id": [ "ae829b3f-2c6f-43ae-adc2-316a09243e1d" ], - "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "116" ] } }, "Response": { @@ -7808,44 +4082,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": [ "86318be3-3742-42cd-b713-02e2a5a1b10c" ], - "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-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/25930ab5-44e7-4ba4-8153-b616e78df48b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "6144dc18-22f6-44c2-90e1-f8276e885d6c" ], + "x-ms-correlation-request-id": [ "6144dc18-22f6-44c2-90e1-f8276e885d6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114835Z:6144dc18-22f6-44c2-90e1-f8276e885d6c" ], "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: 8C5946236A194C53A26739D54CCB0D9F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:31Z" ], + "Date": [ "Wed, 12 Nov 2025 11:48:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4076" ], - "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-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": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7206bd40-0000-0300-0000-691474130000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\r\n \"name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"AppId\": \"10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"78cb4fe9-b95f-4c81-a7da-462e1c332bc2\",\r\n \"ConnectionString\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"CreationDate\": \"2025-11-12T11:48:32.0439985+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-u074f23mpl_10da85e8-cdbb-43f7-8ba1-7772e0b939aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-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.+$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 a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+13": { "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", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"\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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "4bb93a94-eaf0-45d6-a2ea-10ed957df7a4" ], - "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": [ "1999" ] } }, "Response": { @@ -7853,39 +4124,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37730FC8E35\"" ], + "ETag": [ "\"1DC53CA48D421F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6c24f3d-07c8-4712-b810-7baa47f3afbd" ], + "x-ms-request-id": [ "cb27df16-ceea-4022-b02c-29a303e59a76" ], "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/d9b5c732-7d69-43be-8336-34e127aeb273" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "388fc471-43b1-4d93-8c85-4d93825d547b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114918Z:388fc471-43b1-4d93-8c85-4d93825d547b" ], "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: DD349DDEB2454E77BB754B5B0E91D064 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:18 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8846" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:48:37.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+14": { "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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "fefa0c86-24f9-4b1d-aec6-83722a04e27a" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "62" ] } }, "Response": { @@ -7893,41 +4170,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CA608C9F40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd6d08c2-5baf-43a2-94c2-2c8e6727f159" ], + "x-ms-request-id": [ "0095800b-0260-42fc-a582-b110690fb0fe" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5124cfdc-64c6-4037-a1d8-5f51b83be0b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114948Z:5124cfdc-64c6-4037-a1d8-5f51b83be0b0" ], "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: F446E2DA2EAF4F1EB9103EDE09F20D5A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "8820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:49:18.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+15": { "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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "c436a67f-6af2-402c-a8ad-9f983e0d3755" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "5e64b645-7c46-4880-bc83-40fb72514320" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7938,41 +4216,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CA608C9F40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be1f52ab-f6e2-4545-b740-eb074226a735" ], + "x-ms-request-id": [ "2c729eaa-2e31-4bf6-a808-0a99b0f7432e" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5f91fc60-4df0-457a-9a15-13d4194811fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114949Z:5f91fc60-4df0-457a-9a15-13d4194811fb" ], "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: BC425FC93132461389253C5EE1F05BA8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "8820" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:49:18.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-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", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "318" ], - "x-ms-client-request-id": [ "03701a62-06d1-4b75-a1ec-bf14303cc824" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "222a50f6-4fca-4c80-9b7d-3e49e675e48b" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7983,39 +4262,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "205eed4b-8f88-4c70-88c2-ee38a5462864" ], "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-request-id": [ "bbf910a9-a8c6-49ed-8ac0-ed7260bac568" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d6762a4-4eac-4619-9b5d-fe4c7ea03cb9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "920a5c2c-9c5e-4857-9c7f-c0a07df4a6e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114949Z:920a5c2c-9c5e-4857-9c7f-c0a07df4a6e1" ], "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: 4B1B0C3A98674341ABE6F7D5B9828E67 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"}}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?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.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "319" ], - "x-ms-client-request-id": [ "1e194a8b-3ebc-4d09-abec-428a703bab2f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "aee2de1b-6f7d-4be5-92af-b844b62a5eef" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8026,37 +4307,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d7b40492-20ba-4749-ab59-d09b3a5a07a3" ], "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-request-id": [ "a22b65e9-c35d-436b-842b-e83e79f236eb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2aabaf3-8e81-48c3-82d4-e3f811443400" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "92af566e-3224-484d-95d9-78dd47224d0a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114949Z:92af566e-3224-484d-95d9-78dd47224d0a" ], "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: 2E972221ED424C26BCFCB3C306693B42 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "4192" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":31822,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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 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 a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+18": { "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", - "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "c6d37a6f-869a-4fba-9d30-07f68c447d52" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -8064,40 +4353,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": [ "\"1DC53CA608C9F40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ "b88327d9-aa5a-4baa-b121-00ca6c6a18e2" ], + "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-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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "621807c1-5492-4642-a2af-cd82c073ad4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114950Z:621807c1-5492-4642-a2af-cd82c073ad4e" ], + "X-Content-Type-Options": [ "nosniff" ], "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: DA6567D838E641DC88E285D10FA18FCC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1373" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8820" ], + "Content-Type": [ "application/json" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:49:18.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-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}", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "557" ], + "x-ms-client-request-id": [ "a337056e-de5d-4c8e-9521-bdd837b7c02a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1683" ] } }, "Response": { @@ -8105,43 +4399,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3774FA42695\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "570e889f-3e2d-4c8d-ad37-5b9d34321303" ], + "x-ms-request-id": [ "98df543e-6941-4301-bb78-c371915cdc24" ], "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/5106ac59-c36f-4075-b4b0-6fe5cde64ab0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "32404f9c-bc0c-4c94-92bc-4b7c61005020" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114950Z:32404f9c-bc0c-4c94-92bc-4b7c61005020" ], "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: 7E09E8971D4E440E9B9EE20A41097AD6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7306" ], + "Content-Length": [ "1182" ], "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"}}", "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 a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?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" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "3a1aa8aa-6b81-4d78-aa40-1a52d9557123" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -8151,42 +4444,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e739376a-8889-4063-b054-612d3eb85906" ], + "x-ms-request-id": [ "49b32e1e-656e-4dfe-8310-a39931d023a3" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc2dce5f-52f3-45a1-819b-fe9799fd5eca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bd5c3e0c-31fb-4e76-8f1e-57882b6ca091" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114950Z:bd5c3e0c-31fb-4e76-8f1e-57882b6ca091" ], "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: C0A41D9BDED14EAB8A5AE7FC1960EF06 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7106" ], + "Content-Length": [ "4192" ], "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":31822,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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 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 a function app with \u0027UserAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-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-Java-k0vbul5y8x?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "649873bb-3dc9-4544-9beb-6c9ff844ce26" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "d7e0dd46-72f1-45f5-82ca-ff22c57fa45a" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8197,45 +4490,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], + "ETag": [ "\"1DC53CA608C9F40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5207420-5a7f-4fec-9594-adf05d98a0bc" ], + "x-ms-request-id": [ "3f30a05e-42d1-4771-828f-0bb179035b16" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/206dbdea-6100-4ac0-b36e-88f96863b2ee" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f41cd48b-9e0e-477d-ab61-51c1d441934e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114959Z:f41cd48b-9e0e-477d-ab61-51c1d441934e" ], "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: B7B33DCD122D4C91A5CE4481CCA29C52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7106" ], - "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/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": 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 a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", - "Content": null, + "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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "cd80f271-a157-4e4b-b30b-051366657a5e" ], - "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-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -8244,40 +4532,41 @@ "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": [ "f8db4822-c4f2-40d5-a5f9-58726ef6131d" ], "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/7eb51e8a-9a5d-473a-bcad-5165d1da3bdf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "189184fa-b303-481b-bbee-2552b96e5220" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T114959Z:189184fa-b303-481b-bbee-2552b96e5220" ], "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: 92B8F562337443BDA38766308CD5DA5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:59Z" ], + "Date": [ "Wed, 12 Nov 2025 11:49:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "47" ], "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": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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 a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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/providers/Microsoft.Web/serverfarms?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "bccfb2d5-9520-4025-8a72-bb796614bf1a" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8288,41 +4577,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "7ca50aa0-64b2-4936-ad52-304b0eaf36a2", "ce443ddb-405f-48c7-a984-2a654642469d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "b5332f34-a5f9-469c-822f-f80650b87b13" ], + "x-ms-correlation-request-id": [ "b5332f34-a5f9-469c-822f-f80650b87b13" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115000Z:b5332f34-a5f9-469c-822f-f80650b87b13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3016b49e-b39c-4ab7-bbd3-de577e5088c8" ], - "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-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: D708C23189154E5396C5AA9A7EBFBEA9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4069" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "12094" ], + "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/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": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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 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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "59737d58-5bf1-4220-a7b7-3b8d33ae888c" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8334,40 +4622,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": [ "86dfd729-7ee9-4dea-a1a7-f3f6647c6b2e" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a26f561c-9a64-4493-9483-caa8e9619d01" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115001Z:a26f561c-9a64-4493-9483-caa8e9619d01" ], "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: 625EAA40EF994BE5BF1F2A08752E85B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 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 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-o1blrw/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/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "a3bc205d-c7b2-4f15-a75d-98ec7f5237e7" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8378,42 +4666,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbfe0aed-059c-42e2-ae10-2a7935a96a4c" ], + "x-ms-request-id": [ "4364f733-99b2-4c7c-92d3-2b2fd26fd855" ], "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": [ "e099f57c-a146-4219-b584-07e788315c2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115001Z:e099f57c-a146-4219-b584-07e788315c2a" ], "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: E70B00C08D3142A79F91F20C4EECA770 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7106" ], + "Content-Length": [ "1782" ], "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-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 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 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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-Java-k0vbul5y8x/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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "4149c5e6-ba4c-4a86-ab27-2db1e696f6a6" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8425,40 +4712,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": [ "1dff8ae0-2f2b-40a3-b42a-ca28baf40d8b" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "21ce6d86-75a2-4fbb-b8be-e29fc9e06e23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115001Z:21ce6d86-75a2-4fbb-b8be-e29fc9e06e23" ], "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: 75168EE7B71F4F89A979B32FBC42D836 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "1746" ], "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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 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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-Java-k0vbul5y8x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "b74ff381-4d1a-4309-bd76-3b729c663095" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8470,40 +4757,40 @@ "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": [ "7f4dd186-d057-4251-8de2-06ab9a2315a2" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "27f57909-bcb5-46e5-bc15-7c9f2cf33895" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115001Z:27f57909-bcb5-46e5-bc15-7c9f2cf33895" ], "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: D7040EB6B1CF48F5A6CC8BD99C9B8F37 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:01Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4069" ], + "Content-Length": [ "1814" ], "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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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 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 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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+7": { "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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "80460fe8-fc52-4613-9e14-b4fada10b4a5" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "d80557ac-698d-402d-95f4-29a83145e3c2" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8514,39 +4801,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a22f87b3-f421-4b4c-874c-e65f9ef54736" ], + "x-ms-request-id": [ "07f82313-2d15-4433-9b4a-5ff5dc06a40c" ], "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-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9afa6b68-38c7-4ac9-acf9-b6bdb14ce8f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115002Z:9afa6b68-38c7-4ac9-acf9-b6bdb14ce8f5" ], "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: A433EE349AE54525A05E05AAB1410724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:02Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:01 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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 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 a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { "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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "a2971e09-4b40-463c-98c5-c82e3a1db009" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "62" ] } }, "Response": { @@ -8555,40 +4847,40 @@ "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": [ "402a99d0-c881-471a-9229-cd163afd5a67" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "151e272a-59d3-496a-bedb-ead1cc7d1140" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115003Z:151e272a-59d3-496a-bedb-ead1cc7d1140" ], "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: 31A016302370425F8E267153EC65CA97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:02Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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 a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+9": { "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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "f6a7c02a-c15b-4e9c-8b99-ccd6be22d620" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "x-ms-unique-id": [ "568" ], + "x-ms-client-request-id": [ "ef9df988-41fa-4c9d-a1c9-030c61202c79" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8600,40 +4892,40 @@ "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": [ "ec632aae-43bf-4d1f-851e-5a554db48be0" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "87dcb732-a602-4175-99e9-bf357c5a83fd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115004Z:87dcb732-a602-4175-99e9-bf357c5a83fd" ], "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: 3D0BA2410515441F8584ECA353F43E6D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:03Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "1700" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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 a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "333" ], - "x-ms-client-request-id": [ "0a7de39a-7788-486c-b942-b1a65b3d00ca" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "feda33b4-7e93-4069-ad40-13e38a935288" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8644,39 +4936,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fc9c9c5b-5f74-4cb7-a5b1-644c14790907" ], + "x-ms-original-request-ids": [ "0c21b864-a0d5-452e-b8f0-744e2b81bebd", "20d1c54f-3df4-42a5-a756-3e75b9d194f5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "510ed3a0-a014-4fb6-9aaf-399b7ff98e90" ], + "x-ms-correlation-request-id": [ "510ed3a0-a014-4fb6-9aaf-399b7ff98e90" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115005Z:510ed3a0-a014-4fb6-9aaf-399b7ff98e90" ], "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-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: F23CB67E6F514420B85D4966F4E562DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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 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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "570" ], + "x-ms-client-request-id": [ "135e2b4c-feea-4488-a9ec-18501594662e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8687,31 +4980,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d4dfc644-d7f8-47b4-b37c-41393e0c299b" ], + "x-ms-request-id": [ "e9995838-da11-4ffc-9b75-498fb017a1f3" ], "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/westcentralus/38a3966b-add7-4c42-af41-3853a8b92e88" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "89689cff-a124-4e67-97e1-d395da6ab56d" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T115005Z:89689cff-a124-4e67-97e1-d395da6ab56d" ], "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: 8C6AD89323924725948BB4B46BE188E6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:05 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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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 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-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-01+12": { "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", - "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-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?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,35 +5023,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/b550947e-a428-41de-8b21-10dd747e3bdc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "6a875ce9-a9aa-4431-af96-6123c08bd867" ], + "x-ms-correlation-request-id": [ "6a875ce9-a9aa-4431-af96-6123c08bd867" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115007Z:6a875ce9-a9aa-4431-af96-6123c08bd867" ], "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: 8B7C3246192541DDB34A546CFD184F1A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1372" ], + "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-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\": \"\\\"7206cd58-0000-0300-0000-6914746e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\r\n \"name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"AppId\": \"10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"78cb4fe9-b95f-4c81-a7da-462e1c332bc2\",\r\n \"ConnectionString\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"CreationDate\": \"2025-11-12T11:48:32.0439985+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-u074f23mpl_10da85e8-cdbb-43f7-8ba1-7772e0b939aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+13": { "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1683" ] + "Content-Length": [ "1946" ] } }, "Response": { @@ -8766,43 +5060,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377793AB76B\"" ], + "ETag": [ "\"1DC53CA8F309FE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "614b949b-cc8a-4073-8560-983cdeec59e1" ], + "x-ms-request-id": [ "a30bdad6-94f3-4303-aa02-9c6f516107a8" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f2ef819-7a43-4d46-89f7-0d37f214b80f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "6d896de2-ef7f-4c97-8d22-b8a5dfd20870" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115050Z:6d896de2-ef7f-4c97-8d22-b8a5dfd20870" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 2A6F858751264CC09313A47F9B34698A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:07Z" ], + "Date": [ "Wed, 12 Nov 2025 11:50:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7306" ], + "Content-Length": [ "8654" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:09.5033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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" ], + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "34f45402-3a59-4df1-8e70-702b2a2e330a" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -8812,42 +5106,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], + "ETag": [ "\"1DC53CA979D3335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b56457f2-c7af-4997-9701-bf59ad6e273b" ], + "x-ms-request-id": [ "39d1d9ec-42b4-40a4-b536-d6211f655781" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7dc1363a-43d3-4c20-b854-0d82a2a64fe8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115121Z:7dc1363a-43d3-4c20-b854-0d82a2a64fe8" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: CA7809B6CB124DF690218BACC90EAD63 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7111" ], + "Content-Length": [ "8628" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:50.6433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-Node-4fqxib7usc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "eca2809c-0038-4ff6-8ec8-c22138597d92" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8858,42 +5152,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], + "ETag": [ "\"1DC53CA979D3335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "982b59e4-a0fa-4282-80f5-5265c08a04fb" ], + "x-ms-request-id": [ "bdbb827c-c9a5-4180-a569-22c19d245d4d" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3716b0a3-4596-44d0-81ba-4496b758b9a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115121Z:3716b0a3-4596-44d0-81ba-4496b758b9a6" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 72FAE8994DE645B3A3CDE3E1A09979D2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7111" ], + "Content-Length": [ "8628" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:50.6433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-Node-4fqxib7usc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "217de053-8fad-48d8-b205-def7ed7d91ed" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8905,40 +5199,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d120f012-d905-447f-a5a1-e4fde68e43e2" ], + "x-ms-request-id": [ "545e7c91-f589-4a34-b9ad-0cd9e6723fd8" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b95f61d-c350-4a29-b127-77e82ca6f6a1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e7459f8c-71bc-4397-9945-40e1cdd272b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115121Z:e7459f8c-71bc-4397-9945-40e1cdd272b9" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 424E860315E64713BA4BBF1D4F2F6D17 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "1231" ], "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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-Node-4fqxib7usc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "576" ], + "x-ms-client-request-id": [ "78f57044-fe1c-438d-9bed-7f9fbf547280" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8950,40 +5244,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "edf0afde-ef4f-41ea-8c8b-f6b2c79a2583" ], + "x-ms-request-id": [ "fd4b5247-5404-4c5e-a048-e97b943f52b4" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3461b811-9e87-4deb-8a3a-3e0b292d2b6b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "faea34df-1f18-4078-92ec-7dea1444f78b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115122Z:faea34df-1f18-4078-92ec-7dea1444f78b" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 5C1F2D7BCBFD485791B67FFD3E077CFC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4069" ], + "Content-Length": [ "4192" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":31823,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "ab977221-f935-477c-9b27-f63a63c118a4" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8995,40 +5290,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab51c827-9363-4270-a315-64d33f8326c3" ], + "x-ms-request-id": [ "da7a71cc-a261-462d-8bd4-6edeb271fab4" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54c83ef6-f444-46aa-8b5b-743267e11a89" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "823c4677-fdb2-41dc-9300-f00d76d230ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115122Z:823c4677-fdb2-41dc-9300-f00d76d230ac" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 3D2C5A0E5CC4406381D89DE9EEA9C3BE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "1231" ], "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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-Node-4fqxib7usc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "3832d7a0-c14f-42a4-b51a-911545246f0b" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9039,42 +5334,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], + "ETag": [ "\"1DC53CA979D3335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86149377-a11c-48f8-8f85-8128e2800314" ], + "x-ms-request-id": [ "b3319fc3-3104-4a7a-8f34-72ddb7d1429a" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1734435a-521c-443b-9202-ff2d58c56325" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115122Z:1734435a-521c-443b-9202-ff2d58c56325" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: AC96E59C9EF241CFAE5995C3C9FE9637 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7111" ], + "Content-Length": [ "8628" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:50.6433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-Node-4fqxib7usc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "7e0b7336-b5e3-4c6e-8521-2b698c4f1554" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9086,40 +5381,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7d3f569-3861-4ea0-b740-e0839a832560" ], + "x-ms-request-id": [ "b0e2e4cd-a14e-4e0b-a7a8-e77f1b5a788c" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/832dfcb5-60fd-49dc-9203-fcbfb65b910d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5fe68d40-1500-43e3-a504-e1069ff5bec4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115123Z:5fe68d40-1500-43e3-a504-e1069ff5bec4" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 908D51B156414B6BAA495480D7EFCF70 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "1231" ], "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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-Node-4fqxib7usc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "3c11395a-cd36-4e78-93ab-cda9db880945" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9131,40 +5426,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "04ad180d-ea74-4584-a808-b9eec0ffc81b" ], + "x-ms-request-id": [ "d85252b5-bb4b-4b8c-9c6f-1873193e3632" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/736cdb30-6f94-4a42-9617-1c3ea2338eb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2bd7e646-ae83-4733-adad-4c3acad2b3fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115123Z:2bd7e646-ae83-4733-adad-4c3acad2b3fe" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 94FD19DA928F4BDDA43FD66DB3A2151D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4069" ], + "Content-Length": [ "4192" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":31823,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { "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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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" ], + "x-ms-unique-id": [ "581" ], + "x-ms-client-request-id": [ "8a64b570-1b0b-4cab-8247-ebee60ab39a6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9175,19 +5471,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], + "ETag": [ "\"1DC53CA979D3335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "485dfb41-388e-440c-bc21-75e8c126de53" ], + "x-ms-request-id": [ "69855809-73be-497c-bace-01bacf030c5a" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9f7f5cf-c245-489e-b229-2bfef69235e4" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "563126f3-d3c3-4a09-b5d8-0d98cd00b22a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115133Z:563126f3-d3c3-4a09-b5d8-0d98cd00b22a" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 06B8997697DC4EEE90858E5C2B7FB818 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:32 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9197,11 +5494,52 @@ "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": { + "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/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-u074f23mpl\",\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": [ "70462c1c-9b92-47fe-a02c-992f587d965a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f50a284-80dd-4d05-9237-7863f6092a4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "39c902e9-f033-4983-82f9-06131447bd6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115133Z:39c902e9-f033-4983-82f9-06131447bd6d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3D1E22B73C9B4CD6AB4B7D86EA3A02B1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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/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-we3pd25b9g\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9216,17 +5554,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "782acc54-9146-4c5e-a155-613726dc0929" ], + "x-ms-request-id": [ "48b1c782-1da8-4968-a810-6e8d20062c49" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8afd3fb3-a556-491a-9365-2cd397c3065a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4643e123-1d98-4b26-a216-c61c211fff90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115135Z:4643e123-1d98-4b26-a216-c61c211fff90" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 4B46860BA8134B0687820DD2BBF6FB3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9237,19 +5576,19 @@ "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": { + "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/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" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "64df22fd-1cec-45b6-9561-70c90c7a22c9" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9261,40 +5600,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "500fab0d-aa4c-41f0-aad3-cb07a7cd3098" ], + "x-ms-request-id": [ "cbeceab9-3e4d-4c6c-a66b-50bfaba3b888" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5c6774c3-9201-46ff-9f55-03cd56e3532d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "04de1ec4-f667-4733-8e93-81541ff413cc" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115135Z:04de1ec4-f667-4733-8e93-81541ff413cc" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 6392AC3D912A48E2AAEB5CD570CC6493 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37704" ], "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;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 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": { + "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/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" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "ceee7405-e27c-4206-a623-040ccd0e358e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9305,39 +5645,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "82ea83a5-5f8b-469c-83f8-cfb119c1b91c" ], + "x-ms-original-request-ids": [ "d9aba991-f5e8-4657-aea8-feb81d132773", "564a5abf-0237-4f44-ba03-1de3c1ff1af4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "619ab516-fad6-43b1-ad2e-2fc37333deac" ], + "x-ms-correlation-request-id": [ "619ab516-fad6-43b1-ad2e-2fc37333deac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115136Z:619ab516-fad6-43b1-ad2e-2fc37333deac" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 537A9645B95E4235AAB8B3C6E447F99C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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": { + "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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "39599ca2-e57d-42c3-8683-dc79a0a37472" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9348,30 +5689,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8a1388bc-b280-41ac-9f13-a05ab71f9fbf" ], + "x-ms-request-id": [ "0206953c-916e-4930-b2c3-985698dcc492" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f197d2e8-d67b-4a99-8560-35c8feed5bc2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "00d62ce8-0dd7-4fc5-940e-efd8ad8466a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115136Z:00d62ce8-0dd7-4fc5-940e-efd8ad8466a8" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: D0B0777D823443F7BEE7EE0EA0C0846F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:36 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\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"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": { + "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-cjes6i/providers/Microsoft.Insights/components/Functions-DotNet-we3pd25b9g?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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Insights/components/Functions-DotNet-we3pd25b9g?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": { @@ -9391,35 +5732,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": [ "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e3b6e0f-f12c-4940-bfe5-1a193fc41576" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "670c6e9f-0794-42f5-9160-822d3f29ab14" ], + "x-ms-correlation-request-id": [ "670c6e9f-0794-42f5-9160-822d3f29ab14" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115142Z:670c6e9f-0794-42f5-9160-822d3f29ab14" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 26DD3A5A19C14CAEA9968001D7627ED6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:51:41 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-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}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"72063574-0000-0300-0000-691474ce0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-DotNet-we3pd25b9g\",\r\n \"name\": \"Functions-DotNet-we3pd25b9g\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-we3pd25b9g\",\r\n \"AppId\": \"2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9fca4f76-d133-4a00-955e-b079cbb13fb8\",\r\n \"ConnectionString\": \"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\r\n \"Name\": \"Functions-DotNet-we3pd25b9g\",\r\n \"CreationDate\": \"2025-11-12T11:51:37.1890585+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-we3pd25b9g_2ef6a493-ad79-4c82-bc89-061e4dc0a23e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-we3pd25b9g-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.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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-we3pd25b9g\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1691" ] + "Content-Length": [ "1714" ] } }, "Response": { @@ -9427,43 +5769,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377A36DF06B\"" ], + "ETag": [ "\"1DC53CAB840E9B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5391d9dd-342e-46f6-9a37-bf755532666b" ], + "x-ms-request-id": [ "26c8b3d2-aa2f-44e9-b97d-e0d3945df7c9" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ba7d449-e103-4b0f-b125-3b760abfcbfb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "f0154dff-b566-422e-b170-0a436f86d371" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115204Z:f0154dff-b566-422e-b170-0a436f86d371" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: D52AE94CDA234EF691D0ED57F02B9AA6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:42Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7338" ], + "Content-Length": [ "8757" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:51:44.59\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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.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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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" ], + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "771a6eaf-6a7d-4b22-bdc9-477bd1988a8f" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -9473,42 +5815,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], + "ETag": [ "\"1DC53CAC3537CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77571ba7-c885-4f09-a8eb-eed4bae05d8c" ], + "x-ms-request-id": [ "2ae87b5d-d42e-44f3-b408-da4602923282" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4d7b382f-ed52-4901-854a-3eaf9897f2ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115234Z:4d7b382f-ed52-4901-854a-3eaf9897f2ac" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 8F457A6EAF684FB284C87E7D2599AD24 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7141" ], + "Content-Length": [ "8743" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:03.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "85838def-9ebf-49ec-86df-6562c5133c31" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9519,42 +5861,87 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], + "ETag": [ "\"1DC53CAC3537CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c26f120d-4273-4802-aec2-187cd4995b79" ], + "x-ms-request-id": [ "ad833409-b758-4bc7-9052-94bcdf71dabc" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a740a1aa-8905-4b36-8973-8dca914110b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115235Z:a740a1aa-8905-4b36-8973-8dca914110b8" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 9C750E272CEA4C6DAD9FABCD3DDD3337 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7141" ], + "Content-Length": [ "8743" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:03.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "1986a4ba-367e-4e33-9370-68b56829962a" ], "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a9f579ed-7ae2-47d3-a659-df1e64f0d5c8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9034730b-7a0b-4278-9a25-f7e2a966d915" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9f8a8fd5-b96e-4290-a346-b3e52cbb6a80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115235Z:9f8a8fd5-b96e-4290-a346-b3e52cbb6a80" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 609A94AE0A574AD880456960BB94FC06 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1249" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-we3pd25b9g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\"}}", + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "6debc137-76a8-439a-b1e5-54f57f735aba" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9566,40 +5953,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b73ae8aa-141a-4df6-8364-1a26d8b92141" ], + "x-ms-request-id": [ "661fabf5-55f7-4eac-a1da-3dfb6cb6705b" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76ce91ed-6fc9-4077-a44c-2b8ad63811a4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bc797934-5215-47d1-b0e6-8e0017252b0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115235Z:bc797934-5215-47d1-b0e6-8e0017252b0d" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 6126B76EAD294153AB63F2522D1DC69B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "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-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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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]+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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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-Python-iyf85pjd9l/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "47572700-04ab-478e-9a9a-41c67f6a68bf" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9610,41 +5998,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CAC3537CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f0660ba-279c-42dc-959e-bc9af3b7d0b7" ], + "x-ms-request-id": [ "f7ed6d5a-e430-4d91-94a9-67c3281ec78f" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fcc8ad51-0964-483d-8238-b5f86d117900" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115236Z:fcc8ad51-0964-483d-8238-b5f86d117900" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 1D9F9558F8234BB1AB3456627F53E251 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:35Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "8743" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:03.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "ed08b172-4954-4ae5-bb17-08cc6ec5431f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9656,40 +6045,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a087d602-2112-4eee-984b-bccfa2696c66" ], + "x-ms-request-id": [ "ee576046-8a2a-4443-a5eb-375416839df2" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f74a4ae-e12a-4756-ad2a-2ee289dbe8d1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "21121e6f-23cb-431a-8fc3-c77855aa740c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115236Z:21121e6f-23cb-431a-8fc3-c77855aa740c" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: EF737907295046029423B8110F164373 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:35 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-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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-we3pd25b9g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\"}}", "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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web?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" ], + "x-ms-unique-id": [ "595" ], + "x-ms-client-request-id": [ "6c325815-7b1e-48a0-ba4f-491dca62dbf1" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9700,42 +6089,42 @@ "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-ms-request-id": [ "42949523-ad16-41a0-9103-7b2f164b1df7" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0300d2ec-0de5-4631-be00-c2929a4e5317" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "88cb1ed9-c18c-4337-a230-809a1cf62a1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115236Z:88cb1ed9-c18c-4337-a230-809a1cf62a1d" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 86922CB96D2C442FBFF6CB0B9E69C1D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7141" ], + "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-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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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]+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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+14": { "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", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?deleteEmptyServerFarm=False\u0026api-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" ], + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "d8454150-7896-4c34-a611-20300c1c5892" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9746,44 +6135,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CAC3537CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e126abb8-cbfb-4fa6-b4f5-5eb7accc0f8d" ], + "x-ms-request-id": [ "0dbad1ef-52da-4fd6-8b62-3d65c6a49175" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9e23a23-ec43-49de-a300-48512d9c2d7c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "6f7b1e05-c814-4354-8504-ad9741bc82b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115246Z:6f7b1e05-c814-4354-8504-ad9741bc82b4" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 4982748F2FD44A959B028C07A4C8BC2C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:36Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], - "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/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\"}}", + "Content": 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/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.+$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-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?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-PowerShellTest-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -9792,40 +6177,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa34df24-4191-4a23-a28b-a2952baafbc4" ], + "x-ms-request-id": [ "4858156c-018b-4078-a1b4-110f56a346d6" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf2675a5-a793-4424-86ee-97a78436e30b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "50bb473c-1815-44ae-a917-21d7b186febc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115247Z:50bb473c-1815-44ae-a917-21d7b186febc" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 880F61627DCB4CF7831D0D86B8A06031 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:46Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "47" ], "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}}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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": { + "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.Web/serverfarms?api-version=2023-12-01+2": { "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", + "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": [ "360" ], - "x-ms-client-request-id": [ "25855bb1-b3a5-495c-8ed6-2227477c1aff" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "0e0bf24a-0a69-4b20-882e-5da00ff1b06c" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9836,39 +6222,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], + "x-ms-original-request-ids": [ "24d3a723-4e11-41c6-9ee6-0d73268d2608", "6bddbd6e-1425-428a-bcd0-8849dc97709a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "11262aaf-00ba-44f0-bccc-91cac3671a04" ], + "x-ms-correlation-request-id": [ "11262aaf-00ba-44f0-bccc-91cac3671a04" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115247Z:11262aaf-00ba-44f0-bccc-91cac3671a04" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: E3D096794AD64CC6B823C05BADD40514 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:47 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "12094" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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": { + "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "46ecf470-d799-4b42-8c47-d9a9147d5058" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] } }, "Response": { @@ -9877,40 +6267,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ec486ba-b6fa-4961-8cee-ca294abe6c95" ], + "x-ms-request-id": [ "2f1018ee-c6d1-4a0c-bddc-c9c2aac402de" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "85d8f6d4-e0d3-4a6f-92a1-543e4e0c71be" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115248Z:85d8f6d4-e0d3-4a6f-92a1-543e4e0c71be" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 124071122A844DECA4498B4A18318834 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux 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": { + "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-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" ], + "x-ms-unique-id": [ "600" ], + "x-ms-client-request-id": [ "97b0267b-dace-4360-8cd1-4759a5fef5d1" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9922,40 +6312,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cdbeebb-c3e6-41b8-98e5-d68224f7e275" ], + "x-ms-request-id": [ "7511edc0-4a65-4832-9d12-8c999e29f582" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fc33c2f6-a268-4798-93dc-ce99f460a9e0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115248Z:fc33c2f6-a268-4798-93dc-ce99f460a9e0" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: BE439FC7DC90429A85D8E3C639EBCA08 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "1782" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux 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": { + "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-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" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "91bd4395-e5da-42b0-a9b9-45fd74600a80" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9966,39 +6356,41 @@ "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-ms-request-id": [ "432eee22-2519-47c8-9cba-5a92e5a1966f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "80da2b11-43b4-4c67-b515-23de203c5e36" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115249Z:80da2b11-43b4-4c67-b515-23de203c5e36" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 60AFFD018E2D4901A4898D1E9808FDC8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:48Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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": { + "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-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" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "3f7e5883-cf96-4fa0-a3bf-cc252a3c4dca" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10009,37 +6401,44 @@ "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-ms-request-id": [ "fe869a67-0264-4810-a5d4-bb7a37b38b53" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f4fb747e-fbfa-434a-ba39-15d14c2ee31e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115249Z:f4fb747e-fbfa-434a-ba39-15d14c2ee31e" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 0FEEF757873F4C9CB77ADA04DAA323AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "1814" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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 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": { + "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+7": { "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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "5e7fa3d3-e432-4e41-8304-4333bbc04790" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -10047,40 +6446,44 @@ "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-ms-request-id": [ "a3eb1e59-0232-49e6-bf14-15170882e2c7" ], + "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": [ "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1c7f0600-0665-45a9-9ecb-811c01734b76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115249Z:1c7f0600-0665-45a9-9ecb-811c01734b76" ], + "X-Content-Type-Options": [ "nosniff" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: B6A773A9A0454BFFACA9DB8FD71A8F19 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1397" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], "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}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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 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": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { "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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "14942d98-c798-4930-be92-43494771b8fc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1702" ] } }, "Response": { @@ -10088,43 +6491,42 @@ "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-ms-request-id": [ "a47f1e10-0f76-40ef-8313-4c9db8a8b320" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d0d27f2c-a4a8-4df3-8c77-c26b7ab9f064" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115250Z:d0d27f2c-a4a8-4df3-8c77-c26b7ab9f064" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 75FBAA83590A44578D7D23F9B093AC52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7392" ], + "Content-Length": [ "1823" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "6834bb82-fd77-4218-84f7-8728e97233bd" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -10134,42 +6536,41 @@ "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-ms-request-id": [ "705e14ae-c6c7-4827-8c6f-beffda953d52" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "040a8ea2-1654-4434-9e1d-f81ba0c55158" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115250Z:040a8ea2-1654-4434-9e1d-f81ba0c55158" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 718294C744EB4A6EAF01E791ADFEA2DB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7204" ], + "Content-Length": [ "1701" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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": [ "368" ], - "x-ms-client-request-id": [ "7bf54566-7fe0-4431-af9c-e2424dc01bc1" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "606" ], + "x-ms-client-request-id": [ "f0d8bd0c-6370-47ef-beeb-0605cf383efc" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10180,42 +6581,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377DD057D60\"" ], + "x-ms-original-request-ids": [ "6560cd24-3d88-4f7e-ad84-26e3d22879a2", "61686afc-93c3-47b1-8dec-2b239ddc5495" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "8237c167-65a3-4714-a786-6c63e3873b50" ], + "x-ms-correlation-request-id": [ "8237c167-65a3-4714-a786-6c63e3873b50" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115251Z:8237c167-65a3-4714-a786-6c63e3873b50" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 6E1BDDEF98F949C297F0907C2B81067B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:50Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7204" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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/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}}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-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" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "e853cd61-e2af-42d8-bd6a-3ade0b1434e1" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10226,44 +6625,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "aea28a01-c4a5-40ad-b416-20ca24a5560a" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/9e010ec9-8183-4253-8b71-07a0c7eaca47" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a403f479-88d4-4bb4-811c-9d0e5a5961d8" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T115251Z:a403f479-88d4-4bb4-811c-9d0e5a5961d8" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 6F45062F6AD64CAF9975EB41C0717D27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:51Z" ], + "Date": [ "Wed, 12 Nov 2025 11:52:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1236" ], + "Content-Length": [ "288" ], "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\"}}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1655" ] } }, "Response": { @@ -10271,42 +6663,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CAE124F36B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1bbcad99-c87e-47a7-8a46-4f7797b8f90f" ], + "x-ms-request-id": [ "2a816631-6aeb-49ad-b9c7-7c169affc476" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91815eb3-dae1-49b4-bce7-7f6e136f0282" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "6b052346-ccbf-4ef1-9318-8e10e691fd81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115334Z:6b052346-ccbf-4ef1-9318-8e10e691fd81" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 36D07764D4624254884EDF3B8B1F82B5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:52Z" ], + "Date": [ "Wed, 12 Nov 2025 11:53:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4088" ], + "Content-Length": [ "8514" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:53.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\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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.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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "b810916c-8006-402a-8832-2952cd0523b6" ], + "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" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -10316,41 +6709,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CAF954F7AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35130f14-043d-4e4f-bba7-e2943566ab33" ], + "x-ms-request-id": [ "3ed473cf-8498-4317-8d0b-691930a2b7c6" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e2ddba87-6c2c-4c01-8004-054b7b4b375e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115405Z:e2ddba87-6c2c-4c01-8004-054b7b4b375e" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: AD83E7C0D2534AA18DD6064D000ADD80 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1236" ], + "Content-Length": [ "8488" ], "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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:53:34.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "09c43a84-53fb-42a2-836a-4c709b1d7d10" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10361,42 +6755,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377DD057D60\"" ], + "ETag": [ "\"1DC53CAF954F7AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b78b51f5-e28f-4351-9474-0c2a4b23b95c" ], + "x-ms-request-id": [ "a283291c-8564-4f0b-837f-24ec1309d04e" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f29b711a-a377-4ac0-a058-14af36d79b1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115405Z:f29b711a-a377-4ac0-a058-14af36d79b1c" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 234B7EAB75644132967CCF2E5E46215C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7204" ], + "Content-Length": [ "8488" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:53:34.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "a4c55811-aaeb-4b95-b02b-05117a6ec783" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10408,40 +6802,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82d16d94-4789-4b96-8d00-1c15714d8427" ], + "x-ms-request-id": [ "af4191d7-faea-47d9-968b-dfa19fe26302" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbb81df8-cd63-4211-886e-83c00a76e577" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "893c5633-0643-4d57-b4ce-9ab544a9320b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115405Z:893c5633-0643-4d57-b4ce-9ab544a9320b" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: AD9A266E39574ACFA352A3C4155F734D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1236" ], + "Content-Length": [ "1119" ], "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\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "2f6ebfa2-7966-44c4-bf7c-0069e7ec073d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10453,40 +6847,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0db4fb56-b471-4827-996c-e56930b0b6f5" ], + "x-ms-request-id": [ "3940108e-1631-4982-9433-abb649f0e58d" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1b7e170-e811-46c6-9c37-0066cf7329bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e15ff54b-1156-4726-b9ec-697230dc06b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115406Z:e15ff54b-1156-4726-b9ec-697230dc06b7" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 2FA396C2092B4CF3890F11EF54DC03C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4088" ], + "Content-Length": [ "4191" ], "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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+17": { "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", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-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" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "40ff1854-1a85-4dfe-847f-3a964bb85cca" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10497,39 +6892,44 @@ "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-ms-request-id": [ "a398d2eb-8d4b-4c26-bd25-1b040d32b6cf" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a5e1884a-addc-49f2-9999-a497c49cb1b6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b5e8e222-e338-4016-9789-88cc1372f3e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115406Z:b5e8e222-e338-4016-9789-88cc1372f3e2" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 733C068FFE2440B19703C17BC328832D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:05 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "1119" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+18": { "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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "d38fced2-2bfb-4e48-9775-bb225e0c176a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -10537,41 +6937,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CAF954F7AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd12e503-c19b-4a16-bcd2-bccfe190aa75" ], + "x-ms-request-id": [ "85a06ad4-43ad-40bd-8863-2a2ef9c6759c" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "66322a3e-e889-42c9-85c2-277743556d96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115406Z:66322a3e-e889-42c9-85c2-277743556d96" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: D412F701DBF04010B2FD4BDB04C52C88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "8488" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:53:34.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+19": { "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?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" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "5d65563b-9afb-41eb-984b-8baa9a92ed90" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10583,40 +6984,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "077c39e6-32bd-4ac7-8f72-17129321ed1d" ], + "x-ms-request-id": [ "b89445d7-7c89-4a59-881b-090c92c7bb53" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d12be71-f589-4d60-a156-1a85004dd8d8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3f947746-b26e-4ed0-b03e-d0fc70b4a24d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115407Z:3f947746-b26e-4ed0-b03e-d0fc70b4a24d" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: F10371B8C74A4001B0204680452AD734 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:06Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1119" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", "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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?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" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "79a3c0da-9593-4662-8d08-16e450cb3c26" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10628,40 +7029,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7c48ea0-aca5-46bb-b0c1-b5f7fd53ffbe" ], + "x-ms-request-id": [ "1e559b4e-f24b-4349-a715-5cc0ed38d124" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5631dccb-6136-4367-8f20-3d0f0c7cbc38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "94ce6b0a-97e0-400f-aa9c-d9389d6cd226" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115407Z:94ce6b0a-97e0-400f-aa9c-d9389d6cd226" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 6F822E860F9B42649EA6AE566C485BB1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:07Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "4191" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 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": { + "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-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/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-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" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "108afc12-7fb1-4ed1-b579-2ea3e6ea32c5" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10672,44 +7074,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CAF954F7AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70e9821e-c690-46c9-8def-ed41fae1abd2" ], + "x-ms-request-id": [ "d8dc0a8f-5147-4b48-a560-88b8047284d2" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33c062c8-7cc7-410d-be32-3c8534315f3b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f4cc6d75-5c02-4ec2-ae42-80c358aca52e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115416Z:f4cc6d75-5c02-4ec2-ae42-80c358aca52e" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 6971F9A77A6D4411A2D660DDD086A7BE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:07Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "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": 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-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+5": { + "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": "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, + "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-pxi52b0hul\",\r\n \"type\": \"Site\"\r\n}", "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "62" ] } }, "Response": { @@ -10718,40 +7116,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93779178-1fa3-49ba-8252-282895a8eaf6" ], + "x-ms-request-id": [ "96ad524a-d6a6-4c56-a2cb-d8f45365a0d8" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/170f8d3d-e2ef-4578-ac81-785f92ea02e0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "893d21c7-3ead-41e9-80fd-faa51ed46d6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115417Z:893d21c7-3ead-41e9-80fd-faa51ed46d6f" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 91336EC5FD364331AF2042AB85CF67AC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:16Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "47" ], "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": "{\"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/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 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/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/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-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" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "15666eff-f5df-433c-b2ed-32dd4a8f26cf" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10763,40 +7162,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b8596bc-5ff6-4ad5-b8a1-8bbe11459fc8" ], + "x-ms-request-id": [ "50a3e991-d56d-49bd-9263-745f5986737f" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4a3a2c68-c543-4e76-af85-b45bbcc3c9ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b11d9822-edff-45ba-8f45-cc6dcc5e57c2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115417Z:b11d9822-edff-45ba-8f45-cc6dcc5e57c2" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 9179E3493571463BA996821C85A79A39 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "37704" ], "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": "{\"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 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": { + "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": [ "382" ], - "x-ms-client-request-id": [ "93715357-d9c4-4673-b28b-464e7a65c31b" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "9e893c63-0588-4a08-91bb-8c350beaa7de" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10807,39 +7207,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e4b5a5fc-c2af-4501-a5a7-0db2b5fba589" ], + "x-ms-original-request-ids": [ "15b8bbdb-7618-406d-9973-bc95d877f88d", "9b696c76-c7ef-4d49-a32f-ad72b6bbdecc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "d30e3f46-3309-4ef1-a7f8-1d563df76145" ], + "x-ms-correlation-request-id": [ "d30e3f46-3309-4ef1-a7f8-1d563df76145" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115418Z:d30e3f46-3309-4ef1-a7f8-1d563df76145" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 42A26429285C467AB6C7E39B8D0F80E8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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": { + "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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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" ], + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "4e0bd0be-0db9-4c56-8ef0-610506e0d4d7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10850,31 +7251,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2e29e769-b06a-480c-8abe-b3cbc01e92ec" ], + "x-ms-request-id": [ "0c46d4d0-29d0-4c70-ad2a-a5d2a8d9dccd" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9f06cbf-e630-44a1-9beb-3dc1a9335ca7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0a713e20-4b76-4b11-9f42-057786914a5f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115418Z:0a713e20-4b76-4b11-9f42-057786914a5f" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 0144C641462F4189B266F6BAF7447560 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:18 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\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"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": { + "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-cjes6i/providers/Microsoft.Insights/components/Functions-Java-pxi52b0hul?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-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}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Insights/components/Functions-Java-pxi52b0hul?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": { }, @@ -10893,35 +7294,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": [ "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c90780f-8e5f-43c5-a409-cf5c88ee1e11" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "3e10c81f-6de7-4679-bb28-bf111d3eaab6" ], + "x-ms-correlation-request-id": [ "3e10c81f-6de7-4679-bb28-bf111d3eaab6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115425Z:3e10c81f-6de7-4679-bb28-bf111d3eaab6" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 814F83696B8E422EA7429FD25432F734 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1411" ], + "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-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}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7206d49f-0000-0300-0000-691475710000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Java-pxi52b0hul\",\r\n \"name\": \"Functions-Java-pxi52b0hul\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-pxi52b0hul\",\r\n \"AppId\": \"ec32f43d-e585-4348-9f48-b7426ac14ba7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"391f0399-d4c9-408d-9ee9-e4a7e7611b1f\",\r\n \"ConnectionString\": \"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\",\r\n \"Name\": \"Functions-Java-pxi52b0hul\",\r\n \"CreationDate\": \"2025-11-12T11:54:19.3903837+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-pxi52b0hul_ec32f43d-e585-4348-9f48-b7426ac14ba7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-pxi52b0hul-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 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": { + "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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/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}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-pxi52b0hul\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"\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": { @@ -10929,43 +7331,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377FB44D10B\"" ], + "ETag": [ "\"1DC53CB18FCE90B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4271655f-aa86-4573-a80b-1fa828f557fc" ], + "x-ms-request-id": [ "3085713e-9d2e-4e18-8c21-73eeeb7446be" ], "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/fa614777-6209-46f9-a5e5-b348d79e27c0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "e98d0e3d-71ae-4d2b-9b23-a7061d1b380d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115446Z:e98d0e3d-71ae-4d2b-9b23-a7061d1b380d" ], "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: 8D31ED0196834C259027C8D799027A56 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:54:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7568" ], + "Content-Length": [ "8725" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:26.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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": [ "624" ], + "x-ms-client-request-id": [ "076f4caa-95cd-4617-88fa-a43cc46372de" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -10975,42 +7377,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC53CB242BF7C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dfd7cd34-2c41-4808-bac8-f08b5ec92385" ], + "x-ms-request-id": [ "b7b8c481-183c-4abb-8442-1518f4b927dc" ], "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": [ "770c241d-411d-478f-b3e2-6b16954b91c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115517Z:770c241d-411d-478f-b3e2-6b16954b91c1" ], "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: 74DC459E554B445E86010C35F0F5C46F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7369" ], + "Content-Length": [ "8709" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:46.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\":\"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-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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": [ "625" ], + "x-ms-client-request-id": [ "e7187430-8f99-477f-8b45-5598bade812c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11021,42 +7423,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC53CB242BF7C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4922aa1e-f34a-4dbb-a77c-6c28575a1812" ], + "x-ms-request-id": [ "7e077c58-fff6-4439-8b0f-ea7608bc02b6" ], "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": [ "8fb1bca5-5136-4dc3-88ce-4adeb467325d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115517Z:8fb1bca5-5136-4dc3-88ce-4adeb467325d" ], "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: 9FE8885D1485409885FD7A24FD270747 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7369" ], + "Content-Length": [ "8709" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:46.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\":\"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-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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": [ "626" ], + "x-ms-client-request-id": [ "ac123c60-aec6-4ba3-bd2f-b1276ae6ea32" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11068,40 +7470,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": [ "d1a7a451-20e0-4d21-afad-d7ae6d9f7f3a" ], "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/556d7955-4b20-4e46-b085-5126273682bd" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4db0e189-0884-4687-be8b-9d7ff14e4b54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115517Z:4db0e189-0884-4687-be8b-9d7ff14e4b54" ], "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: 624357481C2047EF9AAE78363B43FB99 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:17Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:17 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-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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-pxi52b0hul\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"}}", "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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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": [ "627" ], + "x-ms-client-request-id": [ "4a31ee22-105f-40d0-9886-11f3caf219d7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11113,40 +7515,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": [ "38d167c0-3d9c-4ddb-96d2-0dc0f1673714" ], "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/c2987be4-b870-4789-9bef-db88c9693592" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b260e870-0117-49f9-bd37-707a1ef6040b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115518Z:b260e870-0117-49f9-bd37-707a1ef6040b" ], "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: D6C1A3732FD0485782FE16531891E755 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4078" ], + "Content-Length": [ "4180" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/web\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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": [ "628" ], + "x-ms-client-request-id": [ "1189ec1b-52a4-4bf2-b00b-f41a68c9650f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11158,40 +7561,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": [ "44a40fd2-5ddd-4785-9413-aa1122f0e454" ], "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/5bd82b37-ed08-4a26-a792-e5b6146d2f14" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9929a54a-fa5e-4acb-b94c-6a082c312fd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115518Z:9929a54a-fa5e-4acb-b94c-6a082c312fd0" ], "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: 2A0A53F1E6A84A458B512A1192B096FF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:17 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-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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-pxi52b0hul\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"}}", "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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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": [ "629" ], + "x-ms-client-request-id": [ "0ff40e6e-0650-4585-a760-b702e30debd5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11202,42 +7605,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC53CB242BF7C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c6afcb9-562d-4ac1-bfe8-11f707cf07e6" ], + "x-ms-request-id": [ "501a3b7e-ec61-42f6-98cc-8b112f4804e9" ], "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": [ "c1be90f9-8f27-4847-a37f-a847553d219f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115518Z:c1be90f9-8f27-4847-a37f-a847553d219f" ], "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: 95838F30C7764EADA7A799DD5A78016A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:18Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7369" ], + "Content-Length": [ "8709" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:46.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\":\"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-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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": [ "630" ], + "x-ms-client-request-id": [ "0453759c-3629-4ab0-b2dc-303fe1926c5d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11249,40 +7652,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": [ "1194ba97-7314-46fc-a0c6-a5cf40e7eb35" ], "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/76a34d78-f4c5-4b2b-94bb-42e2cdb0c941" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c15f2961-a97d-48f2-91ba-afc254732b96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115519Z:c15f2961-a97d-48f2-91ba-afc254732b96" ], "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: A1B6EF39ACB74EBB96BE05D5E34B11F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55: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-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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-pxi52b0hul\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"}}", "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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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": [ "631" ], + "x-ms-client-request-id": [ "ecc6c12a-c8a0-4b4e-b66b-2b5fd781dabb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11294,40 +7697,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": [ "c28f7a72-65e0-4ce2-8047-24674ea2439c" ], "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/618fd597-f488-43e3-811d-e12983fb1085" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5b6db308-cf51-48b6-9c11-b205e98ca8d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115519Z:5b6db308-cf51-48b6-9c11-b205e98ca8d7" ], "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: 2A712481F15A44B3865E73F5CD20E5E8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4078" ], + "Content-Length": [ "4180" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/web\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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": [ "632" ], + "x-ms-client-request-id": [ "d313299f-26c5-4bc2-adf9-6d75de98a98d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11338,19 +7742,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC53CB242BF7C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f360b52-3ac0-47cb-ab07-d714172d05e9" ], + "x-ms-request-id": [ "5dd404f9-d8d2-4447-a5db-b67c27bb6293" ], "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/9662e5ec-425f-475e-b21d-022d2630855a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "81805e3e-1d62-41c3-8131-6f00522e6953" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115526Z:81805e3e-1d62-41c3-8131-6f00522e6953" ], "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: D5AF5E4C299440F6B25386911FC57603 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:19Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11360,17 +7765,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 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-Python-iyf85pjd9l\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-qb4h0d3z2x\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] + "Content-Length": [ "62" ] } }, "Response": { @@ -11379,17 +7784,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": [ "ead5d360-7fcb-46da-b709-5b40fd2dc5e4" ], "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/15699eee-acfa-4ac9-ad43-ac7597f41607" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "565b8d05-acc8-48cb-882c-a3e18f75be04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115527Z:565b8d05-acc8-48cb-882c-a3e18f75be04" ], "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: AC857CDEA2A24C1BBD6B3FF1A812A7E4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11400,19 +7806,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 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/serverfarms?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": [ "396" ], - "x-ms-client-request-id": [ "7121c54f-8d12-4d49-aa3a-1b20d2bfbdc3" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "e4e40ec5-fb00-4ee7-9646-bd0f6e2ebfb5" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11424,40 +7830,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f2aa67a-e6a5-4653-8a60-26cc9357d2dc" ], + "x-ms-request-id": [ "87b9c0b2-0537-455d-adc4-0c5225ea67e7" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ab527900-1f24-4c93-814a-441eea50d011" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ddc6054b-8d51-49f7-b397-096191534cdd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115527Z:ddc6054b-8d51-49f7-b397-096191534cdd" ], "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: D72BC51734CE42E388E964AF3C3E3BD4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "37704" ], "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": "{\"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 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 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/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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "397" ], - "x-ms-client-request-id": [ "61ba2964-9ffc-4ae6-ab32-2127c3f8e749" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "530d3bfd-d5e8-4378-93ac-0dda0aed65eb" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11468,41 +7875,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "bbd620c0-f56f-48c4-abf2-c3d8433749d2", "7fce4e04-6d3e-4fcc-9457-22076c639aa0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "d6dded7b-c6d5-452d-b0b7-54d938abcc99" ], + "x-ms-correlation-request-id": [ "d6dded7b-c6d5-452d-b0b7-54d938abcc99" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115528Z:d6dded7b-c6d5-452d-b0b7-54d938abcc99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdc2ef3e-737f-4c08-a8de-8e3e6ce30cce" ], - "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-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: BBF41935AC4D492ABA7A62B54B09F4EC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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.+$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 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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-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", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "01b843a5-d551-43d8-9fb5-5f78b4cbf606" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "ca1ef50a-860c-4f72-9709-117629673760" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11513,44 +7919,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "95f6276a-b172-4df4-aae5-2d15c29867ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "963dce27-8f93-4c89-9c8f-6c34103bd40c" ], - "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8a3fa15a-a4b7-45af-b20b-ab7bba9408b5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "afdd996c-20a2-4eb2-99cb-8b879db50347" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115528Z:afdd996c-20a2-4eb2-99cb-8b879db50347" ], "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: 7774FF3E51A3427B8B7E992CC191773C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "288" ], "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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"permissions\":\"FULL\"}]}", "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 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-cjes6i/providers/Microsoft.Insights/components/Functions-Node-qb4h0d3z2x?api-version=2015-05-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, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Insights/components/Functions-Node-qb4h0d3z2x?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": [ "399" ], - "x-ms-client-request-id": [ "70fc8b83-d897-4f60-9515-92439908cccd" ], - "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": [ "116" ] } }, "Response": { @@ -11558,44 +7957,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": [ "ed069449-fd3b-40dc-b861-4a678ce37266" ], - "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-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/da0aff3c-048c-4451-9d24-2fe642c5c335" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "56e2e407-5b59-4cf6-9ce5-4e05b27f969c" ], + "x-ms-correlation-request-id": [ "56e2e407-5b59-4cf6-9ce5-4e05b27f969c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115533Z:56e2e407-5b59-4cf6-9ce5-4e05b27f969c" ], "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: F4C0DDF828D749B9854E22BCE263F23E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:28Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:32 GMT" ] }, - "ContentHeaders": { - "Content-Length": [ "1634" ], - "Content-Type": [ "application/json" ], + "ContentHeaders": { + "Content-Length": [ "1626" ], + "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": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"720651b1-0000-0300-0000-691475b50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Node-qb4h0d3z2x\",\r\n \"name\": \"Functions-Node-qb4h0d3z2x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-qb4h0d3z2x\",\r\n \"AppId\": \"eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0f83d0db-c8a1-4f7e-8398-8cbda33e68e9\",\r\n \"ConnectionString\": \"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\r\n \"Name\": \"Functions-Node-qb4h0d3z2x\",\r\n \"CreationDate\": \"2025-11-12T11:55:28.9646342+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-qb4h0d3z2x_eb0309fc-c8ce-4195-9fc9-a0e6050cac3f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-qb4h0d3z2x-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.+$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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-qb4h0d3z2x\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "400" ], - "x-ms-client-request-id": [ "ffeaa87b-7284-4efa-9441-5a2e31c182eb" ], - "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": [ "1609" ] } }, "Response": { @@ -11603,42 +7999,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CB415C3260\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59031584-d2cb-45b5-9d32-4f3775c6a977" ], + "x-ms-request-id": [ "adf6dd31-2430-48f1-bd6b-9229f48b24d1" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/861e756d-62dc-40cc-9a9d-2e20e5af3e80" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "5f3cf370-c0ec-4ce5-91d8-33c6194c759c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115554Z:5f3cf370-c0ec-4ce5-91d8-33c6194c759c" ], "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: FECE0D0AB178472AB72AD781F5E3840D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:33Z" ], + "Date": [ "Wed, 12 Nov 2025 11:55:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "8731" ], "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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:34.7433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "401" ], - "x-ms-client-request-id": [ "ac9c98ab-62a4-4af0-9737-4082a9117475" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "4ecec616-d4b5-4543-8612-29076f3d7a21" ], + "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" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -11648,39 +8045,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eaed091d-89f0-41ba-a5f3-59bac528cc79" ], + "ETag": [ "\"1DC53CB4C745DB5\"" ], "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-request-id": [ "918b48bf-2392-4562-83f6-a4f8a3de6bae" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0d645239-cafc-4353-a405-ad4a24bd0511" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115624Z:0d645239-cafc-4353-a405-ad4a24bd0511" ], "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: 7A624717770C4E8F87E8C7264D30758C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "8714" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:54.0433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "402" ], - "x-ms-client-request-id": [ "2eb92ac5-ce62-4585-a4b3-4fe76cf38062" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "16365849-7bbb-4caa-856c-5cd72c65181f" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11691,37 +8091,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3c98c34f-21ff-4337-acd3-b6f74923ce0a" ], + "ETag": [ "\"1DC53CB4C745DB5\"" ], "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-request-id": [ "1f838f10-8ff9-487f-804f-cb052dc03b99" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7553c106-9c58-4724-8002-0134dbc8a5bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115625Z:7553c106-9c58-4724-8002-0134dbc8a5bf" ], "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: 2A80E701D205404793CCA51A438B944C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "8714" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:54.0433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?api-version=2023-12-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", - "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "edb76c39-7c7b-4a7f-a71c-07776497b670" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -11729,40 +8137,44 @@ "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-ms-request-id": [ "50a5a275-4f86-4c81-a86c-ba96240a385b" ], + "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-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/49828203-86e0-4695-9c05-f98d63a912d2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2965efa2-da22-4fe1-bc82-821822ac7716" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115625Z:2965efa2-da22-4fe1-bc82-821822ac7716" ], + "X-Content-Type-Options": [ "nosniff" ], "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: 3CE0DFE2BA304E5C8F0AA06D86C0A4AE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1377" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1207" ], + "Content-Type": [ "application/json" ], "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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-qb4h0d3z2x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"}}", "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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web?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.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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "72500864-e5b4-4cbd-837b-d2c8e8bc9d1d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1884" ] } }, "Response": { @@ -11770,43 +8182,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37827D756CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b21ff838-d920-4e61-b4ac-466b2278d131" ], + "x-ms-request-id": [ "867db684-67da-4b5a-8780-8830f7613b12" ], "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/18814004-d5eb-4713-bbe2-7d2ef0f855f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d4dc7f55-3a9f-4c1e-ab42-7e1bc8bedb08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115625Z:d4dc7f55-3a9f-4c1e-ab42-7e1bc8bedb08" ], "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: 598329C44E8E48F78CA41D11BFFBA602 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7572" ], + "Content-Length": [ "4180" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?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", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?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" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "b5146ff9-cceb-4778-a0ad-8c3816dc938c" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -11816,42 +8228,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "142f64d5-4e60-4b21-84ad-2bdb3f62ebf9" ], + "x-ms-request-id": [ "7ed55be1-246e-4de3-877a-56fc9f91dfdc" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e615c32-a47c-4dbc-91b0-41c52487fd74" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "646e317e-65b2-442a-9d01-ee36eb43681e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115626Z:646e317e-65b2-442a-9d01-ee36eb43681e" ], "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: 70C78AB3F7EC49BCA81F28473FBBC09D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7373" ], + "Content-Length": [ "1207" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-qb4h0d3z2x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"}}", "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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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": [ "644" ], + "x-ms-client-request-id": [ "12530b82-b97b-4579-a352-2a9b38c30bda" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11862,42 +8273,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], + "ETag": [ "\"1DC53CB4C745DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f677106e-2722-40cf-bdb6-a985ef2c4727" ], + "x-ms-request-id": [ "963d07c8-3e9b-4982-a9a8-61328c06e3f9" ], "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": [ "5c11649a-9403-425c-b986-f0d5cc8ca03f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115626Z:5c11649a-9403-425c-b986-f0d5cc8ca03f" ], "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: 72AC45879C684103B0AF59602A822F41 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7373" ], + "Content-Length": [ "8714" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:54.0433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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": [ "645" ], + "x-ms-client-request-id": [ "b935207e-2c5b-415e-9a5e-a8ea44899a5a" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11909,40 +8320,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": [ "9c5bd24a-2961-497f-b27f-0ba4881a116c" ], "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/374b265c-80a3-43da-8318-e2498c9bf257" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e0ed0561-584e-4401-b99c-4ae337b4627a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115626Z:e0ed0561-584e-4401-b99c-4ae337b4627a" ], "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: 14F4D0CA5FC446D28C9DB3045443C459 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1207" ], "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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-qb4h0d3z2x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"}}", "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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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": [ "646" ], + "x-ms-client-request-id": [ "ba819d12-1cbe-4777-ab6d-39768a5729e0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11954,40 +8365,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": [ "3043524a-e23d-4d7b-9758-9fd3ce6e9462" ], "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/5eb7cadb-1165-4cf1-94d3-7a67f3b1759b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ac3f0031-d20b-40b3-9d05-c3ee652b1a5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115627Z:ac3f0031-d20b-40b3-9d05-c3ee652b1a5d" ], "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: 1FEF295B10C74C28A645D91911C83C5F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4180" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?deleteEmptyServerFarm=False\u0026api-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", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "409" ], - "x-ms-client-request-id": [ "9aba4d22-b985-48a6-aed3-09fa83763a6f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "4fccf6a1-8369-4c80-8733-467106b4c183" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11998,44 +8410,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CB4C745DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b941a94a-31ae-4e1d-8437-1703708ea711" ], + "x-ms-request-id": [ "be588f7d-a2a9-4cf0-8a41-de535da2598d" ], "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/2feae33c-57b3-40e4-b1eb-4d316ffa2377" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "e3ad8bf4-178b-420b-8e62-91414a8f5236" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115638Z:e3ad8bf4-178b-420b-8e62-91414a8f5236" ], "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: 097D914AE452433F8AF0D3B65D697635 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "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": 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+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-DotNet-Isolated5ivf3pq4d9\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "410" ], - "x-ms-client-request-id": [ "e9628816-59ba-49b9-ae75-d25a27573c62" ], - "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -12043,42 +8451,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf1148f3-f01f-4e9a-b5dc-7a4d731213ea" ], + "x-ms-request-id": [ "779c4262-ccd3-44fb-aab0-cec2862c63e9" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54d73844-1ab5-48d3-9769-0d7d27ad6512" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c900f9c7-1e97-4f5b-b641-e93145086dbd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115638Z:c900f9c7-1e97-4f5b-b641-e93145086dbd" ], "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: 62D7AD8F7EF949E98026EA591831CC40 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7373" ], + "Content-Length": [ "47" ], "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": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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.+$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/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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": [ "411" ], - "x-ms-client-request-id": [ "0b4a98c2-4c47-48d9-b2de-65fc827d8c30" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "0bb5cb59-1b5b-42b1-9ec0-a353f4158864" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12089,41 +8497,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b5bb91fa-815c-4cdf-8a5a-a688b29577d5", "f5ae157c-7fd9-4b73-b455-255cf9c217b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], + "x-ms-request-id": [ "1d5c60cf-16cf-4e48-a209-95fbba7807d4" ], + "x-ms-correlation-request-id": [ "1d5c60cf-16cf-4e48-a209-95fbba7807d4" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115644Z:1d5c60cf-16cf-4e48-a209-95fbba7807d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb37aac8-8fb0-4b55-aa96-edd262d87625" ], - "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-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: B9CE1FE33BB84576A84482530B0EDBF1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:38Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "13768" ], + "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/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": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 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-Linux-Consumption-cjes6i/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-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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "650" ], + "x-ms-client-request-id": [ "81978652-d268-46e6-a73a-e6222d49ee26" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12135,40 +8542,40 @@ "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": [ "6201bade-39c4-488e-bddd-97e8295738b1" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f1f92a66-2388-48d8-8b70-aac2f9ce74d9" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115644Z:f1f92a66-2388-48d8-8b70-aac2f9ce74d9" ], "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: 291046CB4DBB4066BBA0E5674F0BE54D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:44Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "1819" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux 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.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "23eb3f8d-0154-44aa-8b7b-8361e262d3ba" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "651" ], + "x-ms-client-request-id": [ "452ec834-3e9c-4b93-9db0-11bf7aec6a3c" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12179,39 +8586,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6659c02d-be14-440e-99ae-803342cd6289" ], + "x-ms-request-id": [ "671940f3-8522-400f-9808-07e024c08da8" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "26c6c3bf-8ad3-4974-97ce-0096c75d2600" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115645Z:26c6c3bf-8ad3-4974-97ce-0096c75d2600" ], "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: 1C6049547A134B65BB6D00FEFDDA1C45 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:44Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "1782" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows 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 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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-Java-k0vbul5y8x\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "652" ], + "x-ms-client-request-id": [ "d984591c-f17d-4793-baaa-b9c96ad1edb7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "62" ] } }, "Response": { @@ -12220,40 +8632,40 @@ "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": [ "8c13dc17-b6bf-4b8d-8036-3f66ce110208" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4f6b0a68-56b1-47ba-8814-b9b06c50cdc1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115645Z:4f6b0a68-56b1-47ba-8814-b9b06c50cdc1" ], "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: 8C1FA59D9F5745C3BF52CAD787EF1BBF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows 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 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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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": [ "653" ], + "x-ms-client-request-id": [ "fa59bd01-fafc-4220-9844-8d8fd882d0a5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12265,40 +8677,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39df162d-5727-468c-9d39-e7748f2c91d4" ], + "x-ms-request-id": [ "a7cd7dba-99f9-4b1b-b1c5-62486cb02b7c" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d975130c-bb3b-4e59-9b4a-ad01d129db19" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115645Z:d975130c-bb3b-4e59-9b4a-ad01d129db19" ], "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: D79F23CC4DB54AA7B2892CB9AF5072D6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1735" ], "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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows 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 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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "654" ], + "x-ms-client-request-id": [ "e36ee9f4-742c-4790-8ee0-477732140cb6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12310,40 +8722,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": [ "6b24bde3-f726-4d4d-b17c-178faee8dea4" ], "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": [ "073c7c55-0825-441e-96cb-309c99547f37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115646Z:073c7c55-0825-441e-96cb-309c99547f37" ], "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: BA5B2B0A16CB4D6C971C2FBBF1969753 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:45Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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 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 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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "655" ], + "x-ms-client-request-id": [ "9b273881-531f-468f-8024-b008b6685f2d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12355,40 +8767,40 @@ "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": [ "a0d2723b-25e7-4e48-a8b3-7e0014937cc3" ], "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": [ "e8c926fe-9ad8-4967-baa4-c9d72d675bcb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115646Z:e8c926fe-9ad8-4967-baa4-c9d72d675bcb" ], "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: ED53B84EF2E846A18EEAEC82DC2CC807 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:46Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1826" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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 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 DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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": [ "656" ], + "x-ms-client-request-id": [ "bc9b648b-8c1b-4252-9b9f-149bc8c1f42d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12400,40 +8812,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": [ "91714992-3878-4f37-a49d-d6e050a8998c" ], "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": [ "d246c669-c0b5-490a-90d4-358835b5f874" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115647Z:d246c669-c0b5-490a-90d4-358835b5f874" ], "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: DF282898A14141BC9B2A47DC0D73EBDE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:46Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows 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 DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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": [ "657" ], + "x-ms-client-request-id": [ "0fd19c81-3e11-4888-8a0e-e994e815fd28" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12445,40 +8857,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": [ "84c6879d-3f31-4925-88eb-4bc3b240a5c9" ], "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": [ "0e103313-11a3-4d3a-876b-027ba7c8dd47" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115647Z:0e103313-11a3-4d3a-876b-027ba7c8dd47" ], "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: 76700D0AEADB478792C4B8183E08F788 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1701" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows 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 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+11": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "62df0ca7-3c68-4170-9653-38aec806c569" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "0192f755-2693-4d4f-a70d-27b5aa412657" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12489,39 +8901,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f89b718-a556-464a-9d11-37f0b386ad52" ], + "x-ms-original-request-ids": [ "d305bcd6-3146-4b2e-9122-25ddc014772d", "24c70f86-ba5c-4d22-bcd1-c6327d4bf938" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "a9b32a03-206f-4b41-9566-e42572fb10aa" ], + "x-ms-correlation-request-id": [ "a9b32a03-206f-4b41-9566-e42572fb10aa" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115649Z:a9b32a03-206f-4b41-9566-e42572fb10aa" ], "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-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: 306C33E1A6FE4F089959E861D1FA18A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:47Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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 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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "659" ], + "x-ms-client-request-id": [ "27aa192d-43a4-48ba-8e06-77f6b6cc8e57" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12532,30 +8945,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2fee91a5-e7e6-4aba-a0a2-227bbd9d3af6" ], + "x-ms-request-id": [ "691eb232-31cd-4802-b44c-1dc3e94e2342" ], "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/50c77ee7-2037-4786-a0a6-d7c1efd0f6d8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d80d47af-3f15-488e-a698-dfe7930f78da" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115649Z:d80d47af-3f15-488e-a698-dfe7930f78da" ], "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: 3DACF9B74BBF47C7AB7A6A0F916E04C3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56: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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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 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-lf9t8w/providers/Microsoft.Insights/components/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Insights/components/Functions-DotNet-Isolated5ivf3pq4d9?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,35 +8988,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": [ "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/d50a6a73-b590-412d-8705-83f6d773665f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "60188977-fd0a-4d70-ad62-488fdb9375be" ], + "x-ms-correlation-request-id": [ "60188977-fd0a-4d70-ad62-488fdb9375be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115655Z:60188977-fd0a-4d70-ad62-488fdb9375be" ], "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: 2174E1EBD4414C87B0A364A88A58A975 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:49Z" ], + "Date": [ "Wed, 12 Nov 2025 11:56:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1371" ], + "Content-Length": [ "1683" ], "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\": \"\\\"72069dc6-0000-0300-0000-691476070000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"name\": \"Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"AppId\": \"58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6d43c560-5f34-4318-87ba-95d3aa047695\",\r\n \"ConnectionString\": \"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\r\n \"Name\": \"Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"CreationDate\": \"2025-11-12T11:56:50.257685+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-isolated5ivf3pq4d9_58148da6-f1bc-4e01-b683-6b3ee1fe827e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated5ivf3pq4d9-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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated5ivf3pq4d9\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"\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": { @@ -12611,43 +9025,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3785361E26B\"" ], + "ETag": [ "\"1DC53CB72ABCB00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df25a60c-fb54-4013-819f-a756d46e09c0" ], + "x-ms-request-id": [ "dade6685-a1fd-47a8-9f6e-12ca3736ae7b" ], "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/f85edfec-8fad-4eb7-930a-ed5a5c651173" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "e9df8abc-585a-4fcb-ae4a-445596d6953c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115737Z:e9df8abc-585a-4fcb-ae4a-445596d6953c" ], "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: 48DCD82DF3D6453FBCD9BC7729D26CAB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:55Z" ], + "Date": [ "Wed, 12 Nov 2025 11:57:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7433" ], + "Content-Length": [ "8509" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:56:57.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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": [ "662" ], + "x-ms-client-request-id": [ "4bbbd61c-a649-4f41-9043-fe99f6636012" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -12657,42 +9071,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC53CB8A232DA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1722f63f-ce95-4656-adf1-aad9fd71b9e5" ], + "x-ms-request-id": [ "427df30a-c3c4-4a74-9d31-d2e09f35a0f0" ], "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": [ "d193d5a2-0dc2-4b9a-96ae-ac9f881aca4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115808Z:d193d5a2-0dc2-4b9a-96ae-ac9f881aca4a" ], "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: 8423C98B448142E3B60EA388C2A4982F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7229" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:57:37.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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": [ "663" ], + "x-ms-client-request-id": [ "d60ae1f9-da61-47a2-b67d-b3b4b6ff4461" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12703,42 +9117,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC53CB8A232DA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5c52571-777d-49d5-beda-0d119d7d74bd" ], + "x-ms-request-id": [ "bb560b67-2210-42c6-8215-02cfa589d38a" ], "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": [ "161b5572-9876-4fea-bda8-17b4d874b29c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115808Z:161b5572-9876-4fea-bda8-17b4d874b29c" ], "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: 62628F0A8C3F4C7C92216149E19CFB1B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7229" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:57:37.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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": [ "664" ], + "x-ms-client-request-id": [ "de395195-0ffb-467f-9f24-a7fdeb2d301d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12750,40 +9164,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": [ "31ecaa95-52ef-41b9-9f31-90797fc80564" ], "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/f8278f76-51d1-497b-b8b6-36cb535eb122" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a9f2feb0-dd95-41fe-b8a2-88064ac73e90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115808Z:a9f2feb0-dd95-41fe-b8a2-88064ac73e90" ], "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: BB8FE605523543A3B5F82D1D513CD3A0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:08Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:08 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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ivf3pq4d9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"}}", "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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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": [ "665" ], + "x-ms-client-request-id": [ "7422bfe0-f4b4-49d6-8892-66a3358b0398" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12795,40 +9209,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": [ "2875a5dc-2f05-4dd6-9014-2e17a48b079d" ], "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/28a578f3-c494-4103-9738-a8ed43aa9ed3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "59c66b71-ccbf-40f7-97e3-57832cd7c902" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115809Z:59c66b71-ccbf-40f7-97e3-57832cd7c902" ], "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: B6D3E993563A43C39C62793149EF670A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4053" ], + "Content-Length": [ "4189" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites/config\",\"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 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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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": [ "666" ], + "x-ms-client-request-id": [ "2f723292-5fce-4481-9f39-de9cf98806e6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12840,40 +9255,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": [ "ea4658c9-5f40-4d2d-9b8a-b948784c0a38" ], "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/e7ea8176-08f6-4a62-8e51-f795d6cb3146" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "38e9756a-6503-4c7f-a09b-84e2c730d11c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115809Z:38e9756a-6503-4c7f-a09b-84e2c730d11c" ], "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: 53BF484395D94464B604F296EF0A7233 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:08 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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ivf3pq4d9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"}}", "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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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": [ "667" ], + "x-ms-client-request-id": [ "9c648dee-86c8-45c9-a30e-b5abf570dac4" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12884,42 +9299,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC53CB8A232DA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc603a46-44bc-49b1-b482-dc97bdeff5e9" ], + "x-ms-request-id": [ "07c15cf8-ca65-43c7-9be6-a3454ee12efc" ], "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": [ "096746ab-6a5e-4d1e-8917-12149ff7d4fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115809Z:096746ab-6a5e-4d1e-8917-12149ff7d4fd" ], "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: 88873B11DAF2432EBBFF29E05047A21A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:09Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7229" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:57:37.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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": [ "668" ], + "x-ms-client-request-id": [ "9ebd26ca-2106-4bbc-9c67-7188391a8827" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12931,40 +9346,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": [ "548c9373-3681-4c55-b996-fd47715befe2" ], "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/c18cdeb9-fdff-4224-8219-f459cbe708ed" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0374ea6c-4d2f-4f87-b94a-96db851b2db9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115810Z:0374ea6c-4d2f-4f87-b94a-96db851b2db9" ], "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: F3F9FE6A73C748518FA4F3BF0F2B569F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:09 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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ivf3pq4d9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"}}", "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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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": [ "669" ], + "x-ms-client-request-id": [ "bf682f2d-82e4-4dfb-9948-f7dfac6ad7dd" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12976,40 +9391,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": [ "c0609cc2-e559-4003-b6d1-596a518b9550" ], "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/b893e40d-3243-49c7-9b59-804a595406cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bc9b12c2-7cac-4b75-87a5-5da278b7433e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115810Z:bc9b12c2-7cac-4b75-87a5-5da278b7433e" ], "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: E05E49D6068746FC866B077BDF446AE1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4053" ], + "Content-Length": [ "4189" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites/config\",\"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 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 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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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": [ "670" ], + "x-ms-client-request-id": [ "88ffaa11-e44b-498c-895a-355add91d70c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13020,19 +9436,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC53CB8A232DA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18c11f83-4b3b-468f-be4f-a0c9d782c8a4" ], + "x-ms-request-id": [ "da876bf1-7122-494f-b3fe-cc05e7887e29" ], "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/8e9c5613-c8fc-45a6-b34b-4205ca77cc0b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "04d58782-1287-4523-8032-8429b7cfa3e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115821Z:04d58782-1287-4523-8032-8429b7cfa3e6" ], "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: 0826E6D3203C4A1492B218C5E2F01AA3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:10Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13046,7 +9463,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-CustomHandlerh7ucdtvris\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13061,17 +9478,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": [ "2c7e0be9-a299-4724-85fb-31b8193a7733" ], "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/5ad3799e-c0ff-48aa-8b08-ebe4a041a935" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "35bd17d7-6db8-44af-8a58-8bcabca87aad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115822Z:35bd17d7-6db8-44af-8a58-8bcabca87aad" ], "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: CD070C63E02E45F68CC1EDDDAB6EA5E5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:21Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13089,12 +9507,56 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "1fa46b99-db83-48b2-8826-71cfab8a7d23" ], + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "1a751723-d74a-4172-ad7e-168f9bdffa22" ], "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c752ff4b-70da-4a2e-a88c-cb7966fc495e", "76e48fd6-ae02-4ffd-a79b-4ee502739e5a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3cff05c7-4688-4b83-a0cf-2f83176d0392" ], + "x-ms-correlation-request-id": [ "3cff05c7-4688-4b83-a0cf-2f83176d0392" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T115823Z:3cff05c7-4688-4b83-a0cf-2f83176d0392" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2DF878532EA844F3B4A6FDB63D5446D1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:22Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "13768" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "35b478e3-703a-440c-a688-55183a5c2db8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13106,40 +9568,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bcef2ba0-c66f-4793-bd8d-90da78310c79" ], + "x-ms-request-id": [ "ae8b428c-ed7a-42ff-b834-f161e7238e55" ], "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-correlation-request-id": [ "b8a14263-7a2e-47e0-83e9-d4771fed49ec" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T115823Z:b8a14263-7a2e-47e0-83e9-d4771fed49ec" ], "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: C669B86ED0E34BC19BDE6D4E81C357CF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:23Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-Windows-Consumption-o1blrw/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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?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": [ "674" ], + "x-ms-client-request-id": [ "73a00ba4-0e8b-46ea-b0e9-06ca48804181" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13151,40 +9613,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": [ "0ac08b15-695d-4c51-bebe-002cb333c88a" ], "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": [ "1d1370cd-6743-4668-b529-0e66204400e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:1d1370cd-6743-4668-b529-0e66204400e6" ], "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: 0A23F2A1188D4AD1BB52611C0EEBFF18 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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": [ "675" ], + "x-ms-client-request-id": [ "fb8ddf6d-07e9-468e-a7b9-4f5426fcefcb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13196,40 +9658,40 @@ "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": [ "973ea5d5-c9f1-46c8-ba32-03ba1848452a" ], "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": [ "350c3a8f-0e21-4ce6-afd8-a33f395227d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:350c3a8f-0e21-4ce6-afd8-a33f395227d8" ], "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: 952EF1A3B3294F26AF790A2D5947AC9A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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/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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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": [ "676" ], + "x-ms-client-request-id": [ "51c9949f-0412-4187-8610-ee1a67e2b27e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13241,40 +9703,85 @@ "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": [ "c2d6ee21-92e4-4663-a993-fe352a046512" ], "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": [ "0deed20c-53a1-4e56-b1e3-f08eae7b5d37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:0deed20c-53a1-4e56-b1e3-f08eae7b5d37" ], "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: 32D6E7CC55AF4875B1EDE20425F4B28E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1735" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "677" ], + "x-ms-client-request-id": [ "af4a50b2-917e-45a2-82a9-099d180634c4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e8c78d5f-c43d-4cbc-9be3-2922f6d7fa19" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ebd850fb-3598-4b93-a45b-1111938bc663" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:ebd850fb-3598-4b93-a45b-1111938bc663" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 32A53024FA6340DFB3F0E51ABD73B8DF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "678" ], + "x-ms-client-request-id": [ "a414cfb7-638b-4ca3-afaf-d941f1d11710" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13286,40 +9793,130 @@ "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": [ "e8a55a1c-ca5e-4586-a7c5-2a28115619d4" ], "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": [ "b1dbc2d7-8f34-4487-a34f-ad685e642d31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115825Z:b1dbc2d7-8f34-4487-a34f-ad685e642d31" ], "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: 4F77212996B044E991133B60649A0FF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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/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/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "a6615935-e5da-4d7f-b8e1-5520d9bccd25" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f4d0e87e-ec51-42d7-85ea-a0994fcb6079" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c03e7ad9-0b7c-4a24-bdb9-1079f9c7105f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115826Z:c03e7ad9-0b7c-4a24-bdb9-1079f9c7105f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C6E59B193AEC4B8CA99703067D266430 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:25Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "4dc283b0-1f56-4791-942c-59f4ccd94484" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2b47402c-3bcc-45cb-a6a4-9d9ab019a686" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "113bce11-3bf3-4699-9880-8099991b7c47" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115826Z:113bce11-3bf3-4699-9880-8099991b7c47" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 34F9D10EC9F0438BA91FE85F20CF79B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1701" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { "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": [ "681" ], + "x-ms-client-request-id": [ "ad0745b0-04db-4570-9925-1550c14e4f70" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13330,39 +9927,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fab4b03c-4ed2-4dca-9e8d-9eee1feaa8bc" ], + "x-ms-original-request-ids": [ "43b4beb9-34a9-4498-a414-561581fd2a49", "7f16c131-2b5e-4868-85a4-ee76e843b03d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "0bb9645b-15f1-4074-a270-0cefee75c8a1" ], + "x-ms-correlation-request-id": [ "0bb9645b-15f1-4074-a270-0cefee75c8a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T115827Z:0bb9645b-15f1-4074-a270-0cefee75c8a1" ], "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-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: B0603D57759D46DE844460EC7DEFA73A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:26Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "682" ], + "x-ms-client-request-id": [ "8722e065-a46b-4635-9ba0-5090b64f95e5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13373,30 +9971,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d5a2f27b-3684-416f-9e21-7d1c57d7eb99" ], + "x-ms-request-id": [ "f6a4893e-c728-475b-973b-1f3194a38fc6" ], "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/e6e38bd0-f84f-4636-8a6e-8c74968b8595" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c1a49cea-8b5b-4709-bdb8-44c8c9d3c4ac" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T115827Z:c1a49cea-8b5b-4709-bdb8-44c8c9d3c4ac" ], "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: 2A886859EBAE43EC84F459FAFD787983 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:26 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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Functions-CustomHandlerh7ucdtvris?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Insights/components/Functions-CustomHandlerh7ucdtvris?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,35 +10014,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": [ "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/7a379dd0-3a54-4168-a877-8eda8e01713a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "5326885b-6683-4df1-8f66-39c4ae65bcae" ], + "x-ms-correlation-request-id": [ "5326885b-6683-4df1-8f66-39c4ae65bcae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115833Z:5326885b-6683-4df1-8f66-39c4ae65bcae" ], "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: 8C0F351F203A4440A02BE5DC650BBABE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:27Z" ], + "Date": [ "Wed, 12 Nov 2025 11:58:33 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\": \"\\\"7206bde0-0000-0300-0000-691476690000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-CustomHandlerh7ucdtvris\",\r\n \"name\": \"Functions-CustomHandlerh7ucdtvris\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlerh7ucdtvris\",\r\n \"AppId\": \"da9cceb4-1628-4015-b256-68f4e8b0a511\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"842eaed2-2241-4893-872c-1c95bd2f5a61\",\r\n \"ConnectionString\": \"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\",\r\n \"Name\": \"Functions-CustomHandlerh7ucdtvris\",\r\n \"CreationDate\": \"2025-11-12T11:58:28.4933694+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-customhandlerh7ucdtvris_da9cceb4-1628-4015-b256-68f4e8b0a511_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerh7ucdtvris-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlerh7ucdtvris\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"\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": { @@ -13452,43 +10051,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37889C400EB\"" ], + "ETag": [ "\"1DC53CBB208E72B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26adbfaf-0c5f-430a-961a-6ae48655e9b1" ], + "x-ms-request-id": [ "f260ccee-499b-42b7-a662-a39f7d10ff62" ], "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/50091875-8ee3-4b0b-8834-fa2b2f24515c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "5bcf1744-2cc5-4c55-9c18-eec44933d09f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T115929Z:5bcf1744-2cc5-4c55-9c18-eec44933d09f" ], "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: 22ED2345AFAD413686C8D5D50AEBC76E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:34Z" ], + "Date": [ "Wed, 12 Nov 2025 11:59:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7545" ], + "Content-Length": [ "8486" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:58:43.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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-CustomHandleresz8ym7unv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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": [ "685" ], + "x-ms-client-request-id": [ "f933367a-72e4-415a-bdb4-4935ab269343" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -13498,42 +10097,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC53CBCCEF31CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6ca20c9-bf0a-42c7-926a-bcf9791469d1" ], + "x-ms-request-id": [ "1a3fdbf2-a0ef-480e-acfe-0caea2a572f7" ], "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": [ "e4f93af8-4034-41fe-9bad-37368bfd05b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120000Z:e4f93af8-4034-41fe-9bad-37368bfd05b4" ], "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: C74432D700A94EE09B6C0EE8B034800C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:00Z" ], + "Date": [ "Wed, 12 Nov 2025 11:59:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7341" ], + "Content-Length": [ "8460" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:59:29.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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": [ "686" ], + "x-ms-client-request-id": [ "13d52244-f7ad-4173-8185-315c6aef982f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13544,42 +10143,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC53CBCCEF31CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32a0998a-ebdb-4ec3-9cef-8e6180d94d46" ], + "x-ms-request-id": [ "1feb67eb-9475-4853-88b1-c3f2a7812536" ], "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": [ "82020060-851e-40d6-bf1d-e5b0b7bceb62" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120002Z:82020060-851e-40d6-bf1d-e5b0b7bceb62" ], "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: CCE4D140DA0347E5B2DF1082DBE555C9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7341" ], + "Content-Length": [ "8460" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:59:29.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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": [ "687" ], + "x-ms-client-request-id": [ "c00f273f-9d44-4d7d-8a6a-80d7e4c052b6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13591,40 +10190,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": [ "90c7b7dc-df5e-4526-adbd-e341f617a94b" ], "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/c0108f5b-02f9-4dda-9b78-11a7133c4ddf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "39857f44-0956-45d7-bc58-953865855810" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120006Z:39857f44-0956-45d7-bc58-953865855810" ], "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: FCB58042313845CBBBD539D5BF0E6AD1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:05 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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerh7ucdtvris\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-CustomHandleresz8ym7unv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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": [ "688" ], + "x-ms-client-request-id": [ "8c53fa65-b422-404d-8511-8ebb39b9845d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13636,40 +10235,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": [ "c1efa635-a0cc-48c8-a4bf-e0bcc6ea6d4d" ], "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/573daf6a-fe71-463d-9115-794bfed34f5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68d5ea00-0b69-4af1-a3c6-7389be4042c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120009Z:68d5ea00-0b69-4af1-a3c6-7389be4042c2" ], "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: CA09BBBD1CB0413BB7D18541E93676EF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:08 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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites/config\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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": [ "689" ], + "x-ms-client-request-id": [ "0209c601-fe73-4b8e-adca-6b33cba1cb7c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13681,40 +10281,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": [ "a81b28b0-36c2-47c2-a617-aed310ab2564" ], "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/542e5c52-31a5-4dba-a11a-4c3eef0350c6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "83f029a7-126a-4f61-ae86-42f136b58b69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120011Z:83f029a7-126a-4f61-ae86-42f136b58b69" ], "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: DCE351B47A9148DBA569BBBF6633B10F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:10 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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerh7ucdtvris\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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": [ "690" ], + "x-ms-client-request-id": [ "a2e28646-a87e-49fe-acd2-b8b35190acf7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13725,42 +10325,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC53CBCCEF31CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9fb5a5ca-922e-458a-ab05-49da11630667" ], + "x-ms-request-id": [ "5c164acf-0424-47c6-92d7-f3f47e03608c" ], "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": [ "b39da265-4a52-459b-87f1-0cc70a713c88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120014Z:b39da265-4a52-459b-87f1-0cc70a713c88" ], "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: 2C84F9A3A72443B3A5AE8114EFF3CD7E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7341" ], + "Content-Length": [ "8460" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:59:29.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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": [ "691" ], + "x-ms-client-request-id": [ "fcf7c37b-e992-419e-937c-6c5d5b4fe5c4" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13772,40 +10372,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": [ "325de87e-c266-4676-a177-2e28f60028f9" ], "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/d6e050be-5bb2-4a0f-891b-d615d1b222a1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c2d4e42c-63c8-4bb7-998c-c25d64be81d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120017Z:c2d4e42c-63c8-4bb7-998c-c25d64be81d6" ], "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: 778C06B75B6947CA9CD311AB9C0DB574 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:16 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-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerh7ucdtvris\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-CustomHandleresz8ym7unv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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": [ "692" ], + "x-ms-client-request-id": [ "85f32ed3-4b6d-4f4c-92b9-7d07cef8f6bc" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13817,40 +10417,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": [ "86c6efa2-e66d-4903-967f-babc790d70b6" ], "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/2caa753e-a137-4a4f-b5e8-abfe38ee2c8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5d93d4f2-f983-426c-95c3-d6325d146ff9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120017Z:5d93d4f2-f983-426c-95c3-d6325d146ff9" ], "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: B930E1A8B37B457DAEB02238A55674B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:16 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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites/config\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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-CustomHandleresz8ym7unv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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": [ "693" ], + "x-ms-client-request-id": [ "2a9ec2f3-d8bb-4692-90a5-e7af12f9dfb3" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13861,19 +10462,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC53CBCCEF31CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0716b13f-0c9f-4914-bae9-1bda36f22dd2" ], + "x-ms-request-id": [ "37410850-29ac-485f-a7f6-93a2abde6251" ], "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/4540d58f-1e7a-4184-bdfe-15e7951214c9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "5d4deeec-0ff5-42b7-b1cf-85228d0a574d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120027Z:5d4deeec-0ff5-42b7-b1cf-85228d0a574d" ], "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: 7527F37B7F47405695C17406B06880B8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13887,7 +10489,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13902,17 +10504,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": [ "ba5150f6-9f2b-4c21-834a-50309ac1a285" ], "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/f0e3fb06-c36f-4334-8702-1959c1631a83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ff3a5f53-fd8b-478d-a19e-ddfc637b9700" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120027Z:ff3a5f53-fd8b-478d-a19e-ddfc637b9700" ], "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: 441D06BCF5194A998A70632147ACBF5F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13927,7 +10530,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13942,17 +10545,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": [ "9804384d-51bb-40f4-8140-23f12436d6a4" ], "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/3b2b5993-0964-4900-8982-f6c3dc2254bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c6122de1-7eab-4584-b694-a4e658f2c030" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120028Z:c6122de1-7eab-4584-b694-a4e658f2c030" ], "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: 709130AB44224BD0B8BCBD78E33A2EFB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:27 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..c145233ac2c9 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": [ "696" ], + "x-ms-client-request-id": [ "c5f309ed-d23d-4188-b08a-f722877ae5c2" ], "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.4", "Az.Functions/1.0.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": [ "351fb77e-aa7b-4925-becb-f3571151a32a" ], "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/2c554dea-7536-4b0a-8200-ef3fa15bc848" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1fb1f77d-cb66-4a6e-8c0f-5e054c22e57b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120028Z:1fb1f77d-cb66-4a6e-8c0f-5e054c22e57b" ], "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: B5CEB70CC76F4F3BAF4211A80319C453 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:28Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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": [ "\"1DC53CBF13E5715\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "442a5ee5-285b-4b54-b58b-c7258d60e64d" ], + "x-ms-request-id": [ "3648c549-f3f5-4ca2-aaaf-10b16740fa34" ], "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/centralus/db9b6de0-6aa5-4bc9-b286-ec7917ece00c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "81a495a1-ba8e-43de-94b0-0293d9abbbbd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120031Z:81a495a1-ba8e-43de-94b0-0293d9abbbbd" ], "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: E0CB53B3F16346E5BF173CAD092D8C44 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:28Z" ], + "Date": [ "Wed, 12 Nov 2025 12:00:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1900" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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": [ "698" ], + "x-ms-client-request-id": [ "85b74f17-c4e8-4e6c-8aec-b81b4ec3eb5a" ], "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.4", "Az.Functions/1.0.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": [ "14eca667-d0b3-4af5-96d0-bfbdd6b3fb82" ], "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": [ "3ff060c8-f2e5-45c3-ad1b-3da198efab3a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120101Z:3ff060c8-f2e5-45c3-ad1b-3da198efab3a" ], "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: DFCF66BA194344B3BF97AA390DD0CB0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1811" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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": [ "699" ], + "x-ms-client-request-id": [ "85b74f17-c4e8-4e6c-8aec-b81b4ec3eb5a" ], "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.4", "Az.Functions/1.0.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": [ "1ea179bf-6e8a-4667-93a4-237666931fee" ], "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": [ "a9b9193b-f3f7-469a-8b8b-56a5b4ea81e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120102Z:a9b9193b-f3f7-469a-8b8b-56a5b4ea81e6" ], "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: 279355A75B024F65BE629659FAF9678A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1811" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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": [ "700" ], + "x-ms-client-request-id": [ "fd311022-9286-4b01-a974-87ce64b6b284" ], "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.4", "Az.Functions/1.0.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": [ "0d946279-9801-4b46-93fa-ef98aab2997a" ], "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": [ "d738977b-e648-47e4-86a4-c08e2da26601" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120102Z:d738977b-e648-47e4-86a4-c08e2da26601" ], "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: 5122EAB3EDD347208C73D51DE5263AEC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1811" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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": [ "701" ], + "x-ms-client-request-id": [ "8876a2e0-2d81-4c12-a47b-e5c00215b793" ], "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.4", "Az.Functions/1.0.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": [ "fc114453-7294-499f-987f-fb3bea13ec23" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a78a8d64-018d-4df5-a2dd-e0060b09f3ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120102Z:a78a8d64-018d-4df5-a2dd-e0060b09f3ca" ], "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: D1F5687ECF0847909790F34F0830C65B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1811" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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": [ "702" ], + "x-ms-client-request-id": [ "7c54b112-9577-40d8-81cd-b47b844043d5" ], "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.4", "Az.Functions/1.0.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": [ "076a41f3-cc26-4d79-b0c6-ff430e091724" ], "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/450526be-bcd8-4ecd-b5b4-cc5abbe38e70" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "088b1cea-a5e8-4a08-89f4-ce94f1b8f1a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120107Z:088b1cea-a5e8-4a08-89f4-ce94f1b8f1a7" ], "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: 42A2ACC546D9465DB0E93512F2878320 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:06 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..c19db14db684 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-wxft49p0i3\",\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": [ "ab352dbc-7642-4cd0-9e3f-2738bc5a1447" ], "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/4014cd94-1ea4-4f81-8818-bc0004c611ba" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68ea2357-d0c7-4f44-8ad6-a2f4a1eb90c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120108Z:68ea2357-d0c7-4f44-8ad6-a2f4a1eb90c5" ], "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: C0560D0496D54D7AB56832BDDA47836A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -39,19 +40,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/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": [ "704" ], + "x-ms-client-request-id": [ "34a04120-e0e4-4138-b2f8-51248573c94f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,41 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "825b7d58-e825-4fca-abfa-b08583973911", "1a5558c0-0247-444a-af49-11e78f2fcb39" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "6247d840-ae48-4ed7-a654-349569f3ee67" ], + "x-ms-correlation-request-id": [ "6247d840-ae48-4ed7-a654-349569f3ee67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120109Z:6247d840-ae48-4ed7-a654-349569f3ee67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80e455f0-9a72-4346-a5f0-3e1bbe52de2c" ], - "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-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: 972AE43877954CEDB20C5C2901391F9D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "15460" ], + "Content-Type": [ "application/json; charset=utf-8" ], "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": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-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-Linux-Consumption-cjes6i/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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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": [ "705" ], + "x-ms-client-request-id": [ "8b7fa491-9c1d-4696-b80a-14706d39d66f" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +108,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25cdd4fc-9463-476e-a187-e4996457adf5" ], + "x-ms-request-id": [ "28f3f27a-e440-4589-8480-7e0b433bb793" ], "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": [ "4fd22817-34a2-4a3b-89d9-885a4c5bc0c4" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T120109Z:4fd22817-34a2-4a3b-89d9-885a4c5bc0c4" ], "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: B436F56B7CAA490FAF1D34E542855AF5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1819" ], "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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-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-Windows-Consumption-o1blrw/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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?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": [ "706" ], + "x-ms-client-request-id": [ "b1e2ab39-85a6-4fd0-9a74-a98bd39692dd" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66ca7fa9-84fb-4f89-8e52-ecc72b3dbe66" ], + "x-ms-request-id": [ "b5db9535-e8c7-4269-a2ff-a1213458fa09" ], "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": [ "17b48962-fb07-4b8e-92ea-65f0e2c4963a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:17b48962-fb07-4b8e-92ea-65f0e2c4963a" ], "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: 8EA641A83ABE442CB902A088F44044EB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1782" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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": [ "707" ], + "x-ms-client-request-id": [ "874d550d-64d2-48a6-9914-e75d712cdf0e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da05ecc2-41c8-43ec-9165-451acf673ed4" ], + "x-ms-request-id": [ "1e00be0d-5e1f-4e6c-9a00-4fbbc6bfdbcd" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3d9f14c3-520b-4c84-8176-f2cf9c83dbaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:3d9f14c3-520b-4c84-8176-f2cf9c83dbaf" ], "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: EB10884650384B2A95D5EB5821DC91A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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": [ "708" ], + "x-ms-client-request-id": [ "bd3fee4f-2036-443e-b933-f258c616a030" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dca1c4c0-fd04-4fe7-9dc1-09abdda568d4" ], + "x-ms-request-id": [ "1d61b7f8-c4e3-4abd-9e53-359502223af7" ], "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": [ "231592ba-a136-4798-9961-d2796401762a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:231592ba-a136-4798-9961-d2796401762a" ], "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: 5D79F2211B6E4274B0FAC0E21FFD0856 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1758" ], "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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "467" ], - "x-ms-client-request-id": [ "719d3d09-a308-4b9e-9ff4-0dd719e8ce4b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "709" ], + "x-ms-client-request-id": [ "3c15c0c9-3f54-43a0-8366-bfc2b65ec404" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,39 +287,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2045a320-3e7d-4c9f-af7c-adc2e2def03a" ], "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-request-id": [ "34c96cf3-25ce-4819-be66-eb1f10590c9c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "246b9cb1-6638-4c59-a67d-350079ceb359" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:246b9cb1-6638-4c59-a67d-350079ceb359" ], "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: 41C64D56C7F34D6C90649DF428921096 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "1735" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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.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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "27d00f97-1b79-43f4-a641-4884c40ca446" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "x-ms-unique-id": [ "710" ], + "x-ms-client-request-id": [ "411d1171-b2df-45e2-96ea-de67592a7725" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -330,37 +332,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "039316e1-e8f6-4115-9576-fc23f4994ee0" ], "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-request-id": [ "369c8f44-870c-4415-83aa-5a42379fe230" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cbde5e29-9304-4576-8dc9-4bba17fd55b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:cbde5e29-9304-4576-8dc9-4bba17fd55b3" ], "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: BDCF62F7DC0348579A2C96FA0D75EA11 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "1814" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "cfc8507d-dc42-4616-ba58-8ad08c706d45" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -368,40 +377,44 @@ "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-ms-request-id": [ "8d3e7af7-c17a-426c-823f-9a0f935ff823" ], + "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": [ "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "67d7b7a2-3c12-4871-ae79-963d92af39fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120111Z:67d7b7a2-3c12-4871-ae79-963d92af39fb" ], + "X-Content-Type-Options": [ "nosniff" ], "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: BFE275F4614B41A89B8683B14CB83934 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1826" ], + "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\": \"\\\"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": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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 \"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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "d4349e66-fb03-471e-b10e-35d27ba599c0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1919" ] } }, "Response": { @@ -409,43 +422,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378D4DA0240\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "749a6275-556c-4445-a69c-77342b0823b6" ], + "x-ms-request-id": [ "ec75d327-835b-4bd2-b7dc-ea41a2591f35" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "daf802a2-eb4c-48f6-a277-6d26730eab04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120111Z:daf802a2-eb4c-48f6-a277-6d26730eab04" ], "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: 3C5449E0534F46B19E7FD91541029064 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7754" ], + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "7c0ad476-b354-4545-92b5-1eb072915de8" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -455,42 +467,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cf2c953-3643-464c-b8d8-d27dd67bca44" ], + "x-ms-request-id": [ "c1eb760c-3c60-412a-9613-a30c915b0efc" ], "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": [ "f426e01f-98a4-4d1f-b66b-8462a1318209" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120112Z:f426e01f-98a4-4d1f-b66b-8462a1318209" ], "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: 3C8F37EDA838432F825E26D77D881E23 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7555" ], + "Content-Length": [ "1701" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "472" ], - "x-ms-client-request-id": [ "034067c6-ee5b-4bd6-a287-337fa2bd32df" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "ad076213-40ea-4d3c-b448-edade5be0691" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -501,42 +512,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], + "x-ms-original-request-ids": [ "cada9ca8-ac56-4760-9c2b-79d295087def", "be9e058e-4855-49a3-9837-f986288700f7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "090abcd6-8e9a-44d0-96c5-c059aeae2c9d" ], + "x-ms-correlation-request-id": [ "090abcd6-8e9a-44d0-96c5-c059aeae2c9d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120112Z:090abcd6-8e9a-44d0-96c5-c059aeae2c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2039b927-7343-4a60-ade0-fccb4801623a" ], - "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-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: 19520FFC0C6942AE8AC205E4922BDED7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7555" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-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": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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+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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "473" ], - "x-ms-client-request-id": [ "dc6d8b11-fdf9-4f55-ac8a-794c005add64" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "f1d96794-3281-40d1-84dc-1b8967577845" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -547,44 +556,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "7f6a0978-91a8-43d6-8bee-c3d06976d799" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62f91fd6-29df-4d10-863f-e51f88876c49" ], - "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/westus2/606fa90c-d059-4043-b4c6-3502540eba93" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f6596221-3dbb-4bc8-b131-abb3cd91e6a6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120113Z:f6596221-3dbb-4bc8-b131-abb3cd91e6a6" ], "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: 0D4A7BBBEA8B4A8993CB4970DA49D3FE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:12 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_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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2015-05-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", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-wxft49p0i3?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": [ "474" ], - "x-ms-client-request-id": [ "c17ade09-d0d6-4576-92be-12245e4437f9" ], - "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "116" ] } }, "Response": { @@ -592,44 +594,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": [ "ea5bd549-1dce-4395-a775-146a359b7198" ], - "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-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/75301c0a-0d0d-4434-bfb1-a3b2ee509bd7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "d70e97d9-327a-4482-8a79-accfbad29b5f" ], + "x-ms-correlation-request-id": [ "d70e97d9-327a-4482-8a79-accfbad29b5f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120117Z:d70e97d9-327a-4482-8a79-accfbad29b5f" ], "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: BFF97A5C2DB24C61A93EEBBE6BB45690 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:13Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], - "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/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": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7306170d-0000-0300-0000-6914770d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"name\": \"Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"AppId\": \"9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9de2c055-196f-42d0-b5e1-cf9251513b66\",\r\n \"ConnectionString\": \"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\r\n \"Name\": \"Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"CreationDate\": \"2025-11-12T12:01:13.6018697+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-wxft49p0i3_9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-wxft49p0i3-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+$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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+15": { "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, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-wxft49p0i3\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "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" ], - "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": [ "1718" ] } }, "Response": { @@ -637,39 +636,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC0EA80B40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b3dab92-4038-4e20-a384-e83879b763c6" ], + "x-ms-request-id": [ "58dbbbc8-892b-4fa8-a450-8b5712042ce9" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4c836d77-042b-4b55-a011-74326c2bb862" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "0f31ed2e-4a40-4a0e-abf4-c1c1188d2661" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120159Z:0f31ed2e-4a40-4a0e-abf4-c1c1188d2661" ], "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: 73EF933EB0C94B6881BEF8B159175C69 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:01:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "8509" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:19.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+16": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "718" ], + "x-ms-client-request-id": [ "6a9fbf4d-2b89-4532-b1a3-b608a2828d69" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "205" ] } }, "Response": { @@ -677,43 +682,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378FA14A600\"" ], + "ETag": [ "\"1DC53CC25E0DE40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4909619-33d8-4003-9946-72fd6b99ad82" ], + "x-ms-request-id": [ "70d4bd8f-ca27-4c42-a731-a0ef35985005" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c8217ed0-e18e-43ca-8dd1-787c5396c105" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120229Z:c8217ed0-e18e-43ca-8dd1-787c5396c105" ], "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: B4523951E0844710988D8CA051ADD969 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:29Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:58.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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": [ "719" ], + "x-ms-client-request-id": [ "2df89dd4-f5c6-4887-8cb8-70c921c2e031" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -723,42 +728,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC25E0DE40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28290488-73b4-4280-9418-3bcd3e89f6af" ], + "x-ms-request-id": [ "6acccef9-192e-4dd5-af7e-2c4d194bc2cf" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0cfe4dca-269a-4a6b-9ed6-7c537e78af51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120230Z:0cfe4dca-269a-4a6b-9ed6-7c537e78af51" ], "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: AB53A8DF7C6E4CAD905CB0DC70068706 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:29Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:58.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/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": [ "720" ], + "x-ms-client-request-id": [ "5dfb2bec-e930-43c2-a276-47c6ce9c64d2" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -769,40 +775,40 @@ "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": [ "fad63145-ea35-4fd2-b109-a54cd335eead" ], "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/bcfee55d-c14f-403c-a914-548b5b7710b2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b177b8f6-afd8-4524-9e4d-acf691f717d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120230Z:b177b8f6-afd8-4524-9e4d-acf691f717d9" ], "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: 8FCC431522754D2D853227E67241ACA3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:30Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"}}", "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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01", "Content": null, "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" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "8d08fcbe-5afc-46ab-9665-a5066b60daa8" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -814,40 +820,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "659ae678-fe61-429c-80dd-312598703c85" ], + "x-ms-request-id": [ "56423424-88c2-4589-855b-d581c0d90374" ], "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/d04940b9-29c7-4413-9cc1-acce6125e3f3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9beb04b3-590a-4843-a8b5-761069538a8c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120230Z:9beb04b3-590a-4843-a8b5-761069538a8c" ], "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: CAA4C71EC48643CFB7CDB4CA613C4F10 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:30Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:30 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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+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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "abae568e-ba3e-4b18-94ba-c82585984628" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -858,42 +865,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], + "ETag": [ "\"1DC53CC25E0DE40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aecd48b7-bf54-4a04-b74f-8934834c2e5a" ], + "x-ms-request-id": [ "5719973b-c5b3-4e68-8366-8542857a1dac" ], "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": [ "df47744f-4605-4454-a737-a568f00e9d8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120231Z:df47744f-4605-4454-a737-a568f00e9d8a" ], "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: 55ABCBBF10C3452990820236297AE2A4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:30Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7555" ], + "Content-Length": [ "8483" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:58.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?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" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "1cf8e199-81c7-4963-9057-1d0688713a06" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -905,40 +912,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1822c44f-2ce9-4200-99ec-12fbbeea092c" ], + "x-ms-request-id": [ "efe6f200-2ce2-493e-9bd3-d6bb54566435" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f979c01f-0647-4470-98ba-478f886643d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1477e1af-31ac-443b-b424-d35840e2d969" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120231Z:1477e1af-31ac-443b-b424-d35840e2d969" ], "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: 95E9ADC07D624AEB840A34246BC8815F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:31Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"}}", "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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?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" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "457e48c8-9316-4179-8283-4c9afba8f3e8" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -950,40 +957,41 @@ "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": [ "ef9a22d7-e361-441b-8262-671cfdfe053f" ], "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/18a8f0bb-ce91-4abb-9670-e808ae3b13cb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d83936e1-9092-4507-b026-b8a46e69909b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120232Z:d83936e1-9092-4507-b026-b8a46e69909b" ], "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: 07C13486D62B43D6AA6894104BB81BE6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:32Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:32 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01+23": { "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?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": [ "725" ], + "x-ms-client-request-id": [ "b20a1bc5-0361-4846-b579-86e5a1d7cfe6" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -995,43 +1003,38 @@ "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": [ "f5f69c6a-87c7-4340-87ee-d3a869ca3bfb" ], "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/48fedf26-6e5f-4e7d-b7df-c761ac955f9e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e2470f12-2193-4342-8754-546347421f08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120232Z:e2470f12-2193-4342-8754-546347421f08" ], "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: 181C924A13CC4E0E83AF2EA6BE3A29EB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:32Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7916" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"}}", "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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+24": { "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, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-wxft49p0i3\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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": { - "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" ], - "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": [ "1800" ] } }, "Response": { @@ -1039,42 +1042,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC25E0DE40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c74b3994-53e5-4efb-971d-ebb950fb8978" ], + "x-ms-request-id": [ "55f80715-a15d-46f4-afc2-0820b105fa8e" ], "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/8145121b-64e0-40c3-ac4e-ad2617a5c428" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "13ff235d-0704-4bc4-b026-00a2b1c918fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120235Z:13ff235d-0704-4bc4-b026-00a2b1c918fe" ], "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: A8E72374F6E84CFE9C446268568077A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:32Z" ], + "Date": [ "Wed, 12 Nov 2025 12:02:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "8649" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:02:34.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"858f9c71-7149-4a62-bcb8-678efb240087\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+25": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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" ], - "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": [ "727" ], + "x-ms-client-request-id": [ "04305f89-9118-49c2-a403-4478d0e863c1" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -1084,41 +1088,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC3B390A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db19e88f-e6d2-4034-9e2e-e71e55b99e16" ], + "x-ms-request-id": [ "b8d50f58-d911-4cd0-84aa-c56a73aa03d5" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ae5b5457-0b47-41b8-9b14-37ee378c3f6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120305Z:ae5b5457-0b47-41b8-9b14-37ee378c3f6c" ], "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: 6B1181CFB9DF41609E51523E03CB7C36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "8623" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:02:34.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"858f9c71-7149-4a62-bcb8-678efb240087\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+26": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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": [ "728" ], + "x-ms-client-request-id": [ "df29c843-9a04-42ee-8054-4e938ec8731d" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1129,41 +1134,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC3B390A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20f1b673-23f9-4123-b6ed-73793d3e6aa2" ], + "x-ms-request-id": [ "48356532-7fdc-41ed-a487-3db066ee33f1" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "599de3f7-3da0-4007-ae09-b71908cc15db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120308Z:599de3f7-3da0-4007-ae09-b71908cc15db" ], "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: 67CF89EB5A2A4C74AA7F135AA60B68CC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "8623" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:02:34.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"858f9c71-7149-4a62-bcb8-678efb240087\"}}", "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]+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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01", "Content": null, "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" ], + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "a8738a1e-7c6b-4b67-8f2a-918f33123a1c" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1175,40 +1181,40 @@ "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": [ "e578b2cb-446a-42dc-8a5a-8ac9bd2aba10" ], "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/60ae525a-5191-43e1-9bde-814fd0487b00" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3d465ee8-f527-4202-ade2-741ed2972086" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120309Z:3d465ee8-f527-4202-ade2-741ed2972086" ], "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: 0F587C3E4B8E46CDA2F2B66AE9F4D2CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "8b225a6b-727e-4c42-9a20-2ddcf79b7ad0" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1220,40 +1226,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d3fe53c-5cf9-44ee-adb1-a041f37e38be" ], + "x-ms-request-id": [ "2354a109-082d-4c34-a87a-80824de458a0" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20b552bd-bf7d-4257-8c36-8a5533ec7474" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "27fe41e5-85d1-40a7-8746-fbb0a2b06b5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120309Z:27fe41e5-85d1-40a7-8746-fbb0a2b06b5c" ], "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: 2BA3E18E70864D3087DCE8DFF25E8056 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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/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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":31826,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-Windows-Premium-vesazn?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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?deleteEmptyServerFarm=False\u0026api-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/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "8161c5df-f5eb-41fd-b074-532e45c9b953" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "759f0a2d-7360-4822-a767-b67e466c23fc" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1264,130 +1271,124 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC3B390A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "986a141d-b6cc-4a77-8662-e19058fedfaf" ], + "x-ms-request-id": [ "d4298e05-fe53-4ab9-8847-925f631e1d9b" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9dcf48ea-6fdb-4e72-a296-1e9ac98af467" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "42ebb6a4-2463-46e2-8aca-3968d96395e3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120318Z:42ebb6a4-2463-46e2-8aca-3968d96395e3" ], "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: F4B612C5EA424CF4BFCA183E3B05CE6F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:18 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-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": 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+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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": [ "732" ], + "x-ms-client-request-id": [ "3254b5fb-4b25-4804-9ebc-0321665cb891" ], + "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.4", "Az.Functions/1.0.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": [ "c28bc7df-6790-4dd6-aea4-874a295c2082" ], + "x-ms-correlation-request-id": [ "c28bc7df-6790-4dd6-aea4-874a295c2082" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120318Z:c28bc7df-6790-4dd6-aea4-874a295c2082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14916f02-0aba-499b-92a8-e492ff3ffc10" ], - "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-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: 00C61950D19E4907AC55A029E51E36DD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:18 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_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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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+$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]+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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+31": { "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "733" ], + "x-ms-client-request-id": [ "4c77d494-5c3d-4437-bb9d-fe45e4a966ed" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "7788e18b-9ced-41c0-bb34-52268c5ff9fc" ], + "x-ms-correlation-request-id": [ "7788e18b-9ced-41c0-bb34-52268c5ff9fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120318Z:7788e18b-9ced-41c0-bb34-52268c5ff9fc" ], "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: 861C774D956747259F82D33FFAC6E2B6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7754" ], - "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: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/sites/Func-PowerShell-NewTest2-wxft49p0i3\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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+$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/sites/Functions-PowerShell-0sp8e17wjo?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-o8n3yqx5lc\",\r\n \"type\": \"Site\"\r\n}", "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" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -1395,42 +1396,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f72e32e5-8950-4dfa-89df-1412a111648b" ], + "x-ms-request-id": [ "f4439070-94f0-463a-be72-dd04fa5b8981" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71e71cac-df21-4b8b-81ed-543b1d2ff578" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8d47d3a5-fc06-4ee4-b126-eacc06889242" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120319Z:8d47d3a5-fc06-4ee4-b126-eacc06889242" ], "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: 5209B15B613C45FF9227BE83A1C5EB1C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7550" ], + "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/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": "{\"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/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/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/sites/Functions-PowerShell-0sp8e17wjo?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": [ "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": [ "735" ], + "x-ms-client-request-id": [ "fe5fe1cc-04dd-49a3-a983-4e1700616549" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1441,42 +1442,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], + "x-ms-original-request-ids": [ "c0d7c6c4-753a-416b-a857-98e2449774ea", "6402ba5d-6a4a-4686-aa78-0245271e1a54" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c51af102-b768-4653-8d4c-f18a5ad69438" ], + "x-ms-correlation-request-id": [ "c51af102-b768-4653-8d4c-f18a5ad69438" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120319Z:c51af102-b768-4653-8d4c-f18a5ad69438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1886dc8d-b1f6-41a4-a0f6-bf15e8d4ae85" ], - "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-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: 2A3F874F9C4D42A7BA7315D450F571E7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7550" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "15460" ], + "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\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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": [ "736" ], + "x-ms-client-request-id": [ "a6e5adbd-5057-4ef8-8863-93bf4ecfe7aa" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1488,40 +1487,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": [ "f6f18e6d-314e-486c-bac8-ac3670faced1" ], "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": [ "983d6cdb-276f-47e5-b61e-d6475ee56a5b" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T120319Z:983d6cdb-276f-47e5-b61e-d6475ee56a5b" ], "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: 27789EEB9DEF4947BEBF2C438DDA4C3C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1819" ], "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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-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-Consumption-o1blrw/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-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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?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": [ "737" ], + "x-ms-client-request-id": [ "08707d70-47d3-4fff-a99b-f13a03370b10" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1533,40 +1532,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": [ "6a295a1b-4d65-4007-8745-ed5100d1c78a" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b3fbfc0-5f6d-4d3e-804e-984ba1a3422a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120319Z:9b3fbfc0-5f6d-4d3e-804e-984ba1a3422a" ], "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: 7875DCE84BBF4A5D9753657FDE4FF8D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], + "Content-Length": [ "1782" ], "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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-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/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-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": [ "738" ], + "x-ms-client-request-id": [ "f7805a0d-65ff-4ee4-a8a3-082b71f38838" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1577,42 +1576,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "97c844b0-ed26-4535-a3b0-d68a32340d5b" ], + "x-ms-request-id": [ "b7e970a3-b380-4bee-a3c5-2a11d4a86fed" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "46f4c682-1570-42e1-91f5-e08b7df18ef2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120320Z:46f4c682-1570-42e1-91f5-e08b7df18ef2" ], "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: 9CEA0427A6984C9A83AE4C336575F467 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7550" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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-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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-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": [ "739" ], + "x-ms-client-request-id": [ "896876c7-9919-455a-ae82-d9cd2bb4552d" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1624,40 +1622,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e45ee2be-a5df-44e1-8142-c2d2faf83f80" ], + "x-ms-request-id": [ "60ae3724-babb-409f-abd1-fda702798bdb" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4f8d127c-148d-4879-b1f4-fc1d5e9b25a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120320Z:4f8d127c-148d-4879-b1f4-fc1d5e9b25a1" ], "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: A698D0F0BC7B42B99C989745CA43B172 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:20Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1758" ], "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-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", "Content": null, "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" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "d9fba3f3-2384-468d-a356-dbde1f234e3f" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1669,40 +1667,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c3b315c-6c83-4824-bd4e-31356abbb187" ], + "x-ms-request-id": [ "db63ed4d-cca1-4143-b81f-c3b1e64f2bcf" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68acf5a9-9149-46e7-af8e-a8275dbb5ee5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120320Z:68acf5a9-9149-46e7-af8e-a8275dbb5ee5" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 03A04E47D4904E73B23682EC3FBA24D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:20Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], + "Content-Length": [ "1735" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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": { + "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "b64a99bd-4c4b-42a7-a154-e08f77d68883" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1714,38 +1712,302 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74514974-8b4e-456e-aacc-a6d2c08e22c6" ], + "x-ms-request-id": [ "58f8a90b-7ea1-46e9-bd2e-a7bd102ba911" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4bfd2bd9-5f4e-44b0-bbd5-1098bddb7da5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120321Z:4bfd2bd9-5f4e-44b0-bbd5-1098bddb7da5" ], "X-Content-Type-Options": [ "nosniff" ], "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: 3AAF3A7D053C4A918407A888A576E167 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:21Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1933" ] + "x-ms-unique-id": [ "742" ], + "x-ms-client-request-id": [ "36511c9c-2409-49da-aff8-cb9fe2f195ee" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bdfc6c96-7385-4e54-b6a0-87dc7ceaaed2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8925902e-dd54-4dac-b318-791c0f240278" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120321Z:8925902e-dd54-4dac-b318-791c0f240278" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 52AED1FF596D41499F3564EFF02D1C67 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:21Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "743" ], + "x-ms-client-request-id": [ "5d55f360-8c95-490b-94e3-dfa3c1679ec8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "234ce49c-c4a5-4bcd-b133-96e81b806c81" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a9627ea0-478b-4a42-9700-772424c9e0e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120322Z:a9627ea0-478b-4a42-9700-772424c9e0e5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B04247890DB04202B6073106B0F4B24A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:21Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "744" ], + "x-ms-client-request-id": [ "0f39065b-3996-42de-9a2d-69ba1f31dc0b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1cb5c2ec-cf29-48b6-b65b-3fd08b7acad1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "152a5c8d-8bcb-4906-ace8-8f728147baef" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120322Z:152a5c8d-8bcb-4906-ace8-8f728147baef" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1961AFA5A09F4DAB8ADBDB81EDFF6D24 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1701" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { + "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": [ "745" ], + "x-ms-client-request-id": [ "5aed12db-9e7a-43e9-9a11-2021265573a2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "6f742d8c-519d-4e4b-b685-e7374be7cda5", "3af6933e-4589-495b-9f36-0c2ebfe79757" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3e21a85a-0a46-488f-b4b4-5b4f939c2df4" ], + "x-ms-correlation-request-id": [ "3e21a85a-0a46-488f-b4b4-5b4f939c2df4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120323Z:3e21a85a-0a46-488f-b4b4-5b4f939c2df4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 643BC93F29694CFA8152372F10CCD99D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11077" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+13": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "746" ], + "x-ms-client-request-id": [ "fbac5f29-ffd6-4232-beff-3023aab235e5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "40e92ed8-766d-41c2-88c5-64d5ce1fa64e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3b769e0a-1953-47da-ba6c-24f75400031e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5b9afe73-4974-426e-89d0-739ded1ae02c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120323Z:5b9afe73-4974-426e-89d0-739ded1ae02c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1A6A32E9DAA445BC8C0941B8F8B9A5A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:23Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2015-05-01+14": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc?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/668fe7ec-5bb6-40af-9099-e291a8350651" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "241122c0-5020-4f18-9bff-c94b645bf47d" ], + "x-ms-correlation-request-id": [ "241122c0-5020-4f18-9bff-c94b645bf47d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120330Z:241122c0-5020-4f18-9bff-c94b645bf47d" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C3D935BDCEAC4D3B870FE7CDD0711228 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:23Z" ], + "Date": [ "Wed, 12 Nov 2025 12:03:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1684" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"73068330-0000-0300-0000-691477910000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"name\": \"Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"AppId\": \"64f96b84-5dae-4dde-859f-d44584f74648\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6b443061-498c-46df-87bc-0d0c318c30cf\",\r\n \"ConnectionString\": \"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\",\r\n \"Name\": \"Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"CreationDate\": \"2025-11-12T12:03:24.3148657+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-o8n3yqx5lc_64f96b84-5dae-4dde-859f-d44584f74648_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-o8n3yqx5lc-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+15": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-o8n3yqx5lc\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1718" ] } }, "Response": { @@ -1753,43 +2015,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], + "ETag": [ "\"1DC53CC5D9D5CA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d73ed022-224f-482c-9a1c-54fa4003e3a2" ], + "x-ms-request-id": [ "7cf22b51-262a-47e2-b697-84d50cac6ac6" ], "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/79af859e-dd60-449b-a237-2bc9f12f167c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "5333e654-7549-4fa8-939b-f2e704f8afc0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120412Z:5333e654-7549-4fa8-939b-f2e704f8afc0" ], "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: 8BC2D22EB2234C8CBABCCDC483B23180 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:30Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7609" ], + "Content-Length": [ "8514" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:03:31.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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": [ "749" ], + "x-ms-client-request-id": [ "89c0517a-73a8-48f8-8568-5a1f65b04785" ], + "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -1799,42 +2061,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], + "ETag": [ "\"1DC53CC758ABF95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53eb1d4e-a6fd-4e57-9e0d-2630705c8f00" ], + "x-ms-request-id": [ "2411e55a-be79-44ff-86d7-7b47611ce74d" ], "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": [ "7ae087b7-e974-4c33-9f16-2f620d36c1d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:7ae087b7-e974-4c33-9f16-2f620d36c1d2" ], "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: E817AE5F1E25476892AD02CB3034819A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:42Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7405" ], + "Content-Length": [ "8488" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:12.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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": [ "750" ], + "x-ms-client-request-id": [ "6d14e620-3282-4efc-a790-4c6bf87b36f0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1845,42 +2107,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], + "ETag": [ "\"1DC53CC758ABF95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd96df07-d8fa-4d82-adc4-4e20b45bde65" ], + "x-ms-request-id": [ "a7d9ba11-9038-4093-828e-46103d173bc4" ], "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": [ "eee698e8-05d3-423c-b49c-d6c8ff7365eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:eee698e8-05d3-423c-b49c-d6c8ff7365eb" ], "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: 49F060AA7CDF45968D116B63E506CFFD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7405" ], + "Content-Length": [ "8488" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:12.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/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": [ "751" ], + "x-ms-client-request-id": [ "bd66317a-1487-4e3b-bbe2-43acfa09f882" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1892,40 +2154,930 @@ "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": [ "23b90ea2-004e-44f9-ab1e-21a466837904" ], "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/c24f08d9-8643-4d57-b511-99b1567d3ef7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4d61396b-7b2f-43f3-acdb-a3c2b7156c73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:4d61396b-7b2f-43f3-acdb-a3c2b7156c73" ], "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: 8F9BE6C75E0640859AC7D906FCF1BBDF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/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": [ "752" ], + "x-ms-client-request-id": [ "7e6aa0d2-5efb-4d86-bcd8-312cac94b942" ], "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1cad929a-18ee-4fde-b526-97a67b133194" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5fe059b-bbc5-4018-8990-c967a1903037" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "db38f3ab-3506-4875-a06e-9a5bf91cc067" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:db38f3ab-3506-4875-a06e-9a5bf91cc067" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CA96C1F72F1644FF8EBC4DE5456A2C42 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4191" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "753" ], + "x-ms-client-request-id": [ "b9a8604f-8d8a-4709-838d-61201054e289" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC758ABF95\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5c90f95c-d838-4325-9150-2f234197de80" ], + "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": [ "3413feeb-362c-440f-8539-009f54a0fd3f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:3413feeb-362c-440f-8539-009f54a0fd3f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3D3D3F5A163548A49BD56DA4043B2B79 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8488" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:12.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "754" ], + "x-ms-client-request-id": [ "9513b673-dd1e-400a-b5f2-9d9028178aa0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "61011a12-da2f-4888-be14-9b6f555eda8f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/282caa8b-a771-479e-9e39-2b4000dc9f08" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a93de948-3b97-49a9-b619-ec3380e527f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:a93de948-3b97-49a9-b619-ec3380e527f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 407B70D5F6054529A0D613E8F37BEB04 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"}}", + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "755" ], + "x-ms-client-request-id": [ "c85e1fe2-d62e-434a-8990-bde6760c4758" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "06eb1186-b34c-4826-8402-67bb8f956877" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/290aa59a-5951-40e2-a729-70dcbba3f235" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "98010d4e-1cd1-42c9-b3e3-5ec8ea205f0a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:98010d4e-1cd1-42c9-b3e3-5ec8ea205f0a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 205E930926BB4D688DFE37A9AF55BC0C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4191" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "756" ], + "x-ms-client-request-id": [ "41b413f7-94c8-4bc0-8850-e9a028fed660" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cbc5df00-bdcb-4ff8-84f3-93d933e34ddf" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d03151b-194d-4abd-a67a-f98cb59808b8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ca087330-eece-4a1f-9b66-78c713d76585" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:ca087330-eece-4a1f-9b66-78c713d76585" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 004DD8AA6B204B0D82BCBF6F80A61012 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"}}", + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-o8n3yqx5lc\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2028" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC758ABF95\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7ab49e82-4192-40d3-a50a-f012afc24299" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b033f45-692f-4f29-a017-1e3d2e271616" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ba5b30a9-9bfb-4a71-bdbe-21ac3ae5d250" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120447Z:ba5b30a9-9bfb-4a71-bdbe-21ac3ae5d250" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B7935DFB5C01453AA2AE4946D4CE3DD5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:45Z" ], + "Date": [ "Wed, 12 Nov 2025 12:04:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8846" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:46.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "758" ], + "x-ms-client-request-id": [ "65c9d854-0eb4-4b1b-a390-7ecdf65c8b28" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC89E51DC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d04ac6c2-3e14-4d6a-b928-b674c399851a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "16a42827-9acc-4e88-a4a5-1ec748f2029a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120517Z:16a42827-9acc-4e88-a4a5-1ec748f2029a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4948A1277F814D83AD954EE823259966 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8820" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:46.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "759" ], + "x-ms-client-request-id": [ "8fbbbb7c-d47e-4783-804c-faf895f44568" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC89E51DC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b04d561b-834b-4ffc-b7c7-c17291d528fb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8bef3270-485c-4e1e-a0cf-6f8c4e4daafd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120518Z:8bef3270-485c-4e1e-a0cf-6f8c4e4daafd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AEE2AF54DB1E43CB8058BAD8BD24D7BF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8820" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:46.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01+27": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "760" ], + "x-ms-client-request-id": [ "84c6fe5d-bd05-491c-860d-eeb6ab84702b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2fa3d961-1257-4693-8d47-ae80e7eb434c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b2ebf26-fb2d-4ce6-8717-6b564226d636" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c2ad14ef-a862-4b49-a98b-c2fecf4d8a15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120518Z:c2ad14ef-a862-4b49-a98b-c2fecf4d8a15" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 71DBDD1AFA994D46BFA3A2FCE636E226 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "761" ], + "x-ms-client-request-id": [ "18da1388-36a1-46a9-86ca-3d3d227cc55d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "0388c028-dfab-453b-aa4a-2dc1c7dbf930" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f48538f-3d51-44ee-9577-5283076de37d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6ccc07cb-941d-4f29-8c4a-4b77cb2caec1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120518Z:6ccc07cb-941d-4f29-8c4a-4b77cb2caec1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3B9ABD8562FF499D99077A0B1948DFFB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4192" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":31827,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "762" ], + "x-ms-client-request-id": [ "5c137416-e498-41ab-9287-d6f2ac503826" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CC89E51DC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "24cc4790-dd7d-4acc-8fa8-e23b0f194889" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc4c2f3f-d69f-4281-811f-091fee25fa45" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f00f3fe0-99bb-4a96-8d84-e9010e118110" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120526Z:f00f3fe0-99bb-4a96-8d84-e9010e118110" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 26CADF432B874D98B0573950C41943EA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "763" ], + "x-ms-client-request-id": [ "d0879616-8d4d-4500-96b0-e3651b32c71c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "07b9046b-a4cc-47a7-a59d-811471335d2d" ], + "x-ms-correlation-request-id": [ "07b9046b-a4cc-47a7-a59d-811471335d2d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120527Z:07b9046b-a4cc-47a7-a59d-811471335d2d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6118C6E38B044907AF1BD901536724A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:26 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-o8n3yqx5lc\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "764" ], + "x-ms-client-request-id": [ "50ba0466-78c5-4fb1-a92a-89bbce722d1c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "9691f5df-7b55-416d-81d2-d22f7138388e" ], + "x-ms-correlation-request-id": [ "9691f5df-7b55-416d-81d2-d22f7138388e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120527Z:9691f5df-7b55-416d-81d2-d22f7138388e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 51C1B6A09F014BC6822535075A35178B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:27 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-o8n3yqx5lc\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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/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/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "765" ], + "x-ms-client-request-id": [ "1a70c76d-9ec4-49d7-b182-d4a2271f55a8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "2b12f0f9-2e95-41d1-b809-99cfd4ef0121" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3685931-4951-4ac7-b5d1-ecea48909156" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7b6537b3-3272-429c-9767-5c444cb73386" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120527Z:7b6537b3-3272-429c-9767-5c444cb73386" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6C2F845FF4BC4AAA8B192A53364EE1BD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:27 GMT" ] + }, + "ContentHeaders": { + "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;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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "205" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CCA398328B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5660c4ac-4269-430d-9a00-7dc01472d855" ], + "X-AspNet-Version": [ "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/6db7bc0a-7ed6-48ed-8bb2-e5770c99c6a6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "4a143d6d-a6a8-405d-a8da-b97f7f062edc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120531Z:4a143d6d-a6a8-405d-a8da-b97f7f062edc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 07B88E8B3F6D47FC97DAE196654116F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:05:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1910" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"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-12T12:05:28.96\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "767" ], + "x-ms-client-request-id": [ "bc470054-c913-4458-8e71-a0dcb0827f63" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a6128190-10bc-4034-8bfa-f16b709bccfc" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "03748f0e-742f-4a05-9747-57ec2f38659a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120602Z:03748f0e-742f-4a05-9747-57ec2f38659a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BD9E3E85296D416FA818B8D746399690 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1820" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "768" ], + "x-ms-client-request-id": [ "bc470054-c913-4458-8e71-a0dcb0827f63" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "48b315a9-4ce3-436a-b2b2-cf3c407163fd" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7e111feb-1ff1-49cb-8f6f-1a5d6fa5a606" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120602Z:7e111feb-1ff1-49cb-8f6f-1a5d6fa5a606" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2748A7529A9E4DD68DDC0998D888CFE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1820" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\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": [ "c12657cd-4750-4006-b2f9-2b63135d2ada" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75c6c9ac-c7da-4018-a73d-4e1d63f1bd02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "804afa85-1372-4faa-bfc2-6b47fb2334a4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120602Z:804afa85-1372-4faa-bfc2-6b47fb2334a4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D97A0969D6B84B6F85198599435DEA71 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+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": [ "770" ], + "x-ms-client-request-id": [ "332932c1-7975-4ea4-9411-440a40a70d09" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "4433e2ee-8892-49d8-a5d5-1be5e5ebc7b1", "a43c59e8-fb2d-458c-a292-96dae8825022" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "e42306eb-31e6-4320-85b4-009b985c3c66" ], + "x-ms-correlation-request-id": [ "e42306eb-31e6-4320-85b4-009b985c3c66" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120603Z:e42306eb-31e6-4320-85b4-009b985c3c66" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 527BDA4C2DDD4713AE5DEE67F8E8601B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "18911" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501669,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501671,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "771" ], + "x-ms-client-request-id": [ "19cf4276-2335-4955-a18d-6139e53851ea" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5fcf3ab3-14f8-4831-8082-43c2c452cb23" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4dd16f19-eb25-4c59-827e-3b2513d7f6d9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120604Z:4dd16f19-eb25-4c59-827e-3b2513d7f6d9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4911B714D6284FFD9C70750B7D58368F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1819" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "772" ], + "x-ms-client-request-id": [ "445ec7c6-ed23-4b57-adf7-b506e59a1dc3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1937,40 +3089,40 @@ "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": [ "7f1d1419-5c13-425a-a70b-7b25b3dbf3cd" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a1e3b5d4-2405-4cfb-9eb6-35fbed2c6fd6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:a1e3b5d4-2405-4cfb-9eb6-35fbed2c6fd6" ], "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: B671C5E065214E6D8D0F8C71883CE6DD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "1782" ], "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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "773" ], + "x-ms-client-request-id": [ "bc7764fb-0125-4461-9849-7d42b2a783ca" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1981,42 +3133,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe32f954-f7d5-494c-99a0-24cb149fbe58" ], + "x-ms-request-id": [ "80069f82-244c-475f-935c-4f0b0c5d9980" ], "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": [ "e636f25c-1926-4a20-84ba-0402c005ba78" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:e636f25c-1926-4a20-84ba-0402c005ba78" ], "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: 1D0B59A87AAD48A09E04271CDC8BA0A8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7405" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01+10": { "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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "774" ], + "x-ms-client-request-id": [ "6a02fae3-42db-4671-a7fe-d8efbdcf6939" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2028,40 +3179,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": [ "9199f358-f604-4905-9835-d57359dfcb74" ], "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-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7e0aed13-2dce-4931-b845-9311a8411b27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:7e0aed13-2dce-4931-b845-9311a8411b27" ], "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: BB10DFB1EE6B4E28B2A4971940F0CD1E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1758" ], "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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "775" ], + "x-ms-client-request-id": [ "abc8773c-8712-4038-a66e-ef80e43f1516" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2073,40 +3224,40 @@ "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": [ "834ccdb4-a0ce-4daa-96c3-ab383dac8973" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8bee64ba-9fbd-4991-856a-23d533a3c556" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:8bee64ba-9fbd-4991-856a-23d533a3c556" ], "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: 303834CB9F5C4817A3ED31CE3E159D5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "1735" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?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-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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "776" ], + "x-ms-client-request-id": [ "a8929b3c-22a1-46ea-ad14-bbd183d66df6" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2118,40 +3269,40 @@ "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": [ "dd01d0eb-176d-4070-a4a4-b0cdee22a4f7" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e0b4405c-2b8d-4e21-a26a-7f4fcf7416fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120605Z:e0b4405c-2b8d-4e21-a26a-7f4fcf7416fd" ], "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: 9849A7F859784A4CA181B1019AA9F719 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1747" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":19931,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-cjes6i\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-335_19931\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:03:07.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+49": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-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" ], + "x-ms-unique-id": [ "777" ], + "x-ms-client-request-id": [ "6f622f94-b381-470e-997a-503371f6d1f1" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2162,40 +3313,44 @@ "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-ms-request-id": [ "ec55d426-4f61-45c8-a6a4-da24cf3aa580" ], + "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-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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6948b10c-0813-4d7d-b8ac-6a91fbc267e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120605Z:6948b10c-0813-4d7d-b8ac-6a91fbc267e9" ], + "X-Content-Type-Options": [ "nosniff" ], "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" ] + "X-MSEdge-Ref": [ "Ref A: 719712FAD7244B2D8E71E3604E64EF5E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "28591" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1814" ], + "Content-Type": [ "application/json" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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+$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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+14": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "778" ], + "x-ms-client-request-id": [ "2082172c-aad3-4817-b05f-d8373c2fdeb5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1890" ] } }, "Response": { @@ -2203,43 +3358,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9eb5223-515e-440c-bd72-aa05942914c0" ], + "x-ms-request-id": [ "17939a66-5905-49e7-973f-7d0ad583ada3" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "da1db45a-106e-4f54-bc13-4ff5be441295" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120606Z:da1db45a-106e-4f54-bc13-4ff5be441295" ], "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: EB16C3FEF5D54B6D9B4F4568FB84F50F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7614" ], + "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/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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+51": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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" ], - "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], - "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "x-ms-unique-id": [ "779" ], + "x-ms-client-request-id": [ "3408017a-c3bf-4aa2-83ae-76024cd9df5e" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -2249,42 +3403,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "045901b6-05eb-474f-838f-2716132606dd" ], + "x-ms-request-id": [ "7a01ddc7-13d9-4090-a758-f6ef46d1459d" ], "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": [ "0d834505-35db-4d31-a485-674084d2101e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120606Z:0d834505-35db-4d31-a485-674084d2101e" ], "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: 06F3D230E9C6478FB386828E1696C5E7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7410" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+52": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "780" ], + "x-ms-client-request-id": [ "e28190eb-9430-48dd-ac7e-43a8806109a3" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2295,42 +3448,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93eb91e2-f0eb-4aa4-8e4e-939530ef20bb" ], + "x-ms-request-id": [ "4121f4f8-c0dd-4cab-8ab8-39d716a8ddeb" ], "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": [ "6ae85748-cb94-4831-9748-472c6fc44bef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120607Z:6ae85748-cb94-4831-9748-472c6fc44bef" ], "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: 0AED898D800D4F9EA0F21768C62FB4A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7410" ], + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "781" ], + "x-ms-client-request-id": [ "15454a49-a3c9-4923-b7ee-7c63046b29e2" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2342,40 +3494,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": [ "72ad89a2-e802-4385-85fe-ded567a85a84" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "49362dea-9896-46ba-bebe-662f2370cbdf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120607Z:49362dea-9896-46ba-bebe-662f2370cbdf" ], "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: 69ED041E1EF94794AFF61B2B4C588709 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1701" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "514" ], - "x-ms-client-request-id": [ "e2cebad7-cdd2-45fe-b215-4a9f25618e4b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "782" ], + "x-ms-client-request-id": [ "e293a7b9-f4db-4c56-904c-b1e833215bc8" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2386,41 +3538,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "86805843-91d8-4963-9e5a-a0e2e6f8cd9f", "fbf3ac2a-1880-4d55-9f60-73d237c90cfb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5c5b7be1-1e2e-4f1d-b1de-f22e0ec1cea2" ], + "x-ms-correlation-request-id": [ "5c5b7be1-1e2e-4f1d-b1de-f22e0ec1cea2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120608Z:5c5b7be1-1e2e-4f1d-b1de-f22e0ec1cea2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60693a9e-9b3d-4487-80dc-99b677278f68" ], - "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-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: 489B943140C74FBCBECCD27C8B9610B4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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/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\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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+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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-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": [ "783" ], + "x-ms-client-request-id": [ "df6cdc96-b0a3-4c1e-9f4f-4baae5551f88" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2431,44 +3582,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1423bbf8-120b-4eb1-ac9b-a496abb2f528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bbfeba82-50bc-409a-9708-ea2490ddb32d" ], - "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/westus2/c6a2d053-9e9b-4606-934e-943436d59268" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ab2e69d8-6fa7-457a-8b48-f191e757003e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120608Z:ab2e69d8-6fa7-457a-8b48-f191e757003e" ], "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: C5DF2E087C1844C882C5AFAE3BCBDBE6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:08 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\",\"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": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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?api-version=2023-12-01+56": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2015-05-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", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "516" ], - "x-ms-client-request-id": [ "9013e464-c2c3-43c8-b79e-5cd656d5e224" ], - "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "116" ] } }, "Response": { @@ -2476,45 +3620,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], + "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": [ "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-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8d3bbf70-02a2-404b-8bfc-e308ed9df675" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "995079f0-3aa9-4879-9376-6ba37117823c" ], + "x-ms-correlation-request-id": [ "995079f0-3aa9-4879-9376-6ba37117823c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120613Z:995079f0-3aa9-4879-9376-6ba37117823c" ], "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: 7861984A8F244B828DB698308051F69C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7410" ], - "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\",\"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": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7306795d-0000-0300-0000-691478350000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"name\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"AppId\": \"2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de\",\r\n \"ConnectionString\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\r\n \"Name\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"CreationDate\": \"2025-11-12T12:06:09.0902113+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-2g56pvnthz_2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-2g56pvnthz-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+$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]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\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": { - "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" ], - "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": [ "1851" ] } }, "Response": { @@ -2522,42 +3662,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CCC031DF80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50913261-0d1d-458c-bd10-ea87ffecc96c" ], + "x-ms-request-id": [ "0f1a13c6-c44e-4bad-8900-9ce0f9f2644c" ], "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-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2acc6aee-f3d7-4304-99e7-88754cb56b43" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "3eeba916-c72d-45a7-be55-b71527f61d26" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120657Z:3eeba916-c72d-45a7-be55-b71527f61d26" ], "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: A3431BC7257446CA9232485854DA78C0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:13Z" ], + "Date": [ "Wed, 12 Nov 2025 12:06:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "8756" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:16.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-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" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "786" ], + "x-ms-client-request-id": [ "6104202f-39d1-41e2-b37d-6ac68e8712dd" ], + "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" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -2567,41 +3708,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CCD76A304B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ccb0dfb1-9ac2-4544-8a46-008338ebd3dd" ], + "x-ms-request-id": [ "56714c41-475f-46e4-9c8b-9cb25a389cf4" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "87441544-97b8-4a12-938d-467d9a9abdfe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120727Z:87441544-97b8-4a12-938d-467d9a9abdfe" ], "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: 9DE26521076D4E97A123C7B7E0C8851C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "8730" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:56.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", "Content": null, "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" ], + "x-ms-unique-id": [ "787" ], + "x-ms-client-request-id": [ "1ecede31-4e6c-4740-a186-d6ed34b6d2f7" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2612,41 +3754,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], + "ETag": [ "\"1DC53CCD76A304B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "daf34192-26af-4fd0-82d5-36b4e60f16b1" ], + "x-ms-request-id": [ "4246b2dc-1fc4-4451-b750-f2fd2e63127b" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "29c8f842-4cb0-44fc-b3c0-912ad2ed39ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120727Z:29c8f842-4cb0-44fc-b3c0-912ad2ed39ad" ], "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: 2CB0B390537C40178D5D98D7BCC7279B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8730" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:56.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?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" ], + "x-ms-unique-id": [ "788" ], + "x-ms-client-request-id": [ "7c3e189e-4d02-4352-9ffb-8ff011aaa760" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2658,40 +3801,40 @@ "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": [ "7d653021-92fb-412d-b3e3-ff086cb0a601" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03004489-7a75-4e9a-a805-4837fa0002a2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ca04b242-915a-407d-9444-bd844414bcc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120727Z:ca04b242-915a-407d-9444-bd844414bcc6" ], "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: B0A9AB66098A4089920C8FD6AC9B567E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:27Z" ], + "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+25": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?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" ], + "x-ms-unique-id": [ "789" ], + "x-ms-client-request-id": [ "8d6a78e5-9d90-4e2b-8afa-1ea31b824207" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2703,37 +3846,44 @@ "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": [ "fcaf8574-2f44-43c5-9a96-8c486e32dbb4" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5dd62c9d-8ffe-4dbf-a8d4-6013b9119890" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4c66cff3-cd64-4c34-ad32-13e1f680b3b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120728Z:4c66cff3-cd64-4c34-ad32-13e1f680b3b4" ], "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: 35459CFA6A29490C9A340B7B2A9D4513 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:28Z" ], + "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "4249" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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/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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01+26": { "Request": { - "Method": "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}", + "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": [ "790" ], + "x-ms-client-request-id": [ "3a02b45e-5997-4867-8a7d-8ac3255a23f4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] } }, "Response": { @@ -2742,43 +3892,39 @@ "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": [ "1f2bf05b-1719-4692-909b-8ffa431872d8" ], "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/d9242123-e5a8-44df-bfc3-e2898a8faec1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fca6a4c4-5a61-496a-9d0e-38cb172be8d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120728Z:fca6a4c4-5a61-496a-9d0e-38cb172be8d7" ], "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: 1017C41B40124629BF763E8B07A045F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:28Z" ], + "Date": [ "Wed, 12 Nov 2025 12:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "36851" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+27": { "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, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": { - "x-ms-unique-id": [ "523" ], - "x-ms-client-request-id": [ "118e1cd1-7676-44e6-a4f2-f6e24897b3aa" ], - "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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "206" ] } }, "Response": { @@ -2786,42 +3932,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CCEC6E700B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "357ac7f8-c971-4f62-83e4-42854e43b1c2" ], + "x-ms-request-id": [ "ec64a9f3-4f0b-47eb-be6d-d29e155e6028" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d6161efa-7e61-4ae3-aa7a-ac58b252bd2a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "64c6ecaf-1e3b-466f-908e-64c78dc19e40" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120732Z:64c6ecaf-1e3b-466f-908e-64c78dc19e40" ], "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: 5C6AE52A101649338DD44776AC2FA76B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:28Z" ], + "Date": [ "Wed, 12 Nov 2025 12:07:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1908" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"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-12T12:07:31.02\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+28": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "792" ], + "x-ms-client-request-id": [ "8e432e5d-2061-4f19-a50e-2fc20d03e64e" ], + "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -2832,41 +3980,41 @@ "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": [ "09bd42e4-6d56-44b3-bc35-d19fe2670796" ], "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": [ "cb51c81f-30d6-428f-ae78-f9ead4c6dc2c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:cb51c81f-30d6-428f-ae78-f9ead4c6dc2c" ], "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: B7AE926DD80F4E6186296561C5D62F0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1818" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"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-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-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+29": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "793" ], + "x-ms-client-request-id": [ "8e432e5d-2061-4f19-a50e-2fc20d03e64e" ], + "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -2877,40 +4025,40 @@ "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": [ "7afbc5a7-6c41-47c6-8f82-8ee40abae528" ], "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": [ "c8926dab-c041-41f6-9d26-133a487c7989" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:c8926dab-c041-41f6-9d26-133a487c7989" ], "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: 8F7E23DCA193440AAA6B0F252060144A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1818" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+30": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "794" ], + "x-ms-client-request-id": [ "5ef88c79-d090-48fc-8287-a88c2b4e8eb9" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2922,40 +4070,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aacb616c-697c-43e6-8432-8bc097a7fd76" ], + "x-ms-request-id": [ "afc4ce21-c666-45ec-ac54-fcb7f7dfbec1" ], "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-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fb3b0097-83b7-4ac2-9d41-232a4b50858d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:fb3b0097-83b7-4ac2-9d41-232a4b50858d" ], "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: DC3747C49B614F46B8290B3914DD90BF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1818" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"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-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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "795" ], + "x-ms-client-request-id": [ "19431fb7-db64-4d82-9079-ff2f0900bd5b" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2966,41 +4114,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CCD76A304B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ae5c933-d0ac-45e5-8183-c17469481b69" ], + "x-ms-request-id": [ "e447d7bc-7761-4311-b364-2b26fec68452" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c6182af7-5777-4f53-a926-b8a3c3305302" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:c6182af7-5777-4f53-a926-b8a3c3305302" ], "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: 6B37729BFAE646B0A68892458D4CAE03 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "8730" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:56.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+32": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?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" ], + "x-ms-unique-id": [ "796" ], + "x-ms-client-request-id": [ "7fc3d44f-bc22-405e-9803-e6bb568c55ce" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3011,39 +4160,41 @@ "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": [ "f12639e8-3613-4deb-bf18-2528ff246e57" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c63b26bd-ce52-4394-b255-d86881693e05" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "60841586-b74c-4f02-99a2-d5ff304cb402" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120804Z:60841586-b74c-4f02-99a2-d5ff304cb402" ], "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: 86BECB07FF714180A09D76288F046735 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"}}", "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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+33": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "3640cdd8-8bb2-47f0-9371-9a2db75292f7" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "x-ms-unique-id": [ "797" ], + "x-ms-client-request-id": [ "5c8107fd-537a-4520-8ddd-8f562d44dc30" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3054,37 +4205,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b3cd909d-5c3c-41ff-84fd-f43fd6e16539" ], "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-request-id": [ "5cf067b5-5118-45af-a8d4-ff4dd469e3ce" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4983f23d-415e-4913-8d96-28d403bc4fc7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "659b7448-76b9-4ed1-86b9-2b85f9b41515" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120804Z:659b7448-76b9-4ed1-86b9-2b85f9b41515" ], "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: 68E4616A76E24014887D1074F8399004 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "4249" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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+$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/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+34": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "798" ], + "x-ms-client-request-id": [ "7910b8f5-928f-47ed-a467-6dc0e9b90951" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -3092,40 +4251,43 @@ "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": [ "aa63a4a0-d96f-4121-9a1d-dfe50b2dd545", "49b553d8-152e-4dc3-8ea2-86e2e2e61d85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "9a8defff-1966-4059-988f-67abf0128e75" ], + "x-ms-correlation-request-id": [ "9a8defff-1966-4059-988f-67abf0128e75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120805Z:9a8defff-1966-4059-988f-67abf0128e75" ], "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-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: 08A7290278084914B1136428E6838400 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "20673" ], "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": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501669,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501671,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501675,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+35": { "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": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "799" ], + "x-ms-client-request-id": [ "414dc749-dba8-4a81-92e9-c42fa82b27e4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1786" ] } }, "Response": { @@ -3133,43 +4295,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796110468B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbad5aae-17e7-4729-97d0-5eaff5692eb0" ], + "x-ms-request-id": [ "749c2e44-1d25-4806-a359-179a511828af" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1e5e2b59-7f93-4457-a118-e2d07a4ae73f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120805Z:1e5e2b59-7f93-4457-a118-e2d07a4ae73f" ], "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: 9A561870AE084F4E9BBB437E07712C08 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "1819" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?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" ], - "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" ] + "x-ms-unique-id": [ "800" ], + "x-ms-client-request-id": [ "5114b61c-0705-4a82-858b-4f96140ccce9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -3179,42 +4340,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "21dbbe2c-8d43-4ad4-8276-daf626e01d93" ], + "x-ms-request-id": [ "ad86fe64-b637-4188-a068-00652718ec26" ], "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": [ "6111c985-c851-4cf5-a06a-38e8209698f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120805Z:6111c985-c851-4cf5-a06a-38e8209698f8" ], "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: CAC45012E7CC46D6BD2580825E780661 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "1782" ], "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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "801" ], + "x-ms-client-request-id": [ "b16cf72a-de89-46dc-bb60-7461c3008a2c" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3225,42 +4385,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f6a49311-617c-41a4-b2ff-6090287e9b0b" ], + "x-ms-request-id": [ "4bd07ed5-c634-49b4-98d6-91ad453323f0" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fd4b0354-0163-4aad-9253-543f13995915" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:fd4b0354-0163-4aad-9253-543f13995915" ], "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: 232061FDDAAE465BBB557DC519FD9D2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "1746" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01+38": { "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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "802" ], + "x-ms-client-request-id": [ "0fd871e7-48fa-4715-ad2e-d01c51c34e4b" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3272,40 +4431,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": [ "8bb8c932-e096-4c7c-a446-fac97c03b92b" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62f72449-902b-4a9e-9c53-d5fff9bc299d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:62f72449-902b-4a9e-9c53-d5fff9bc299d" ], "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: 20578BED6CB544108DE4F91AF0977AC5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1758" ], "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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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-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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "803" ], + "x-ms-client-request-id": [ "d37c7d1b-a6fb-4a22-be1c-7c667e29afc5" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3317,40 +4476,40 @@ "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": [ "79caf58f-c4a7-480b-a7b3-8392efab462a" ], "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-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2e9643ca-5f4f-4a04-be53-d978ef0015b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:2e9643ca-5f4f-4a04-be53-d978ef0015b1" ], "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: 236BCFFE90E34546B4368253DF168D02 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "1735" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-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/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-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": [ "804" ], + "x-ms-client-request-id": [ "fc488fc6-9f05-4862-86ff-f2997c07ca93" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3361,42 +4520,41 @@ "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": [ "e93c300c-581a-45d0-a89a-e52f25c3e632" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d4fb6056-8e16-4035-b053-c68e0c57564e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:d4fb6056-8e16-4035-b053-c68e0c57564e" ], "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: 5B1408C68DA64DA5B4A0F6A22FB1CBF2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "1747" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":19931,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-335_19931\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:03:07.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$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/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+41": { "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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" ], + "x-ms-unique-id": [ "805" ], + "x-ms-client-request-id": [ "506784f0-5d2b-4fe9-8ccf-1129dfbbb885" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3408,40 +4566,40 @@ "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": [ "8097354c-ee50-4c51-915a-2cc3af813705" ], "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": [ "d30c4672-700c-457b-9632-4524a0386582" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:d30c4672-700c-457b-9632-4524a0386582" ], "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: 0CB75ADB32E743E4BFAADD5CCC2F0C8F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1814" ], "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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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" ], + "x-ms-unique-id": [ "806" ], + "x-ms-client-request-id": [ "f038e091-b500-44df-800f-cda74d86e53e" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3453,40 +4611,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": [ "326ff8a8-2cc4-4f8e-9aa8-a85c7f2405aa" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "36fdffe0-ad4c-4aa0-9cdf-87643337157a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120807Z:36fdffe0-ad4c-4aa0-9cdf-87643337157a" ], "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: FDD1429B7342449AB437389154FB8F62 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "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/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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+43": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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": [ "807" ], + "x-ms-client-request-id": [ "cd8c6b6b-dc53-47f7-82b2-e0925af5e6da" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3498,38 +4656,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": [ "ced54ac7-5ea8-4608-989e-ce9a99a79dd5" ], "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": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "ecad2658-d8cf-4cb0-a0d5-e9efb6313810" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120807Z:ecad2658-d8cf-4cb0-a0d5-e9efb6313810" ], "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: BE2C214A01D9435097C0197619AA296F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"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+$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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+44": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "808" ], + "x-ms-client-request-id": [ "d982433b-325c-4e90-bae3-5a725917fc55" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1868" ] } }, "Response": { @@ -3537,43 +4700,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b83a35b-8199-41d6-887e-7021db087f41" ], + "x-ms-request-id": [ "b8d3cddd-94a6-411e-b716-2fcfb010d1ba" ], "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": [ "011ecd29-8dab-4ccc-be48-5b3d3875ddc1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120807Z:011ecd29-8dab-4ccc-be48-5b3d3875ddc1" ], "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: E5552081C68147809D9E329168255F34 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7657" ], + "Content-Length": [ "1818" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"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-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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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": [ "809" ], + "x-ms-client-request-id": [ "8362547b-371a-4c4e-8ae4-27061a79899e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -3583,42 +4745,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": [ "dddb6953-658f-4076-9a70-e1427bee4ab2" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "95e94fff-4587-41b1-bf66-62df50497005" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120808Z:95e94fff-4587-41b1-bf66-62df50497005" ], "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: CC6EF6DA50CF4676A39E137933A0C424 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "1823" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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": [ "810" ], + "x-ms-client-request-id": [ "b3c2f001-478c-4373-8926-3affd02f2de6" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3629,42 +4790,41 @@ "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": [ "50641439-6ce0-4351-8e54-d2d35c778005" ], "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "42fd288c-268d-45b2-ad98-b224c5cb2e00" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120808Z:42fd288c-268d-45b2-ad98-b224c5cb2e00" ], "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: 376D5E2F2D2C4B919E5F1EA24D0F3464 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "1701" ], "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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$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/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+47": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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": [ "811" ], + "x-ms-client-request-id": [ "9853bcb5-8f07-4086-bd02-30c24eeef084" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3676,40 +4836,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b188baf-e0f4-4f04-aa86-0491f1aa2c5c" ], + "x-ms-request-id": [ "7991f9ff-212a-442e-96fb-ba5b8245bfcb" ], "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-correlation-request-id": [ "2e007b05-8baf-4f7c-a375-d9516782a4ad" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T120809Z:2e007b05-8baf-4f7c-a375-d9516782a4ad" ], "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: CF459856C547401B873EEEE769D3785B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1820" ], "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\",\"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-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"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-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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+48": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?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": [ "812" ], + "x-ms-client-request-id": [ "60c6c37c-f7a4-4bea-96ae-92028c6de2e3" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3721,43 +4881,38 @@ "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": [ "566b0ce0-63ab-4aa2-baa1-a62270e1f980" ], "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-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59723c2c-7dac-4601-9f39-deca217132b5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2f846d27-f0cd-43c1-a7a3-617a3ecbdd50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120809Z:2f846d27-f0cd-43c1-a7a3-617a3ecbdd50" ], "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: BC54C69D28314E55BD0C2963A2BC8E41 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "1239" ], "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-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"}}", "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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+49": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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": { - "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]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1879" ] } }, "Response": { @@ -3765,123 +4920,137 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37986106C55\"" ], + "ETag": [ "\"1DC53CCD76A304B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4c98c19-e77d-4eaf-ac48-6f0abe82485a" ], + "x-ms-request-id": [ "a11b2638-025b-4b01-ab99-1e29eb4efe57" ], "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/45626918-27b0-439e-8dfc-2276b837d784" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "72a25b0e-2747-4fcf-b9e7-b9c8511ed532" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120812Z:72a25b0e-2747-4fcf-b9e7-b9c8511ed532" ], "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: 59FF9F25C8004E72A7B8FFCFB8190146 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:12 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8755" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "814" ], + "x-ms-client-request-id": [ "86e06e9d-e2d0-467a-9ef3-6bce4e7adb4f" ], + "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.4", "Az.Functions/1.0.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": [ "\"1DC53CD0438386B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3a3eb467-98b5-4f20-9077-f73e4ed0c19b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2cb37d0c-1925-4435-a7bd-406e72437e26" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120843Z:2cb37d0c-1925-4435-a7bd-406e72437e26" ], "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: 79715F46D922402BAF22E4D08BF627AD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:42Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8729" ], + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "815" ], + "x-ms-client-request-id": [ "b50c218a-0d3f-4d46-a925-58235cd829a5" ], "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.4", "Az.Functions/1.0.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": [ "\"1DC53CD0438386B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "47678512-9cbc-448d-9ff8-b176872ccf7e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "058adc5a-b8f4-47c3-a6e7-5e1ee7793ce3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120843Z:058adc5a-b8f4-47c3-a6e7-5e1ee7793ce3" ], "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: C3FBF0038CD946E1A2F547061B1226B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8729" ], + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+52": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "816" ], + "x-ms-client-request-id": [ "224450ec-60c0-4ebb-875b-5f75cb145102" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] } }, "Response": { @@ -3890,40 +5059,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": [ "6bcfac7f-42b8-483a-9975-e99688e64fc9" ], "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/e3fce743-215b-47bd-96e3-4f6639412d73" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "25cf263c-4131-450d-9b97-c50363fc4fd5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120843Z:25cf263c-4131-450d-9b97-c50363fc4fd5" ], "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: 21392F1FA8734A4DA34140E42232EC5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+53": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "817" ], + "x-ms-client-request-id": [ "54f7dcfc-91d3-4a4f-acc9-f7c2087d690b" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3935,40 +5104,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": [ "31963418-883a-4ed8-bab3-f1df1f012fdc" ], "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/cde38fb8-c985-4acb-865f-607fdd9836fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4b6af809-68f2-4207-a11a-a38c31b4679e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120844Z:4b6af809-68f2-4207-a11a-a38c31b4679e" ], "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: 4A8BF9BAE7D149AB8B29EA1A1687EF8B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:43 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+54": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "818" ], + "x-ms-client-request-id": [ "bf01d3c7-87bd-4758-86b0-c98577c2cc0a" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3979,41 +5149,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CD0438386B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de252183-8e8c-4e98-a228-e4e2e0368e56" ], + "x-ms-request-id": [ "47e7cb86-4cbb-4cad-9ef6-7c8ba997fe75" ], "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": [ "bba98b26-fc5f-45d2-8482-842278c3ce5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120844Z:bba98b26-fc5f-45d2-8482-842278c3ce5a" ], "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: 8721CEA855A24211BAA28D77130CD595 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "8729" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+55": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "819" ], + "x-ms-client-request-id": [ "1005c87f-5be8-4584-9363-b01011791e37" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4025,40 +5196,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": [ "b6602202-6312-4c09-b989-51f33fd14954" ], "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/022dcb28-5715-492f-ba6b-43b8caf81381" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "30cb9a72-7b1b-4804-8784-2fee9bdd1225" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120844Z:30cb9a72-7b1b-4804-8784-2fee9bdd1225" ], "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: 7957B3DA500441DFB41EE0187F13D917 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "820" ], + "x-ms-client-request-id": [ "be2818c7-881b-4080-9255-51c0a4ef4bde" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4070,40 +5241,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": [ "0a8de263-9b9f-457e-a15b-2c5dce17b084" ], "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/26f2bf8e-3eaa-481b-bd69-06671d1a859f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "458afd35-5ce9-4f48-a8a2-2fce81416dbd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120845Z:458afd35-5ce9-4f48-a8a2-2fce81416dbd" ], "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: 19C772BEC9A64A8A965D857B7DDBF4B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:44 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "821" ], + "x-ms-client-request-id": [ "a93359d6-489d-4e9a-9dc9-32bb1720cb72" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4115,43 +5287,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": [ "19efaee8-fd04-4d55-a3f6-c62803cf4c75" ], "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/59056e72-fa5d-4f0c-ab5a-7cb5fec00ed9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "af551fee-b56b-4ce6-a1cd-92eb57bf3a22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120845Z:af551fee-b56b-4ce6-a1cd-92eb57bf3a22" ], "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: 714FBB83032A4FE5B3E7D1B201B3AF48 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:45Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+58": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { - "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": [ "1869" ] } }, "Response": { @@ -4159,40 +5326,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1753989e-528a-4c2f-a02e-d45e858b6014" ], + "ETag": [ "\"1DC53CD0438386B\"" ], "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": [ "a059cf33-9701-499e-a949-cb8da9ba8bf8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44c74f9a-74d1-433d-9064-27bf02cb2da6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "18406459-bd70-4b15-b279-633cf626e338" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120847Z:18406459-bd70-4b15-b279-633cf626e338" ], "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: 2387721F09FF48ED9525886F1EA482CC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:45Z" ], + "Date": [ "Wed, 12 Nov 2025 12:08:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "8610" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.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\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+59": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "823" ], + "x-ms-client-request-id": [ "6efe5251-e2bd-463c-89b8-f0f2abafd0c2" ], + "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -4202,37 +5372,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "52a605ed-e261-4799-86ef-5c1a1919e225" ], + "ETag": [ "\"1DC53CD19449B80\"" ], "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": [ "23b8f822-4e36-4253-b799-6f2ce91c7f37" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b27a80e7-2eb7-42d7-b1e5-2c5fa43a83c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120918Z:b27a80e7-2eb7-42d7-b1e5-2c5fa43a83c7" ], "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: E5D8B1D141994C6A8A43754C8149C44A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "8584" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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+$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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+60": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "824" ], + "x-ms-client-request-id": [ "4a442759-53c9-4633-b71d-507183a0399e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -4240,40 +5418,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": [ "\"1DC53CD19449B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ "91885cd8-53c1-4b6e-9079-1f0128fdd752" ], + "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": [ "52c34bce-3270-4b15-b3a9-8015bd012451" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120918Z:52c34bce-3270-4b15-b3a9-8015bd012451" ], + "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: ABF631F01CD94CBCA4D45269E41DBB32 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8584" ], + "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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+$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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+61": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "825" ], + "x-ms-client-request-id": [ "dad43a11-29c8-4945-a6c1-df2ccb924e97" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1786" ] } }, "Response": { @@ -4281,43 +5464,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": [ "cbe3bb62-5662-4bb1-af4e-d672c9b140d3" ], "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/f7ea77c0-15de-43c2-998a-be92bf07ccb5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d49d3627-6a80-444d-9a57-33d29302b9e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120918Z:d49d3627-6a80-444d-9a57-33d29302b9e6" ], "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: 5A67514BBEC0462F8029727DF17B5478 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7512" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+62": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "826" ], + "x-ms-client-request-id": [ "ff7ff1c0-e6b1-45d9-8754-9bfc8ca2ea71" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -4327,42 +5509,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": [ "da11fbea-52e7-43a6-bbbd-7e29876eb4c4" ], "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/40bc4dcb-a983-4a70-99b5-1d7cb92a41d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9d09120b-122e-4fd6-9cb5-06102464a748" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120919Z:9d09120b-122e-4fd6-9cb5-06102464a748" ], "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: 5374E3DA1D584A2FB2763892CA0B6941 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:18 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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]+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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "827" ], + "x-ms-client-request-id": [ "4d89e972-efea-4e67-87ab-c5792a7a5861" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4373,42 +5555,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379B5BEF220\"" ], + "ETag": [ "\"1DC53CD19449B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b44a2c4-df2f-4d02-a3c5-a38c3ae95ac6" ], + "x-ms-request-id": [ "fa57e280-1d72-4220-b6cd-88f2f1d2811e" ], "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": [ "9637f3c7-651f-4bbe-b050-02b1f6782019" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120919Z:9637f3c7-651f-4bbe-b050-02b1f6782019" ], "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: B871A2EC551E499E909BCE28D8EF110B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "8584" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "828" ], + "x-ms-client-request-id": [ "f2853a50-3aa6-4401-86c0-e36625185e5d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4420,40 +5602,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": [ "960595ad-89d4-4d64-a019-fda7ced6ba23" ], "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/f26e9e2a-55ef-4627-ad52-60346e7b034f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "0f8e5c47-a613-4120-8ccb-b258263ec289" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120919Z:0f8e5c47-a613-4120-8ccb-b258263ec289" ], "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: 3AA56252A72A4163BB3450491A38A1C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+65": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "829" ], + "x-ms-client-request-id": [ "991016d2-cbf2-4076-9227-262a815e5e71" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4465,40 +5647,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": [ "c013d92d-1f97-4cd4-bf37-bc710d7ceea1" ], "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/27b2dd1a-5c5d-47c9-8834-0e6128aa77a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f82a3309-808e-4ea3-8f6f-89256d5b03c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120920Z:f82a3309-808e-4ea3-8f6f-89256d5b03c4" ], "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: FE04DD40D99C4ED2B8A0D33DD31DB015 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:19 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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]+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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "830" ], + "x-ms-client-request-id": [ "e52ad1da-af24-4660-82ef-064b16f13ca3" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4509,42 +5692,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": [ "c7fe653f-2e60-4cd8-be0a-daf271b13281" ], "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/c3c47d0e-a115-4005-9677-0cf8861113d9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4746d176-b73b-4822-944c-b5053c58ae52" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120920Z:4746d176-b73b-4822-944c-b5053c58ae52" ], "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: 3A460D27049A442BA62649673134DAC7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:20Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "1239" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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+$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+67": { "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": [ "831" ], + "x-ms-client-request-id": [ "014c3b5e-29c7-42fb-b77b-dab581d79960" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4555,42 +5737,82 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "", "" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5701561c-4329-4cb8-86ca-4098ee50386a" ], + "x-ms-correlation-request-id": [ "5701561c-4329-4cb8-86ca-4098ee50386a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120921Z:5701561c-4329-4cb8-86ca-4098ee50386a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 20FE6C16D89D47B8BA000CAEB1E7B776 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:20Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "41614" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"6f061e9d-0000-0300-0000-69146ace0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-du1wbt\",\"AppId\":\"4a4e9fad-07ee-475e-930e-550a8185b341\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"81a4af07-3a28-45a4-9de3-dd42f3385a36\",\"ConnectionString\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\",\"Name\":\"Functions-PowerShell-74-du1wbt\",\"CreationDate\":\"2025-11-12T11:08:57.5485889+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-du1wbt_4a4e9fad-07ee-475e-930e-550a8185b341_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-du1wbt-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f0644b5-0000-0300-0000-69146b1d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-e0u29b\",\"AppId\":\"2a429c15-cebd-4a2e-95df-beeca23b63ac\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"981c27d1-6867-46be-87f2-42bca97c6c04\",\"ConnectionString\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\",\"Name\":\"Functions-Node-22-e0u29b\",\"CreationDate\":\"2025-11-12T11:10:17.0591899+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-e0u29b_2a429c15-cebd-4a2e-95df-beeca23b63ac_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-e0u29b-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f0677c6-0000-0300-0000-69146b570000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/microsoft.insights/components/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-1axywr\",\"AppId\":\"4d9ad9ab-1bf4-43c6-9323-4b55fba45329\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"803c0538-84d0-43dc-9582-8a96eb8291f7\",\"ConnectionString\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\",\"Name\":\"Functions-DotNet-8-1axywr\",\"CreationDate\":\"2025-11-12T11:11:15.6369552+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-1axywr_4d9ad9ab-1bf4-43c6-9323-4b55fba45329_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-1axywr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f0654e2-0000-0300-0000-69146bb80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-flmd3a\",\"AppId\":\"50af0760-dae4-471d-909e-6adb861ceda1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e5df6ce2-ade0-4846-9375-91cbac44fd63\",\"ConnectionString\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\",\"Name\":\"Functions-Python-312-flmd3a\",\"CreationDate\":\"2025-11-12T11:12:52.4377633+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-flmd3a_50af0760-dae4-471d-909e-6adb861ceda1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-flmd3a-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f06faf3-0000-0300-0000-69146bfc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl-new\",\"name\":\"Functions-PowerShellTest-u074f23mpl-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-u074f23mpl-new\",\"AppId\":\"a216cd51-e495-41b1-87f4-8d6afd178401\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"6d61e4a0-2d68-4b31-aac3-2033202c388f\",\"ConnectionString\":\"InstrumentationKey=6d61e4a0-2d68-4b31-aac3-2033202c388f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a216cd51-e495-41b1-87f4-8d6afd178401\",\"Name\":\"Functions-PowerShellTest-u074f23mpl-new\",\"CreationDate\":\"2025-11-12T11:13:59.9408869+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-u074f23mpl-new_a216cd51-e495-41b1-87f4-8d6afd178401_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7006284a-0000-0300-0000-69146d120000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"AppId\":\"cd31381e-3776-48e0-96bb-536f3b046173\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ccdcf4f1-f4f9-450a-840a-a67055ad7238\",\"ConnectionString\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"Name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"CreationDate\":\"2025-11-12T11:18:14.8420581+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-xj3rn0czbp_cd31381e-3776-48e0-96bb-536f3b046173_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-xj3rn0czbp-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"710656fd-0000-0300-0000-6914731b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-yji9lmaxko\",\"AppId\":\"9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8b8afcaa-2646-4009-95c4-6e2cf3b772bc\",\"ConnectionString\":\"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\"Name\":\"Functions-CustomImage-yji9lmaxko\",\"CreationDate\":\"2025-11-12T11:44:23.2238886+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-yji9lmaxko_9feb715d-3efc-439e-aaed-40eb4c7fba8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-yji9lmaxko-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72068313-0000-0300-0000-6914736b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-10bxo65l7g\",\"AppId\":\"7967637b-0d12-45cd-8669-9c7aa63ed33a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5e580f9c-4125-4781-8542-efa816dacafb\",\"ConnectionString\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\",\"Name\":\"Functions-Python-10bxo65l7g\",\"CreationDate\":\"2025-11-12T11:45:43.3663723+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-10bxo65l7g_7967637b-0d12-45cd-8669-9c7aa63ed33a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-10bxo65l7g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72069527-0000-0300-0000-691473b60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-u074f23mpl\",\"AppId\":\"dce78295-bb82-4bc2-907e-e7da2d157471\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be\",\"ConnectionString\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"Name\":\"Functions-PowerShellTest-u074f23mpl\",\"CreationDate\":\"2025-11-12T11:46:55.9737326+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-u074f23mpl_dce78295-bb82-4bc2-907e-e7da2d157471_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7206cd58-0000-0300-0000-6914746e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-u074f23mpl\",\"AppId\":\"10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"78cb4fe9-b95f-4c81-a7da-462e1c332bc2\",\"ConnectionString\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"Name\":\"Functions-PowerShellTest-u074f23mpl\",\"CreationDate\":\"2025-11-12T11:48:32.0439985+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-u074f23mpl_10da85e8-cdbb-43f7-8ba1-7772e0b939aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72063574-0000-0300-0000-691474ce0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-we3pd25b9g\",\"AppId\":\"2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9fca4f76-d133-4a00-955e-b079cbb13fb8\",\"ConnectionString\":\"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\"Name\":\"Functions-DotNet-we3pd25b9g\",\"CreationDate\":\"2025-11-12T11:51:37.1890585+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-we3pd25b9g_2ef6a493-ad79-4c82-bc89-061e4dc0a23e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-we3pd25b9g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7206d49f-0000-0300-0000-691475710000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-pxi52b0hul\",\"AppId\":\"ec32f43d-e585-4348-9f48-b7426ac14ba7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"391f0399-d4c9-408d-9ee9-e4a7e7611b1f\",\"ConnectionString\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\",\"Name\":\"Functions-Java-pxi52b0hul\",\"CreationDate\":\"2025-11-12T11:54:19.3903837+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-pxi52b0hul_ec32f43d-e585-4348-9f48-b7426ac14ba7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-pxi52b0hul-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"720651b1-0000-0300-0000-691475b50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-qb4h0d3z2x\",\"AppId\":\"eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0f83d0db-c8a1-4f7e-8398-8cbda33e68e9\",\"ConnectionString\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\"Name\":\"Functions-Node-qb4h0d3z2x\",\"CreationDate\":\"2025-11-12T11:55:28.9646342+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-qb4h0d3z2x_eb0309fc-c8ce-4195-9fc9-a0e6050cac3f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-qb4h0d3z2x-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72069dc6-0000-0300-0000-691476070000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"AppId\":\"58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6d43c560-5f34-4318-87ba-95d3aa047695\",\"ConnectionString\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\"Name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"CreationDate\":\"2025-11-12T11:56:50.257685+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-isolated5ivf3pq4d9_58148da6-f1bc-4e01-b683-6b3ee1fe827e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated5ivf3pq4d9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7206bde0-0000-0300-0000-691476690000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlerh7ucdtvris\",\"AppId\":\"da9cceb4-1628-4015-b256-68f4e8b0a511\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"842eaed2-2241-4893-872c-1c95bd2f5a61\",\"ConnectionString\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\",\"Name\":\"Functions-CustomHandlerh7ucdtvris\",\"CreationDate\":\"2025-11-12T11:58:28.4933694+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlerh7ucdtvris_da9cceb4-1628-4015-b256-68f4e8b0a511_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerh7ucdtvris-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7306170d-0000-0300-0000-6914770d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"AppId\":\"9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9de2c055-196f-42d0-b5e1-cf9251513b66\",\"ConnectionString\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\"Name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"CreationDate\":\"2025-11-12T12:01:13.6018697+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-wxft49p0i3_9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-wxft49p0i3-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"73068330-0000-0300-0000-691477910000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"AppId\":\"64f96b84-5dae-4dde-859f-d44584f74648\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6b443061-498c-46df-87bc-0d0c318c30cf\",\"ConnectionString\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\",\"Name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"CreationDate\":\"2025-11-12T12:03:24.3148657+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-o8n3yqx5lc_64f96b84-5dae-4dde-859f-d44584f74648_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-o8n3yqx5lc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7306795d-0000-0300-0000-691478350000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"AppId\":\"2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de\",\"ConnectionString\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"Name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"CreationDate\":\"2025-11-12T12:06:09.0902113+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-2g56pvnthz_2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-2g56pvnthz-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03cb7e-0000-0200-0000-69146d970000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-112925\",\"AppId\":\"8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"27ea1b07-fd8d-4548-b836-6f3963752f28\",\"ConnectionString\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\"Name\":\"Functions-Flex-DotNetIsolated-112925\",\"CreationDate\":\"2025-11-12T11:20:35.2452925+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-112925_8b3f974d-4b75-41fc-8ec1-52ae2bb0decd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e030783-0000-0200-0000-69146e1a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-112925\",\"AppId\":\"f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"2d0c1a0a-2951-423f-8471-574b6e71fb7d\",\"ConnectionString\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\"Name\":\"Functions-Flex-Node-112925\",\"CreationDate\":\"2025-11-12T11:22:55.045101+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-112925_f0410b81-5d3e-4655-9df6-b3118e3db5d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03d785-0000-0200-0000-69146e9c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-112925\",\"AppId\":\"d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0cce5e22-34fc-4579-82f2-611013da28fa\",\"ConnectionString\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\"Name\":\"Functions-Flex-Python-112925\",\"CreationDate\":\"2025-11-12T11:25:04.1330297+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-112925_d33efadf-7035-40be-bcb8-42d8b5eeaa38_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e036188-0000-0200-0000-69146f220000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-112925\",\"AppId\":\"522e7f15-b24b-4f68-920f-130c48d314ea\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e653ce75-d374-49fd-a265-275d62e89fb1\",\"ConnectionString\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\",\"Name\":\"Functions-Flex-Java-112925\",\"CreationDate\":\"2025-11-12T11:27:18.2695179+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-112925_522e7f15-b24b-4f68-920f-130c48d314ea_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03698b-0000-0200-0000-69146fa50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-112925\",\"AppId\":\"7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8026b150-b89d-4d44-81af-aa397315fd16\",\"ConnectionString\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\"Name\":\"Functions-Flex-PowerShell-112925\",\"CreationDate\":\"2025-11-12T11:29:26.9007368+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-112925_7ff6c5cf-b63f-4a5d-a007-50d204c8dae4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03f58f-0000-0200-0000-691470310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-112925\",\"AppId\":\"3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f6f831aa-5e80-4794-9339-96325a999025\",\"ConnectionString\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\"Name\":\"Functions-Flex-Custom-112925\",\"CreationDate\":\"2025-11-12T11:31:50.9829727+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-112925_3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e031b94-0000-0200-0000-691470b50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-112925\",\"AppId\":\"6c98ccd8-e53a-451d-a19f-554753026e85\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dfc253e3-77b0-4844-94e1-32dcd5882a3f\",\"ConnectionString\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\",\"Name\":\"Functions-Python-Flex-Scaling-112925\",\"CreationDate\":\"2025-11-12T11:33:57.6896087+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-112925_6c98ccd8-e53a-451d-a19f-554753026e85_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e032497-0000-0200-0000-691471380000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-112925\",\"AppId\":\"6a33d57a-89ba-47c9-822f-a404ba432ebb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d94d8d1d-e341-455d-bf5e-6d34b12c1ee6\",\"ConnectionString\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\",\"Name\":\"Functions-Node-SystemIdentity-112925\",\"CreationDate\":\"2025-11-12T11:36:13.5609158+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-112925_6a33d57a-89ba-47c9-822f-a404ba432ebb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03a29a-0000-0200-0000-691471be0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"AppId\":\"b67d6d86-8122-4475-8e21-d77b809defdc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ccecbaee-8cab-45d3-be5b-5192664369ea\",\"ConnectionString\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"CreationDate\":\"2025-11-12T11:38:27.6901102+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-1129_b67d6d86-8122-4475-8e21-d77b809defdc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03079e-0000-0200-0000-6914724a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-112925\",\"AppId\":\"737a23a8-f881-4961-bffc-251143cffa60\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"63ba4b8f-4132-45cd-82df-dc9432538e53\",\"ConnectionString\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"Name\":\"Functions-PS-CustomConfig-112925\",\"CreationDate\":\"2025-11-12T11:40:47.4450527+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-112925_737a23a8-f881-4961-bffc-251143cffa60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-112925-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+68": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"6d61e4a0-2d68-4b31-aac3-2033202c388f\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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": [ "1961" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CD19449B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d32eabb5-9ed2-48db-b11b-40d0a967fe3b" ], + "x-ms-request-id": [ "b15df3f8-4d95-4cdb-bd34-da4cc4e947f3" ], "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/11fa6f0f-2a7b-4f74-a760-74f1e8ac462d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9637e308-82b2-4bf4-874a-f454bb3ac2bd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T120926Z:9637e308-82b2-4bf4-874a-f454bb3ac2bd" ], "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: 0AF5BCD0D0BA4B24807FA512D508E7A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:21Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "8615" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:09:22.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "833" ], + "x-ms-client-request-id": [ "6629f53a-f3cc-42c9-9f59-43eabd0bfd9f" ], + "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -4600,41 +5822,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CD2E77A66B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80a34757-e1a3-48e4-9baa-b1d30cd46ee3" ], + "x-ms-request-id": [ "1a515090-e5d1-40d7-a10f-b3606dd8d47b" ], "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": [ "12e3c7fa-a562-45f2-b729-f3eb71faad4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120956Z:12e3c7fa-a562-45f2-b729-f3eb71faad4d" ], "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: 90862FA86BC04C64A4C010896BB05B6A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "8589" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:09:22.7266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+70": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "834" ], + "x-ms-client-request-id": [ "79940882-14ee-4b45-8c15-4376159f4fde" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4646,38 +5869,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": [ "fc1f1342-7d76-4ac5-be17-01e2e5e256d7" ], "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/238a6bf9-40c5-4475-8dff-86b15405d4c4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "840c3456-60fe-4ec0-a58b-35320c6cffd6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:840c3456-60fe-4ec0-a58b-35320c6cffd6" ], "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: 675BEF0CEFC5446CB651A8011161789D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1311" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"6d61e4a0-2d68-4b31-aac3-2033202c388f\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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+$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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+71": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "835" ], + "x-ms-client-request-id": [ "9763917f-a0bf-4d21-ae8b-c1381920686e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "2096" ] } }, "Response": { @@ -4685,43 +5913,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379B5BEF220\"" ], + "ETag": [ "\"1DC53CD2E77A66B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5c38df8-76ee-4007-aeb6-0f025bb3c0e2" ], + "x-ms-request-id": [ "07534e11-7f19-4959-8efd-5434e920cffe" ], "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": [ "79b2af50-eb47-4137-948d-b20feb6f21a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:79b2af50-eb47-4137-948d-b20feb6f21a1" ], "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: CA90F8A4B5BD4B89B31C8F75B205C4B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7854" ], + "Content-Length": [ "8589" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:09:22.7266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?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": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "836" ], + "x-ms-client-request-id": [ "7ad43204-93a5-4864-92f8-15f603e85962" ], + "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.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -4731,42 +5959,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": [ "ba2ef03b-9168-41a1-9ad8-b50321fafe78" ], "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/ac7b8ec9-89b7-4735-a735-778093d8b780" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e5eb155c-639c-42d5-b012-ff66faa29972" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:e5eb155c-639c-42d5-b012-ff66faa29972" ], "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: AA7F75BF2C044BD480C14D0762DBDE53 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7650" ], + "Content-Length": [ "1311" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"6d61e4a0-2d68-4b31-aac3-2033202c388f\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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": [ "837" ], + "x-ms-client-request-id": [ "780ac630-a5de-48f4-a9b9-1db1e889e8ff" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4777,42 +6004,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": [ "a8326f22-ae05-44a7-98b2-2d980788e7da" ], "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/fc1e1d26-8f82-49b4-a477-97bb96eb25b2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "332ba295-540a-4eff-816f-abeaf94ed824" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:332ba295-540a-4eff-816f-abeaf94ed824" ], "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: 901F93B1A7C54EEB9CCCD892DED6F09B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:09:57 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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]+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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+74": { "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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": [ "838" ], + "x-ms-client-request-id": [ "53210f1b-7823-4913-9020-00f13ae4c28b" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4823,41 +6050,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC53CD2E77A66B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cce0749-ff0d-44c7-a4e0-0d54bafe7aa8" ], + "x-ms-request-id": [ "2cb18253-030f-4184-ae28-2320184bf172" ], "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/6d76285e-727c-4409-b52f-e3b535c8fefe" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "86825cca-5ed7-4b2e-be95-4a6c9b5f39fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121008Z:86825cca-5ed7-4b2e-be95-4a6c9b5f39fa" ], "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: 6276A5F425FA4DD0AB1C93BDB3864BF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:58Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:07 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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+75": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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": [ "839" ], + "x-ms-client-request-id": [ "87abf6e8-e6ec-45c9-bbc8-b103c4a19151" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4869,40 +6097,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": [ "b2b8596b-d0be-4771-8e10-9b36d5dfb5bb" ], "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": [ "44013f78-9e02-418e-ab94-058b9a706e6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121008Z:44013f78-9e02-418e-ab94-058b9a706e6e" ], "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: F78C93DE6E374257867B51AD03BA7C17 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+76": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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": [ "840" ], + "x-ms-client-request-id": [ "f1195e95-43aa-459e-a7dc-f77ab809921a" ], + "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4913,19 +6141,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": [ "03142a5a-e170-4764-9159-722b7aa16f53" ], "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/1d25b1fb-db94-4ef3-bf7c-0f59f986a5b6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "7a664012-7e2e-4d2f-abe1-e8e248eef477" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121014Z:7a664012-7e2e-4d2f-abe1-e8e248eef477" ], "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: A180E45D6E7746D88497FECC485E4AF1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4935,87 +6163,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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+77": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "841" ], + "x-ms-client-request-id": [ "dfb6e66e-c77f-4006-8d2e-5e09b9e5c52c" ], + "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.4", "Az.Functions/1.0.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": [ "96048dc8-67f1-4244-af1c-1ccea1d705ce" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1b5f4f0b-e1f5-4def-9ecc-2a4a723f46d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121014Z:1b5f4f0b-e1f5-4def-9ecc-2a4a723f46d4" ], "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: 412107CAD5BF4524A8DF5A72ABE7C602 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1818" ], + "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+78": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "842" ], + "x-ms-client-request-id": [ "64d5744d-5410-4f66-a66d-2afbaebd351b" ], + "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.4", "Az.Functions/1.0.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": [ "58da223e-692d-4b5b-af98-1b92c5219412" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/81cd8c9f-0843-402d-997f-f443e599e739" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "5b6b22e8-b4f9-4b45-9b97-f4ca76c88519" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121021Z:5b6b22e8-b4f9-4b45-9b97-f4ca76c88519" ], "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: 38603AC28F404628832E7633F2D00408 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:21 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..341a8ed20534 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": [ "843" ], + "x-ms-client-request-id": [ "c2750367-5153-4263-8bcb-66043673f885" ], "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.4", "Az.Functions/1.0.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": [ "740f32fd-c7eb-4a26-9e52-494510886988" ], "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/90f2adab-a852-4a73-89f8-06b169f41d94" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cd7bf1e3-678f-41bd-9e07-c201449716db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121022Z:cd7bf1e3-678f-41bd-9e07-c201449716db" ], "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: 957A2A3B40A6407C80873767823C6BC7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "\"1DC53CD53AC2FAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5463a83f-4804-44dd-9b61-84927d3d0adb" ], + "x-ms-request-id": [ "324a4470-2fe5-4f9c-ac83-72c2cfa413a8" ], "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/83aad83f-554f-40d2-98cc-b42a7372b340" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d9ef9240-2906-4b64-8da9-6f1fee7935bd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T121026Z:d9ef9240-2906-4b64-8da9-6f1fee7935bd" ], "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: 3ACDC7EDB39948E5B9AAA8FAC2AF34AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1714" ], + "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\":\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "845" ], + "x-ms-client-request-id": [ "47a29553-9eaa-4c05-b8c5-fe3cc113196e" ], "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.4", "Az.Functions/1.0.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": [ "590a7875-c1f5-45b0-9ec4-83841c0c8a72" ], "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": [ "4a27ffa2-a8e7-4355-9005-6b536066a060" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121056Z:4a27ffa2-a8e7-4355-9005-6b536066a060" ], "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: 6709C9148D34438BBDE967B870BA091A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "846" ], + "x-ms-client-request-id": [ "47a29553-9eaa-4c05-b8c5-fe3cc113196e" ], "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.4", "Az.Functions/1.0.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": [ "b9f77cc8-f70e-4a50-b445-1b0c863f6974" ], "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": [ "bfd7ea28-c1c5-4ea3-94fe-0bbd1bf1c5c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121056Z:bfd7ea28-c1c5-4ea3-94fe-0bbd1bf1c5c5" ], "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: 6DAF33467E7F495385E1FA6D2AC92993 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "847" ], + "x-ms-client-request-id": [ "a2d77739-f14a-4f67-b7e0-842749d17151" ], "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.4", "Az.Functions/1.0.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": [ "b6441101-3f6f-4edc-90ca-92a0c4ec0a5b" ], "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": [ "a1f41db0-c70f-400b-a0dd-d18c3f4f1d9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121057Z:a1f41db0-c70f-400b-a0dd-d18c3f4f1d9c" ], "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: F9C45FDD528442CD81DE14DB9EAA71CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "848" ], + "x-ms-client-request-id": [ "b767bcb4-2306-4999-aa45-93097652b803" ], "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.4", "Az.Functions/1.0.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": [ "8c9af71e-b1b9-402d-9570-1b44c82c02a9" ], "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": [ "3a5b84dc-66f2-4ba8-b542-163989d948be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121057Z:3a5b84dc-66f2-4ba8-b542-163989d948be" ], "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: 6055782F53D144A19C36CBFCCED85058 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "afff0182-2737-4d24-a80e-1bec768ba6c0" ], "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/6c893a55-e3fb-48ab-a6ac-687e787f8201" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "f76f9f15-b495-4f24-a8ab-79d8f2b523b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121059Z:f76f9f15-b495-4f24-a8ab-79d8f2b523b1" ], "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: B2505A69538A4FAD9AE0C3B8AA80E8D7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:10:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1710" ], + "Content-Length": [ "1905" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "850" ], + "x-ms-client-request-id": [ "add9e682-1737-4a6f-be01-f08606df8097" ], "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.4", "Az.Functions/1.0.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": [ "d9f6e45c-ef8e-4535-9eb8-e764e67bfb10" ], "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": [ "fe513237-2b65-41a8-b1c7-b8c0113c1ad1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121129Z:fe513237-2b65-41a8-b1c7-b8c0113c1ad1" ], "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: 4AA7ABCC734749B7A66646B9F8E33C92 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "851" ], + "x-ms-client-request-id": [ "add9e682-1737-4a6f-be01-f08606df8097" ], "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.4", "Az.Functions/1.0.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": [ "d8f95c53-167a-4990-b837-9e2badcf0114" ], "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": [ "a53e3b70-17c2-47e8-a360-a70da05a7bbb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121129Z:a53e3b70-17c2-47e8-a360-a70da05a7bbb" ], "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: 9D9EEDDCC9234C8AAD1922BC4A49A4C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "852" ], + "x-ms-client-request-id": [ "8d388a70-8778-4579-9016-f615feedc48a" ], "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.4", "Az.Functions/1.0.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": [ "56eb84d6-7171-4912-8e0c-ac0b9acad39e" ], "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": [ "079d3c3c-a04d-4638-bf89-913f6c5128f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121129Z:079d3c3c-a04d-4638-bf89-913f6c5128f4" ], "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: C4CAA143D934486EADED51373A80DCCA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "853" ], + "x-ms-client-request-id": [ "3d2050de-6501-4d9c-9445-650c9e314c02" ], "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.4", "Az.Functions/1.0.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": [ "681c0f5c-1299-4136-93db-db97c62b4760" ], "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": [ "e4309d2a-a3af-468c-9bff-6a346b2f42ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121130Z:e4309d2a-a3af-468c-9bff-6a346b2f42ca" ], "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: 3168B5D0284F4592BD5E50B2C7A4711E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "854" ], + "x-ms-client-request-id": [ "e895add3-8a29-49ab-a0f9-62e4cb21ba5d" ], "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.4", "Az.Functions/1.0.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": [ "69527650-7adf-415a-81ba-6026ac28ed19" ], "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/d5c46665-b7e3-4149-9ebc-c5e9ae4ff3f0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "a44b8143-8156-4fe2-82a5-8f16e458197d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121139Z:a44b8143-8156-4fe2-82a5-8f16e458197d" ], "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: 1975FA531FEA41F5949FF832EC93A882 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:30Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:39 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": [ "855" ], + "x-ms-client-request-id": [ "45f0f089-3526-44d2-83ba-780867825028" ], "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.4", "Az.Functions/1.0.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": [ "b6264212-598d-408e-91ab-1153380de643" ], "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/a0f8f442-60d4-473b-b9b4-609f3f978f8b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b9563cfd-492c-44fe-b156-35c852f0ffa6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121139Z:b9563cfd-492c-44fe-b156-35c852f0ffa6" ], "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: DF106A9F9C624A4886B97D20CB008A28 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:39Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "\"1DC53CD840392A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88a82fb9-5931-490c-bcf2-e6b8a8faf2d6" ], + "x-ms-request-id": [ "b498f316-2b78-4f56-9e5b-ed164ee2ffbc" ], "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/d5eed4f4-01df-404d-be4c-4b0fd65dbca9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "3c5d3db0-ded3-42f0-bd52-d892045ac52b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T121147Z:3c5d3db0-ded3-42f0-bd52-d892045ac52b" ], "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: D872677E5D204A07855B08969998367A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:39Z" ], + "Date": [ "Wed, 12 Nov 2025 12:11:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1719" ], + "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\":\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "857" ], + "x-ms-client-request-id": [ "f7544a4d-dd5d-4795-b8ec-296704c2df59" ], "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.4", "Az.Functions/1.0.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": [ "29ce1de6-d4f7-4db4-bc21-df6e14d93c0f" ], "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": [ "f5cfdfe8-7bf3-4cd0-8104-3b66d1751074" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121217Z:f5cfdfe8-7bf3-4cd0-8104-3b66d1751074" ], "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: 5DBE17FF32F645539F7170016312722C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "858" ], + "x-ms-client-request-id": [ "f7544a4d-dd5d-4795-b8ec-296704c2df59" ], "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.4", "Az.Functions/1.0.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": [ "e2aabd8d-8a20-499e-b156-c989ef784a31" ], "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": [ "50cf0e29-482c-40c6-a3c8-0a92fe3f2f30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121218Z:50cf0e29-482c-40c6-a3c8-0a92fe3f2f30" ], "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: 870900165DCB4FE9B2E32A46C543737A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "859" ], + "x-ms-client-request-id": [ "9d66a21c-f0d4-4e29-a39f-d54adca778c0" ], "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.4", "Az.Functions/1.0.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": [ "fc72b422-fea5-4329-87a9-e7847628ce23" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ad22e4c9-5602-467d-bdcd-dcddfa4a21c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121218Z:ad22e4c9-5602-467d-bdcd-dcddfa4a21c1" ], "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: 14A7E1A61D7D4825990C2EB8A7848017 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1822" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "8842b544-05c0-4ce9-8504-b0f0fb6b9c0c" ], "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/7d5b3aee-7999-4eb2-a3a3-10c9ff54e9c9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "20166b68-34a1-4a6a-a819-28c329793a1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121220Z:20166b68-34a1-4a6a-a819-28c329793a1d" ], "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: 70166E14E1124D1885ED6FC0472933FC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1905" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "861" ], + "x-ms-client-request-id": [ "18e08726-e8ae-4f32-b79b-0126abc212ee" ], "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.4", "Az.Functions/1.0.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": [ "748eb1b6-2dff-41e2-929e-889f96ac4867" ], "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": [ "90b28768-9cb9-42c5-90f4-ab690186c015" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121250Z:90b28768-9cb9-42c5-90f4-ab690186c015" ], "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: 648E796100294A37B11D131FB60CBA9C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "862" ], + "x-ms-client-request-id": [ "18e08726-e8ae-4f32-b79b-0126abc212ee" ], "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.4", "Az.Functions/1.0.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": [ "7e511d8f-282f-463f-83fb-ccaa641a3619" ], "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": [ "c603348a-08a5-4819-a6b6-af2cbdb32020" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121250Z:c603348a-08a5-4819-a6b6-af2cbdb32020" ], "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: A1312FCDD77F4B2E9C4DDFE25A645ABD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "863" ], + "x-ms-client-request-id": [ "8a2cf44f-61fa-4f43-9802-c1f035bd19b0" ], "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.4", "Az.Functions/1.0.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": [ "6e2f9f6e-05f1-42eb-8389-6af40b8711ef" ], "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": [ "1b4bfbce-b5e6-473d-965a-8ee42deee12c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121251Z:1b4bfbce-b5e6-473d-965a-8ee42deee12c" ], "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: E307A3DBE0964A878F7C0BDB8F0643CA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:12:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1820" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "864" ], + "x-ms-client-request-id": [ "147e9bae-a0d6-441b-a7ea-aab56ae4f3ec" ], "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.4", "Az.Functions/1.0.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": [ "e93faaa1-0cc4-41e5-8f90-6c164524bf1f" ], "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/f1b20e50-b74d-4c83-ab5d-7f366874bd63" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "1bc6234b-fc12-4734-ac59-95dff45ddcc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:1bc6234b-fc12-4734-ac59-95dff45ddcc6" ], "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: 68969F9782C44EF8934352197BDF1319 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:51Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:00 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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "865" ], + "x-ms-client-request-id": [ "078935e9-7c12-4138-8072-f24302496724" ], "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.4", "Az.Functions/1.0.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": [ "820f34b4-0cb7-4345-b709-b5107ff2eef6" ], + "x-ms-correlation-request-id": [ "820f34b4-0cb7-4345-b709-b5107ff2eef6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:820f34b4-0cb7-4345-b709-b5107ff2eef6" ], "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: 445CD43515EF40CF948358F32E5F915D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:00 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "866" ], + "x-ms-client-request-id": [ "c2135dff-c81d-4fe9-9fd4-d62ee3396bf1" ], "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.4", "Az.Functions/1.0.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": [ "a0454f59-8bc3-4597-9135-90cff723007c" ], + "x-ms-correlation-request-id": [ "a0454f59-8bc3-4597-9135-90cff723007c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:a0454f59-8bc3-4597-9135-90cff723007c" ], "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: 9A6DF8C93CCE47738EF647B98C3E3E2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:00 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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": [ "867" ], + "x-ms-client-request-id": [ "c40f9506-b67a-440c-8d70-c5d446d1cfda" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1077,32 +1085,33 @@ "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": [ "54a4c702-b31c-4ae0-9e01-f2022d1f05b7" ], "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/30499f3a-5e64-45ea-ad21-b68d5f972ef4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c269a951-cf37-41d1-bdf0-b80cb077b245" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:c269a951-cf37-41d1-bdf0-b80cb077b245" ], "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: AA6B82C128AB49B1B4FDDFD76E383D1A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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", - "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": { }, @@ -1116,43 +1125,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37A4B58FB00\"" ], + "ETag": [ "\"1DC53CDB271A92B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a5a89dd-6f92-4c10-8588-03b1a9ab561d" ], + "x-ms-request-id": [ "b9c0044b-1fab-46ef-82d6-487e57863337" ], "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/westus/b7e6f1f9-8b34-4bd7-8867-57f4520e57d8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "8a4b3fe1-67ee-4b1c-bd95-00ed3d629ae5" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T121305Z:8a4b3fe1-67ee-4b1c-bd95-00ed3d629ae5" ], "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: 3DE20A6C96644962AEA46D024F705233 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "2013" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "869" ], + "x-ms-client-request-id": [ "bd784c60-b371-4b0b-baea-5f0b83a6e122" ], "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.4", "Az.Functions/1.0.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": [ "7a794f33-5717-4b85-a1b9-36ae38fcc34c" ], "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": [ "009b5493-2f23-4f1d-ae1f-3912049dadea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121335Z:009b5493-2f23-4f1d-ae1f-3912049dadea" ], "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: 990610E96B9F4E1A9EB5C11E186F8116 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:35Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1924" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "870" ], + "x-ms-client-request-id": [ "bd784c60-b371-4b0b-baea-5f0b83a6e122" ], "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.4", "Az.Functions/1.0.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": [ "9afe6fdb-5341-414c-ad36-6c86f69c74fc" ], "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": [ "d18058cd-dcc2-4954-a3a9-70b061b8f376" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121336Z:d18058cd-dcc2-4954-a3a9-70b061b8f376" ], "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: 17A060733132402797D3D698580549A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:36Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1924" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "871" ], + "x-ms-client-request-id": [ "ec515660-3b6b-4df3-b931-dc390869e37a" ], "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.4", "Az.Functions/1.0.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": [ "df3d01e5-b328-4b0c-8c13-96e5e50e6df3" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "949b50e4-97c3-4740-9980-ac797ef86c4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121337Z:949b50e4-97c3-4740-9980-ac797ef86c4e" ], "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: 65554511A42343EDB244D3D237074529 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:37Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1924" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "872" ], + "x-ms-client-request-id": [ "9d71ceba-a376-40cd-b2ad-cab864db5c90" ], "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.4", "Az.Functions/1.0.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": [ "a60cf298-45e1-4b19-bf91-68316f027c40" ], "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": [ "8f83fcde-9145-4edd-b1d4-0bd0eb58d03b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121338Z:8f83fcde-9145-4edd-b1d4-0bd0eb58d03b" ], "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: 9B7CBFB6C97F4A8BAE00B3316B6F2C8A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:38Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1924" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "fddcebd7-678f-4af6-ae44-121981119152" ], "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/2f43afa2-e821-48d8-8bcf-64596b02fbdf" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "162bbf9e-fe9b-470a-90ea-aba4dcb8fda5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121339Z:162bbf9e-fe9b-470a-90ea-aba4dcb8fda5" ], "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: 2BDDA0F9A84440F5801D0FA6B1070DE3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:38Z" ], + "Date": [ "Wed, 12 Nov 2025 12:13:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "2007" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "874" ], + "x-ms-client-request-id": [ "556fbc3e-6d2c-40dd-9ff3-211980dd2595" ], "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.4", "Az.Functions/1.0.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": [ "c45e6ef8-b79c-4222-a8c4-f6f06c929d00" ], "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": [ "58cdb06c-ae14-4744-9fcf-fddb9cd8407a" ], + "x-ms-routing-request-id": [ "EASTUS:20251112T121411Z:58cdb06c-ae14-4744-9fcf-fddb9cd8407a" ], "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: BFABCAA67D224E8F8B7FFE8A441E5150 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1922" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "875" ], + "x-ms-client-request-id": [ "556fbc3e-6d2c-40dd-9ff3-211980dd2595" ], "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.4", "Az.Functions/1.0.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": [ "09e6684f-8306-45ae-811e-00b7dc01ee48" ], "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": [ "4663add7-5745-4879-9b27-4b22b448ddd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121411Z:4663add7-5745-4879-9b27-4b22b448ddd3" ], "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: 75EF339BE138449F9AB95D1631CD2FD6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1922" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "876" ], + "x-ms-client-request-id": [ "596f5509-583a-4aa9-a715-a740bc3a9c41" ], "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.4", "Az.Functions/1.0.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": [ "695fba20-9f6e-47e7-8cf4-38445c4e59f7" ], "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": [ "1487ab83-73bb-481d-9605-5fa341458343" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121414Z:1487ab83-73bb-481d-9605-5fa341458343" ], "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: 01CE03DCF0084D2DA5BB5BB78AC51EC2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1922" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "877" ], + "x-ms-client-request-id": [ "c6d90159-d2d8-4d88-b67d-bc3a5db61dcb" ], "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.4", "Az.Functions/1.0.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": [ "e69c068c-1181-4540-8c99-04f6146a382e" ], "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/0f94a88c-d291-4e25-8287-a0d1d02fec1b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "c6c55b13-d800-4b85-98da-60ea49e216e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:c6c55b13-d800-4b85-98da-60ea49e216e4" ], "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: DD2A6633E7B242C493F216534652809B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:15Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:21 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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "878" ], + "x-ms-client-request-id": [ "250df61a-60f8-4c17-b803-c90c7aedd32f" ], "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.4", "Az.Functions/1.0.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": [ "cadff26a-ee74-4907-8bcd-0cd3a7a90dd0" ], + "x-ms-correlation-request-id": [ "cadff26a-ee74-4907-8bcd-0cd3a7a90dd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:cadff26a-ee74-4907-8bcd-0cd3a7a90dd0" ], "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: 9FD2324024594F2DB1A6771B2830DE28 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:21 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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": [ "879" ], + "x-ms-client-request-id": [ "c97c51f9-9949-4a5a-ab6f-537d14476b61" ], "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.4", "Az.Functions/1.0.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": [ "a34554b2-1f02-4cbb-b2f1-4d1ab4b070c8" ], + "x-ms-correlation-request-id": [ "a34554b2-1f02-4cbb-b2f1-4d1ab4b070c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:a34554b2-1f02-4cbb-b2f1-4d1ab4b070c8" ], "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: 0A5DD87E0C7645B7934E9F4DC106BFDB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:21 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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..37585471064a 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": [ "880" ], + "x-ms-client-request-id": [ "6e041f62-15ee-4d8d-9f1d-a2d0ce9f97c5" ], "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.4", "Az.Functions/1.0.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": [ "9eb34c17-7870-42e8-bd5b-7099ce7e129e" ], "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/9a050123-8fd2-4079-b393-eff99eff21c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "77751e16-8322-4fbe-b168-28f98b8bd945" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:77751e16-8322-4fbe-b168-28f98b8bd945" ], "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: E0460BFA61F3429BA248417CF4B873E5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36851" ], "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;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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "\"1DC53CDE2E4012B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43ee158b-5ecc-4bb7-ae53-72ec73b16d70" ], + "x-ms-request-id": [ "4e79314b-5bc4-4dd4-9a12-a2b6b5a20446" ], "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/da3770b9-6098-4ade-9fcd-297302c31851" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "47d86281-6033-4efb-bdc2-55fa173a2e09" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T121426Z:47d86281-6033-4efb-bdc2-55fa173a2e09" ], "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: 68F9E91B0CBB4D7DBCBF96D7DE67AC05 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1734" ], + "Content-Length": [ "1914" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"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-12T12:14:24.4466667\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "882" ], + "x-ms-client-request-id": [ "b528596b-0320-484b-a1f6-4d8e9974ac7d" ], "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.4", "Az.Functions/1.0.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": [ "3bbab619-85ff-456d-98b0-b3180d6faac6" ], "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": [ "99d713da-1051-4561-8286-a5abb805444a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121457Z:99d713da-1051-4561-8286-a5abb805444a" ], "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: 40CDC7C7E87C4C339CD505CD8054A25B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1825" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "883" ], + "x-ms-client-request-id": [ "b528596b-0320-484b-a1f6-4d8e9974ac7d" ], "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.4", "Az.Functions/1.0.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": [ "1503e01d-89b1-479e-a59a-b398a20329ec" ], "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": [ "28b35a5e-3657-4e04-a855-279ed76c1c49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121457Z:28b35a5e-3657-4e04-a855-279ed76c1c49" ], "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: 9502011906D04583B87756153E7D899D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1825" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"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-jm5wr8ezis\",\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": [ "552dec8f-065e-43e4-8449-08858786dc03" ], "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/dac4e4d5-b2ca-443e-80c8-11c5d3cc879a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a753a026-166d-4c3c-9b89-719f36d2e688" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121457Z:a753a026-166d-4c3c-9b89-719f36d2e688" ], "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: 640292D08284498796E4A026C502B670 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:57 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": [ "885" ], + "x-ms-client-request-id": [ "cf9dc6c6-c7e9-4c4d-9df3-d9c9b6d61c6a" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -238,41 +241,220 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "e5164974-6e78-49c7-ba15-bd250d154233", "f7bbf79a-5f34-41f4-af7f-15e040a33413" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3974c99e-f2d3-401e-8e8c-6139221ab590" ], + "x-ms-correlation-request-id": [ "3974c99e-f2d3-401e-8e8c-6139221ab590" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T121458Z:3974c99e-f2d3-401e-8e8c-6139221ab590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a0f1846-74b8-4c86-a301-fc47dda6177c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3FB687361AF543C88ED56CCDE3879387 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "18911" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501669,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501689,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "886" ], + "x-ms-client-request-id": [ "a5c757b9-513a-4a61-9ab3-44545abd7ae2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a7870127-6497-4ce4-a10d-8478ca1d172d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "782ed028-a580-4743-b007-dc726296f2f4" ], + "x-ms-routing-request-id": [ "WESTUS:20251112T121458Z:782ed028-a580-4743-b007-dc726296f2f4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2F0207B43551433EB8FB794C1B8B5C82 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:58Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1819" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "887" ], + "x-ms-client-request-id": [ "02d0d1ed-74fd-48a3-a45f-284f4f8b0387" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c774e126-21cd-4e62-b644-857e34e92882" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f67ea0f5-a2d3-4276-a4cb-9889824ba2b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:f67ea0f5-a2d3-4276-a4cb-9889824ba2b7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0D0DD52F042A45DA9C9996151071750D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:58Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1782" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "888" ], + "x-ms-client-request-id": [ "631be7be-e043-4627-9859-0f000a83499f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bf4472b1-6d4b-4ce7-902d-34fd3cab7568" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "db53422c-176a-4209-bac1-72fea63ce4dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:db53422c-176a-4209-bac1-72fea63ce4dd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 81FCEF59F50D4CD4920786A112FC8801 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1746" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "889" ], + "x-ms-client-request-id": [ "8d2be985-568f-4f7b-bca3-660d9efb54c4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d613bc29-5232-45fa-906a-084404bdbef0" ], "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-correlation-request-id": [ "cef769dd-6ced-4a87-96f6-ce8aaec81785" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:cef769dd-6ced-4a87-96f6-ce8aaec81785" ], "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: DE6F92A9F6DD454EB9EC8BD97A65354C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7931" ], + "Content-Length": [ "1758" ], "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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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": [ "890" ], + "x-ms-client-request-id": [ "3e723f09-6663-42a6-bc69-d3e927901d90" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -284,40 +466,40 @@ "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": [ "6b1e31a2-2ae8-4eca-800b-98c7d5afa263" ], "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": [ "ae3d1eaa-9c5f-427b-89d3-0e8b0c834b34" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:ae3d1eaa-9c5f-427b-89d3-0e8b0c834b34" ], "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: 2083657BB45F4EDDB21CE2F4420F12C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1735" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-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-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?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": [ "891" ], + "x-ms-client-request-id": [ "b0743edc-002e-4218-af83-f94504cccb74" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -329,40 +511,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": [ "66397510-c121-442c-a652-48e6c2359000" ], "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": [ "40bba12d-35de-40e3-b184-52fccc8f0111" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:40bba12d-35de-40e3-b184-52fccc8f0111" ], "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: 553ACC65BEDC42D290804DC48B316032 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1747" ], "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-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":19931,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-335_19931\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:03:07.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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/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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "892" ], + "x-ms-client-request-id": [ "2cc7bc76-994f-4c40-93f3-d4bba33424bb" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -374,40 +556,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": [ "7eb35c9a-2019-43ca-ad42-9cc12957aa1d" ], "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": [ "cc78f36a-2753-4eac-a316-97cb5a060305" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:cc78f36a-2753-4eac-a316-97cb5a060305" ], "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: E9358150CA9348A9B88A27211658FB22 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1814" ], "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "893" ], + "x-ms-client-request-id": [ "d1645b62-6518-4b89-906d-e229c096d0f9" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -419,40 +601,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": [ "9f5c034b-8e93-4500-9732-a92628c9fc40" ], "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": [ "68bb2f3c-045e-4dd9-933e-42db97925b67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121500Z:68bb2f3c-045e-4dd9-933e-42db97925b67" ], "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: 640A3F8C96D14750B75B347054D643B6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1825" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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/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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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": [ "894" ], + "x-ms-client-request-id": [ "5f9dab5f-7c6b-43a4-8ffe-bf4d54048e9e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -464,40 +646,130 @@ "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": [ "bdd7a5e2-9b18-4eee-8c24-2b497121d7c0" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3cdd933e-61c4-4fe6-8414-112998b45237" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121500Z:3cdd933e-61c4-4fe6-8414-112998b45237" ], "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: 8724FEE1B7E146CFBA1F96CA51B5174F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"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/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/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "895" ], + "x-ms-client-request-id": [ "fe8ed847-6975-44df-9819-0c24612020f6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e5a7dd6d-fea9-4b6b-a759-9ed5297a7037" ], + "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": [ "75b742be-ebe8-4bc1-a349-73b281a25c50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121501Z:75b742be-ebe8-4bc1-a349-73b281a25c50" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3957CA896B8A41418D62A87936775099 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:15:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "896" ], + "x-ms-client-request-id": [ "4312ea66-933b-44f4-b955-5cd37c5c0606" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8983b6dd-3a43-4edd-ae6b-1978d35a8009" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f0d61a01-72c3-4c5e-9a51-036fe735686e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T121501Z:f0d61a01-72c3-4c5e-9a51-036fe735686e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AB2CDA2516FB4125B276EAAF08F8374A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:15:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1701" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+18": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "622" ], - "x-ms-client-request-id": [ "99b5d6cd-a914-48c8-ab73-91d40b55027d" ], + "x-ms-unique-id": [ "897" ], + "x-ms-client-request-id": [ "499ba292-3aef-4a7d-a03b-71369d660b05" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -508,39 +780,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7375dd3f-4306-4e6d-b084-3a6f1ec1559e" ], + "x-ms-original-request-ids": [ "7ada8bba-e725-4434-96ed-3fa408e0c340", "41924b47-91d8-4b5e-9433-2c4b5b3534c7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "7d381300-b7a6-47e6-8a45-aa85443c865c" ], + "x-ms-correlation-request-id": [ "7d381300-b7a6-47e6-8a45-aa85443c865c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251112T121502Z:7d381300-b7a6-47e6-8a45-aa85443c865c" ], "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-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: 6CC23F011FD041E0848250134BF8A8A8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:15:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "11077" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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": [ "898" ], + "x-ms-client-request-id": [ "d3e3c975-bc46-4df6-aa07-70c3284cf978" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -551,30 +824,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "62b93030-68c0-42aa-ad2d-9dbc662f6b05" ], + "x-ms-request-id": [ "6b188e95-35b3-4e2d-ad3f-15b37a80b3fd" ], "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/221c69d1-afd5-4550-a115-eb0b4bd7ae91" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6281951e-981a-49a3-a62f-48bd366ea2f7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251112T121502Z:6281951e-981a-49a3-a62f-48bd366ea2f7" ], "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: E043FFB6EF5341A09F758BE05E3AABC7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:15:01 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\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2015-05-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-jm5wr8ezis?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 +867,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/bcd23e54-f71c-4520-ac86-5e165823aef1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "4273e728-eb68-4200-b35d-fa670096d5c6" ], + "x-ms-correlation-request-id": [ "4273e728-eb68-4200-b35d-fa670096d5c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121511Z:4273e728-eb68-4200-b35d-fa670096d5c6" ], "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: 10B79657B2954698918EF471981C3877 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:15:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1683" ], "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\": \"\\\"7306f1ee-0000-0300-0000-69147a4f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"name\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"AppId\": \"cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"144e186c-829e-48a9-a5e1-fde9a165497f\",\r\n \"ConnectionString\": \"InstrumentationKey=144e186c-829e-48a9-a5e1-fde9a165497f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\",\r\n \"Name\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"CreationDate\": \"2025-11-12T12:15:03.029067+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-jm5wr8ezis_cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-jm5wr8ezis-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2023-12-01+21": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-jm5wr8ezis\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=144e186c-829e-48a9-a5e1-fde9a165497f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\"\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": [ "1718" ] } }, "Response": { @@ -630,43 +904,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37A96D32F60\"" ], + "ETag": [ "\"1DC53CDFFF84255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ad81cef-81b2-41e6-9c54-a2cf51944003" ], + "x-ms-request-id": [ "a4d88b1c-d958-4550-ab4b-6bc2393d9e29" ], "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/037ded68-5701-4b4e-9546-10b3d2ece36f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "ff65a180-23d7-4201-aa4a-dbeba1a7602a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121554Z:ff65a180-23d7-4201-aa4a-dbeba1a7602a" ], "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: 9CC7F1FC554943BF8C9E10AA705EC430 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:15:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "8509" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"func-powershell-newtest4-jm5wr8ezis.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-jm5wr8ezis.azurewebsites.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-jm5wr8ezis.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:15:13.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\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-jm5wr8ezis\\\\$Func-PowerShell-NewTest4-jm5wr8ezis\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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": [ "901" ], + "x-ms-client-request-id": [ "eeeeac52-2a12-480c-a311-761424df1686" ], "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.4", "Az.Functions/1.0.1" ] }, "ContentHeaders": { } @@ -676,42 +950,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AA4B906AB\"" ], + "ETag": [ "\"1DC53CE17CDBD80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e627449-e599-4487-943f-907aab2455bc" ], + "x-ms-request-id": [ "c96465c5-8e55-4e9e-88d5-d93bd347142a" ], "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": [ "3a34bd13-fced-4341-b1be-1201c2f26b87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121624Z:3a34bd13-fced-4341-b1be-1201c2f26b87" ], "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: AFF5D0EC33C54C0490BA99D860D3FEE6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:24Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8482" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"func-powershell-newtest4-jm5wr8ezis.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-jm5wr8ezis.azurewebsites.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-jm5wr8ezis.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:15:54.2\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-jm5wr8ezis\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-jm5wr8ezis\\\\$Func-PowerShell-NewTest4-jm5wr8ezis\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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": [ "902" ], + "x-ms-client-request-id": [ "6fc1892c-fb60-41ab-b042-346e47940dd6" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -722,42 +996,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AA4B906AB\"" ], + "ETag": [ "\"1DC53CE17CDBD80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c58321c5-3d83-40ba-aee7-1329a9bb5d5d" ], + "x-ms-request-id": [ "fbb736e5-1099-4252-a296-3ac0c360fcb4" ], "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": [ "332bbd70-cc89-484e-bdca-115602d96f8e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121625Z:332bbd70-cc89-484e-bdca-115602d96f8e" ], "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: 237DDCE8227445509C7D8F4D0E403FEE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8482" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"func-powershell-newtest4-jm5wr8ezis.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-jm5wr8ezis.azurewebsites.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-jm5wr8ezis.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:15:54.2\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-jm5wr8ezis\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-jm5wr8ezis\\\\$Func-PowerShell-NewTest4-jm5wr8ezis\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/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": [ "903" ], + "x-ms-client-request-id": [ "ef0ad995-2cbe-455b-be63-aa439650e8a2" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -769,40 +1043,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": [ "22afb0b5-b2d4-4ed9-bae2-439d128474bf" ], "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/2345fdb9-3b42-4758-a43f-344dd7b509aa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6f7c46df-a531-4cfb-8b49-3ee3060edf7d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121625Z:6f7c46df-a531-4cfb-8b49-3ee3060edf7d" ], "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: C91A799200CF43B69254F3DC1A44FAB0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1182" ], "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-jm5wr8ezis\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=144e186c-829e-48a9-a5e1-fde9a165497f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/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": [ "904" ], + "x-ms-client-request-id": [ "d72c7dcf-87d3-4479-97a7-d3d4ef363f32" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -814,40 +1088,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": [ "82775eb4-5c67-4f31-adf6-c372d9f9449a" ], "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/63b175e9-b867-4c90-905f-b22ece045e57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "acd57e56-631c-46a7-b024-6cee6b048cea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121625Z:acd57e56-631c-46a7-b024-6cee6b048cea" ], "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: C6EC95828BB1475BAE0FC3EDB6DBA641 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:25 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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/web\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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": [ "905" ], + "x-ms-client-request-id": [ "429d6662-54ed-4b1a-9cbe-1285b5690bb7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -858,19 +1133,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AA4B906AB\"" ], + "ETag": [ "\"1DC53CE17CDBD80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "127fd397-4806-4495-9cab-3cb44a311c33" ], + "x-ms-request-id": [ "8e22c1cf-3d54-4b12-90f6-978d037d442a" ], "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/87388fe4-9f0a-4f2c-af85-b33a98892506" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "edc73272-6c0c-471b-8e29-249fade57fab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:edc73272-6c0c-471b-8e29-249fade57fab" ], "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: B56CB9D2E5F94017ABCAAC5E2EFCDADD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -880,19 +1156,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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "906" ], + "x-ms-client-request-id": [ "9355a6c6-068a-45e6-907b-58c2b47bf944" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -904,40 +1180,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": [ "35744c8e-b277-4e9a-ad85-817308b08396" ], "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": [ "4e5fbced-fe22-47f0-a8c3-99d8f47544a2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:4e5fbced-fe22-47f0-a8c3-99d8f47544a2" ], "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: 726F00C2E76B4D44A75D86DCAA5E4794 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1825" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"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-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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": [ "907" ], + "x-ms-client-request-id": [ "30a25fff-3727-4e21-bc87-d81b542126a4" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -949,37 +1225,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": [ "956a23ce-d2d6-473f-b7d5-6d99888605ed" ], + "x-ms-correlation-request-id": [ "956a23ce-d2d6-473f-b7d5-6d99888605ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:956a23ce-d2d6-473f-b7d5-6d99888605ed" ], "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: 7D5F8AF2E64B4A7EB124929ED12B8599 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:34 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-jm5wr8ezis\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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/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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "908" ], + "x-ms-client-request-id": [ "6c414b47-b906-49bb-93e7-60829348bf90" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -991,40 +1267,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": [ "e2a5ed7d-ee16-47ae-a839-93716421b856" ], "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": [ "df171305-23a7-4a50-beda-a6d09b1304ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:df171305-23a7-4a50-beda-a6d09b1304ab" ], "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: 7E2E8840148F43269DD80F8117230B39 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1825" ], "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01+30": { "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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": [ "909" ], + "x-ms-client-request-id": [ "eb0778be-d2fb-480f-93d5-82421cc15c83" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1036,17 +1312,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": [ "0d4d270c-8d03-4c25-b444-6873e9176777" ], "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/6e3d929f-c14f-4969-8e0c-34b9974aaf95" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "e44bbffa-4cff-4919-a3ec-2aa15469a5b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121641Z:e44bbffa-4cff-4919-a3ec-2aa15469a5b3" ], "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: 3BA28DBE2D6D40D8B0FD9A92CF847B4D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:40 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..185fe2f680f1 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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "910" ], + "x-ms-client-request-id": [ "533071a1-bba7-447a-88b0-2205a4ae30ee" ], "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.4", "Az.Functions/1.0.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": [ "e09979aa-d70d-4612-b8fc-9e6b056bfa29" ], "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/50d547d1-31fa-44ff-9207-876b9c79af87" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "6449c2c9-cd7a-4fc3-895e-065dc9864ecf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121642Z:6449c2c9-cd7a-4fc3-895e-065dc9864ecf" ], "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: 7C7BED7333994ECEA8388E12DB753A96 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:41 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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "911" ], + "x-ms-client-request-id": [ "84db16ab-635b-443b-8b3b-9aef93f5dbdf" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,42 +67,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC68544A0\"" ], + "ETag": [ "\"1DC53CE34701000\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2a7dcf0-2064-4d09-8fc0-085dc2d9f7b5" ], + "x-ms-request-id": [ "1836a9ab-afc8-4e7c-81f8-4dd47e0678ca" ], "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": [ "b26c4df8-14a1-4dfa-803e-73eeb0e90051" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121642Z:b26c4df8-14a1-4dfa-803e-73eeb0e90051" ], "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: 59215131F06B4ADCA4BCDE30DBB48743 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8413" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:42.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "912" ], + "x-ms-client-request-id": [ "f460eacb-6c87-4452-8afc-f82c2791d3ab" ], "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.4", "Az.Functions/1.0.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": [ "bd84de8f-97bd-454d-8aa5-28f845d8098f" ], "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/ea349dc0-fb25-424d-9584-7209bff484f9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "92c769c2-b9a5-4680-b3b5-3e0c34a03b6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121642Z:92c769c2-b9a5-4680-b3b5-3e0c34a03b6b" ], "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: DF5BF764DDE54EAAB4F34996AF29B7DB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "913" ], + "x-ms-client-request-id": [ "ba0b0ba2-9afa-4e9f-9937-6db29b2fb58e" ], "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.4", "Az.Functions/1.0.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": [ "c73267ab-5b54-470e-921c-d18b89f192e0" ], "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/0472b2ee-2516-4f39-a037-f4a09f1b5054" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d36b141c-4b79-4031-907f-71202e4e6b1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:d36b141c-4b79-4031-907f-71202e4e6b1b" ], "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: FC6A7BB4434747A7B2F43AA2EA4F9F9B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:42 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "914" ], + "x-ms-client-request-id": [ "c018a304-de71-4482-aa4d-7a02a197dfb5" ], "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.4", "Az.Functions/1.0.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": [ "5f33cfb2-68bf-459e-9d41-981fe0b0a6b6" ], "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/002f6546-15d6-4a21-86fc-7f0c1ac86ef2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a63843a2-c1dc-4240-89cd-c062d1f008c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:a63843a2-c1dc-4240-89cd-c062d1f008c1" ], "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: 5FA7C6938A614AF4A86630CB072F7AD3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:42 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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "915" ], + "x-ms-client-request-id": [ "303f5fab-6c39-408e-a700-691308e27808" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -247,42 +249,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC734BE80\"" ], + "ETag": [ "\"1DC53CE3515DFEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f12636d4-92c0-486b-8335-559e1f2e0c77" ], + "x-ms-request-id": [ "c7cf5a14-30cf-422f-98d6-039b25a092d9" ], "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": [ "9cccd4df-f042-4b41-84d4-af30b1c2dd96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:9cccd4df-f042-4b41-84d4-af30b1c2dd96" ], "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: C80C3F0B80D745D486B6A7D5A0076B27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8418" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:43.3266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "916" ], + "x-ms-client-request-id": [ "0d81d546-205e-44c9-adaf-fe7d5571fe45" ], "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.4", "Az.Functions/1.0.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": [ "d4dfd521-94b3-4ea9-ab33-8ce875c05cd0" ], "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/f384485e-27e0-48bf-ab65-6f9025d1ee5d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d768aad2-eb36-4715-a1ed-7f0d6e8c4963" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:d768aad2-eb36-4715-a1ed-7f0d6e8c4963" ], "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: C7B152D794C94A168E7EE1A77EE9278F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "917" ], + "x-ms-client-request-id": [ "517ffe6f-714f-4c88-9ecc-dbec9131c4e5" ], "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.4", "Az.Functions/1.0.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": [ "fa5219a8-9a72-41ef-8086-3229ef7b7b40" ], "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/891ce095-f25f-4d6c-817c-7570ae3d426b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3aee9590-fdde-4abc-89d5-66a955b8eb90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121644Z:3aee9590-fdde-4abc-89d5-66a955b8eb90" ], "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: 682CD0F2DC334C31B15684FF33A5F4DC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16: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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "918" ], + "x-ms-client-request-id": [ "260789cf-5d6e-4620-8e72-0ce51fcd1cad" ], "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.4", "Az.Functions/1.0.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": [ "f347d200-6758-4a97-a265-2f71ec30cdf7" ], "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/c968cc6f-0606-42b4-8da8-c2fbabcf6984" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "3fbb13a1-8e5d-4cd4-b7cf-f182bbabd52d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121644Z:3fbb13a1-8e5d-4cd4-b7cf-f182bbabd52d" ], "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: 52C342C5541D4C8FB9BE6BA3B97EB13D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:43 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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "919" ], + "x-ms-client-request-id": [ "4a272d6f-3350-4fcc-996e-e44a7dd8c57e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -428,42 +431,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC7E94E75\"" ], + "ETag": [ "\"1DC53CE35B490EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "893c8544-bd16-4fc9-840f-67a2486aeb89" ], + "x-ms-request-id": [ "4a7fb2ac-9ec5-4fd0-8d8e-64faa73c01df" ], "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": [ "dff100ac-45d8-4e9d-a318-7ca3d64c487c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121644Z:dff100ac-45d8-4e9d-a318-7ca3d64c487c" ], "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: 2FFF269120FE4C01A66D19EFA7B8A65F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8418" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:44.3666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "920" ], + "x-ms-client-request-id": [ "15e76f8a-8e43-4ffa-b685-8e785a163989" ], "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.4", "Az.Functions/1.0.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": [ "4a278a17-dd60-43fe-8c3e-334e2f1d1a75" ], "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/e84aee32-3891-415b-a8ea-ac2a6920cccc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8f5f4842-aa4a-4c39-b19b-903d95cd7436" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:8f5f4842-aa4a-4c39-b19b-903d95cd7436" ], "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: B94D930C58BE49019C351B5AF3A38790 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:44Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "921" ], + "x-ms-client-request-id": [ "18bb2ec5-6b9d-4924-9db1-add24882a0fc" ], "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.4", "Az.Functions/1.0.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": [ "aa7aebb9-ca64-4815-93c7-5728ee687855" ], "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/3ed71511-108d-4678-97bf-047a949c845c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4e9f9775-6d54-475e-a5d0-8fbd6c23d8c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:4e9f9775-6d54-475e-a5d0-8fbd6c23d8c7" ], "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: 54EEE00AAB8845F0AFEF4C3E145342EA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:45Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:44 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "922" ], + "x-ms-client-request-id": [ "ae9d871f-cb07-46a0-a867-9679c9175276" ], "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.4", "Az.Functions/1.0.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": [ "fc6dfd98-5faf-4cb4-9d38-00d4566126a3" ], "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/7ecb249f-4463-4d63-8b67-f583cb184282" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "3ee2fa94-c47f-4013-9ce2-df989775994e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:3ee2fa94-c47f-4013-9ce2-df989775994e" ], "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: 5C4BF3D4AB9D4FB2B95D549306EF5F1C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:45Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:45 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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "923" ], + "x-ms-client-request-id": [ "6a3481b5-7be5-4397-83f3-821e622442fc" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -608,42 +613,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3752BC87B80\"" ], + "ETag": [ "\"1DC53C4FCDC586B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90253a62-32e3-49a1-a0c1-934dec412612" ], + "x-ms-request-id": [ "0cff357e-2354-48b6-96ee-0c2ea1d9c5d7" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "24b7dede-55db-4dbc-b679-b77fb143fefe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:24b7dede-55db-4dbc-b679-b77fb143fefe" ], "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: 657607482BE74493B5BE55F13D071546 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:45Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7324" ], + "Content-Length": [ "8322" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "924" ], + "x-ms-client-request-id": [ "4cffb3dc-a4e8-4a7d-9a5b-d01a097a41b8" ], "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.4", "Az.Functions/1.0.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": [ "4a45fd6d-7c86-47ad-9a0c-443a002b78e2" ], "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/2649c177-9faa-42f9-8d52-10f9fb7d1fa6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e0e73f52-65ba-401b-b068-e749803bcd4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121646Z:e0e73f52-65ba-401b-b068-e749803bcd4a" ], "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: 20342A7F8AB04B6EBFAC0322FD6A4F5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "925" ], + "x-ms-client-request-id": [ "a37bc704-c83c-4433-86d5-c20033579033" ], "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.4", "Az.Functions/1.0.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": [ "642c4758-7b3f-4fb2-8b15-d0c70a073d19" ], "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/30372f70-94ff-4d41-9f64-bc53cb0c3398" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f2dae0a8-dfe2-451a-a5fc-90667edc47bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121646Z:f2dae0a8-dfe2-451a-a5fc-90667edc47bf" ], "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: 56C83C8DE77D450CA7C5FF0BCBF0D5F4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:45 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "926" ], + "x-ms-client-request-id": [ "3e1d41f1-050f-4bb8-9e42-9f8b8e9c892b" ], "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.4", "Az.Functions/1.0.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": [ "99310699-e475-4b1c-878d-8bb678ef8609" ], "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/d3d9a46c-561b-423a-b7ef-1489c3e063db" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "1bc38d02-5e35-4c32-829e-4de75013a859" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121646Z:1bc38d02-5e35-4c32-829e-4de75013a859" ], "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: 1EF89019F6C3461A8C339A38B68E1538 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:46 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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "927" ], + "x-ms-client-request-id": [ "d109d001-d1a8-4052-8e50-bbbbce171798" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -789,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC9770D60\"" ], + "ETag": [ "\"1DC53CE3711FE0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35bc3460-5826-4e8c-ae08-835638bb110a" ], + "x-ms-request-id": [ "e7ee58f7-be7b-4afa-ad71-13722db7e60d" ], "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": [ "00dabb68-7ba5-4313-ab3f-00a0bfdfd871" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:00dabb68-7ba5-4313-ab3f-00a0bfdfd871" ], "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: 508FBDABFD9E4F139DF6B007E6557F2F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8322" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:46.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "928" ], + "x-ms-client-request-id": [ "c21e1afe-4c4a-4932-addb-b5bf1180f134" ], "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.4", "Az.Functions/1.0.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": [ "0afeebdd-2b77-4bba-af86-8fc95291412d" ], "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/8d73d552-56da-4e9c-a5cc-78c8cd959190" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "3d465ee1-e008-4cd2-b870-298b3c98fd61" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:3d465ee1-e008-4cd2-b870-298b3c98fd61" ], "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: BEC757CFC8534EB097B85492FE724E0B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:47Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "929" ], + "x-ms-client-request-id": [ "78a63474-4158-4ed4-80ed-246442b9eba9" ], "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.4", "Az.Functions/1.0.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": [ "9d2f0c69-3d13-4b6b-a959-2a4955f27479" ], "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/f588258d-4c09-4602-ba6c-8cebce05348b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "13a6cfce-30d8-4e64-9918-25706cccac31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:13a6cfce-30d8-4e64-9918-25706cccac31" ], "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: EBF225DAB62747B09B8D054A8A50A301 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:47Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:46 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "930" ], + "x-ms-client-request-id": [ "441398a9-3d02-4921-bd45-d0559c79b26e" ], "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.4", "Az.Functions/1.0.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": [ "c44895e6-917b-4e37-9fd4-c8f0cd79784e" ], "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/b3091fb2-e1c2-43f3-aa29-0631c56c870b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "fc367ae0-d58c-48a5-98a7-512e1c91fba3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:fc367ae0-d58c-48a5-98a7-512e1c91fba3" ], "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: 31CE6CBA492840F88DB0213C94191C3D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:47Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:47 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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "931" ], + "x-ms-client-request-id": [ "20015810-536f-4b51-bf70-d597f8149a8c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -970,42 +977,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC53CE37C68E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a7d06ec-f755-4a07-ac43-a6731e1707c7" ], + "x-ms-request-id": [ "6093e2a0-113b-402a-ab42-a10a00a95407" ], "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": [ "91c135bd-d168-442a-a332-cd66082d352e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121648Z:91c135bd-d168-442a-a332-cd66082d352e" ], "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: CCF90CCFE3694E6C9BF2AD53EEC3C3A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8317" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "932" ], + "x-ms-client-request-id": [ "f7419e5f-3e00-4982-89ec-88f16d6e5998" ], "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.4", "Az.Functions/1.0.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": [ "8b232451-e546-45e3-bd52-c4b430f3d299" ], "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/8e89d1c9-c18f-407e-b6c9-0430a355399b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "acfff569-cf74-47f7-91ac-46ad3fe347a4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121648Z:acfff569-cf74-47f7-91ac-46ad3fe347a4" ], "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: 1B21A27D0BE7495C88524C90C5311927 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "933" ], + "x-ms-client-request-id": [ "e81199c4-b800-4666-be31-421c017072f8" ], "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.4", "Az.Functions/1.0.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": [ "09be5dc0-faab-4a49-a17f-438c685db122" ], "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/8ef39206-aec2-4441-80b1-2c56ae36db47" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a50bf237-6e2c-400e-91d1-26eb16856f33" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121648Z:a50bf237-6e2c-400e-91d1-26eb16856f33" ], "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: 4F78DDFD57AE47E68EEF74295FFCEA75 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:48 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "934" ], + "x-ms-client-request-id": [ "57a18ea9-e806-4328-8b1b-d071118bc80a" ], "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.4", "Az.Functions/1.0.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": [ "55743b6b-30b1-49e5-ad16-7aba57b8414e" ], "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/ca46b405-9d4c-494a-a951-36e2eb6c7f0b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "7fde9dc6-e44f-4206-84b4-e4bfb92d8dca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:7fde9dc6-e44f-4206-84b4-e4bfb92d8dca" ], "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: A38BCED2AC92436AA3506610706561DD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:48 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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "935" ], + "x-ms-client-request-id": [ "85c179ef-dda2-4f14-b4c1-df9394535481" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1150,42 +1159,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACB45E6F5\"" ], + "ETag": [ "\"1DC53CE386FED60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14ab37c2-ba7f-4724-b36b-5b82b846d0c9" ], + "x-ms-request-id": [ "52c7a6dc-d77f-470e-9f7e-afa75107ab9e" ], "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": [ "48c419de-4ab7-4131-b91c-994c330dd700" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:48c419de-4ab7-4131-b91c-994c330dd700" ], "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: 0A4976511B1C42C78BB23E9A0DBCEC93 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7213" ], + "Content-Length": [ "8682" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:48.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "936" ], + "x-ms-client-request-id": [ "ac1c1340-4c7d-47e4-83ff-27ea3e07c7c7" ], "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.4", "Az.Functions/1.0.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": [ "d7083b0f-26d3-45fb-99cd-fee8f2bea276" ], "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/80e038d4-2c5a-405f-8c21-99534bed70cd" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "618d8fb0-c42d-41d9-beac-ec06036daef6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:618d8fb0-c42d-41d9-beac-ec06036daef6" ], "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: D7045E8DF5C3432E9D673D21A50FC10C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "937" ], + "x-ms-client-request-id": [ "8f5a466e-887d-4982-b222-8ec2ca2d589b" ], "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.4", "Az.Functions/1.0.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": [ "18a1714e-1f62-4c6e-acf4-f22d6460e585" ], "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/d34f60cd-d44f-4bbd-89d4-7c8e8b1757d4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "74513328-04d7-400a-9039-37b1a32f6a78" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:74513328-04d7-400a-9039-37b1a32f6a78" ], "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: 60B2BEDAEA6349D1B45FE065A185A184 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:49 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "938" ], + "x-ms-client-request-id": [ "dc1bcf51-256d-4760-a92c-4841ab9b139f" ], "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.4", "Az.Functions/1.0.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": [ "4d7bcfe4-50a3-4d54-abff-dae8c4a9c063" ], "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/f3207243-f4b7-4857-b223-5fcd6c707a20" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "91ce3bde-a646-42e3-8173-752138d05985" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:91ce3bde-a646-42e3-8173-752138d05985" ], "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: C5592ABE8F90468695726143A286E578 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:49 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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "939" ], + "x-ms-client-request-id": [ "7688de3f-4124-471c-9d18-75514351065e" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1331,42 +1341,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACC072E20\"" ], + "ETag": [ "\"1DC53CE39194CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4047c8ca-5035-4579-868d-be79bf1a699b" ], + "x-ms-request-id": [ "73ecfda7-0598-45b6-ac1c-af01a6730bf0" ], "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": [ "7310af34-f647-4d64-9621-4a4ee8dd74b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:7310af34-f647-4d64-9621-4a4ee8dd74b6" ], "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: 7506E65568604BF095C2678B49CBD4F0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8682" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:50.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "940" ], + "x-ms-client-request-id": [ "68ce7a0f-0393-4f40-a70f-b47114c02564" ], "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.4", "Az.Functions/1.0.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": [ "ef68d4dc-0695-434f-bf6e-77e951cb3c88" ], "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/06f00be4-3deb-4d04-b74f-45cba39ce556" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0479bd66-1483-43e0-a516-d43186d7c584" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:0479bd66-1483-43e0-a516-d43186d7c584" ], "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: 9A7C9F482BE548A88AD2702D786A2138 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "941" ], + "x-ms-client-request-id": [ "6d939671-e3c8-4fe2-a0b6-8ba347b5ad3f" ], "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.4", "Az.Functions/1.0.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": [ "9f8842f8-81de-4ded-b066-037226e475ed" ], "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/b35c851c-2ece-44c9-bdef-c91dca2db43e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0afe7d57-1e7d-448c-b932-dcc59272c247" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:0afe7d57-1e7d-448c-b932-dcc59272c247" ], "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: 4D1C663E868C45F58867B9988DA7FC27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:50 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "942" ], + "x-ms-client-request-id": [ "07e1d1d4-8753-495b-b58a-276265cff355" ], "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.4", "Az.Functions/1.0.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": [ "83482459-1f56-4618-8a68-a4eb83b1418e" ], "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/6ea7f10b-e6d6-4223-85de-bfd9fc27d107" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "c88fca40-4712-4814-aebc-8a05379dbc81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121651Z:c88fca40-4712-4814-aebc-8a05379dbc81" ], "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: FB5E3EEEFBC743DDA2D5BA8610F68413 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:50 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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "943" ], + "x-ms-client-request-id": [ "b8dadd64-b5ec-4557-a95e-2db23327b89b" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1512,42 +1523,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACD87B3A0\"" ], + "ETag": [ "\"1DC53CE39B7FDC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fad06d2d-3f4f-4bc8-a239-41fcd5647bba" ], + "x-ms-request-id": [ "d6a9a0cb-e6a8-4c88-bb79-8a167d970753" ], "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": [ "2c2c4a59-e22d-4604-8030-4ce8c50d575b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121651Z:2c2c4a59-e22d-4604-8030-4ce8c50d575b" ], "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: 4E44AFBC33B24A6CA6AE6276EA863DC9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:51Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8681" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:51.1\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "944" ], + "x-ms-client-request-id": [ "d68d6a7b-9416-4d9a-8f9f-d478b38341c4" ], "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.4", "Az.Functions/1.0.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": [ "d86a160a-e48a-42a6-9fda-6e812744abce" ], "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/75592d73-1b43-49b3-90ba-8124236e3154" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "66aa4313-3841-4bd3-8c04-b8aad04a2d29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121651Z:66aa4313-3841-4bd3-8c04-b8aad04a2d29" ], "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: A005BF72D96447DE87AF824AE4A806CC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:51Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "945" ], + "x-ms-client-request-id": [ "ab6d6fc6-5ae8-485d-abfa-93bfa28a52c3" ], "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.4", "Az.Functions/1.0.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": [ "54124f0d-9699-40f8-85cb-be93c7e5e0ff" ], "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/9e9a3e99-6ed5-450a-bd4b-827b442a671d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d00a25f8-1bbe-45cd-a631-d020ad9e8d79" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:d00a25f8-1bbe-45cd-a631-d020ad9e8d79" ], "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: 498E6474B6924ACBA77B17B9DA5D8F09 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:51Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:51 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "946" ], + "x-ms-client-request-id": [ "a72d0bc3-e61e-434e-90c5-7f6a4d9ac5a1" ], "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.4", "Az.Functions/1.0.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": [ "67408a2b-fc16-4998-93a0-ffd85e72c3c2" ], "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/facc7d3b-9252-4bcb-98e2-e8a312bcf1e9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "9ab523bd-4678-4570-83e2-476b168c7afd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:9ab523bd-4678-4570-83e2-476b168c7afd" ], "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: E31E0E9EAE914AD78298661E8FEC0F79 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:52Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:51 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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "947" ], + "x-ms-client-request-id": [ "de87e5b0-5f81-4438-aed6-1599b6cb1016" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1692,42 +1705,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACEF05155\"" ], + "ETag": [ "\"1DC53CE3A7CD460\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72473cd1-b2fb-4096-9988-30ea48888678" ], + "x-ms-request-id": [ "41df5134-ded9-4758-b5ea-ecb57db00f3f" ], "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": [ "62b73d81-8e51-47da-b9f7-a541562574c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:62b73d81-8e51-47da-b9f7-a541562574c7" ], "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: C85C5BC5E66049A7AC66B8F4A31A36F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:52Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8745" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:52.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\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "948" ], + "x-ms-client-request-id": [ "bd5d3150-7aae-43bc-be20-7047d254b4f4" ], "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.4", "Az.Functions/1.0.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": [ "d84ffc6e-bed9-4158-83de-1021bfb8c921" ], "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/051350ad-0c62-4c13-a8ff-a8777952a845" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8b07494f-b923-4a0e-9938-5576be9ba737" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:8b07494f-b923-4a0e-9938-5576be9ba737" ], "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: BBB7926E0B6C4EEAA14F33DA84CB95CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:52Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "949" ], + "x-ms-client-request-id": [ "c420f1d2-7ffc-4f93-9bf6-2bbc02b726e3" ], "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.4", "Az.Functions/1.0.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": [ "a753b61d-a72f-4899-a574-28c3e29fa5c5" ], "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/7c835e04-b4c1-49e3-94e1-84fcfde10efb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3eef3a83-6108-4886-8ffa-a53b88a7f608" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121653Z:3eef3a83-6108-4886-8ffa-a53b88a7f608" ], "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: C3B358F88A304412B7CFC500CCEC636F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:52 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "950" ], + "x-ms-client-request-id": [ "e436b4af-bb39-4ff8-a1f0-a858cfb37185" ], "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.4", "Az.Functions/1.0.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": [ "95b90cb3-1745-42e4-8aef-cf5d5296a50c" ], "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/9682e57e-5987-4e55-aeed-a82ed07e02e3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "797" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11997" ], + "x-ms-correlation-request-id": [ "1e1a1299-836c-41b2-b4c8-35ced83251f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121653Z:1e1a1299-836c-41b2-b4c8-35ced83251f4" ], "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: DBA5482A2F6D49E6B3449777F2C127D6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:52 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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "951" ], + "x-ms-client-request-id": [ "1189a57a-dec6-4169-aba3-f7a271cc21c0" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1873,42 +1887,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACF876135\"" ], + "ETag": [ "\"1DC53CE3B18FA55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24036f93-54e5-4437-b004-79831078bb54" ], + "x-ms-request-id": [ "881b3aa3-23e6-48d5-8ec6-2d1ea6b5b8b4" ], "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": [ "83e51d83-ee0f-445b-8ba1-7c092c04372c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121653Z:83e51d83-ee0f-445b-8ba1-7c092c04372c" ], "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: B27F176EC84745CD954E0B6947AB85DC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8750" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:53.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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "952" ], + "x-ms-client-request-id": [ "f5eb9dc8-fa4b-4419-bfcc-43be37a8f85b" ], "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.4", "Az.Functions/1.0.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": [ "16facee3-d4cb-444f-bcbc-b9c185649aca" ], "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/49bfe8be-c89a-46cd-a709-102784df9487" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d08c2eb4-b9a7-48b2-9afd-f74a05d4d513" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:d08c2eb4-b9a7-48b2-9afd-f74a05d4d513" ], "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: 25B2861BEBAA489A94E5FB2B9749AB16 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "953" ], + "x-ms-client-request-id": [ "388834b9-9c48-42d2-aa73-637f6fcae1c3" ], "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.4", "Az.Functions/1.0.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": [ "920a9a77-0940-438a-9a17-5ed1a774776d" ], "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/63a65686-45d7-4484-92e8-c266a8ff380f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bfcd5e84-9783-4a6e-9d12-8df1628e8851" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:bfcd5e84-9783-4a6e-9d12-8df1628e8851" ], "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: CAEEC5850C1040D09EB3900C0FEE6EBE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:53 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "954" ], + "x-ms-client-request-id": [ "6546c111-7cdf-4a89-a508-ddece59c08a3" ], "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.4", "Az.Functions/1.0.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": [ "ac45cb1c-27af-4aad-a3cd-69e49801f308" ], "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/30a9a648-5969-4444-b821-8cd62715691f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "098bf7d9-03ce-47ee-ab71-6ba096033256" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:098bf7d9-03ce-47ee-ab71-6ba096033256" ], "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: 7C937C4B411B4EDBB62E981B6CAD70B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:53 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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "955" ], + "x-ms-client-request-id": [ "d02f7164-7cf3-483c-b49e-2b96426afb46" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2054,42 +2069,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD04EC2E0\"" ], + "ETag": [ "\"1DC53CE3BB72920\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ca3b178-6969-4c5e-8a51-80414ee79d86" ], + "x-ms-request-id": [ "5b0a7bcd-26de-4bc0-bea1-6db37c98f7c8" ], "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": [ "2e77f7dc-cd88-4eb2-8cd9-fa5c37147f05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:2e77f7dc-cd88-4eb2-8cd9-fa5c37147f05" ], "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: A1DFD2647993498C96169FFEE2C7FC44 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7142" ], + "Content-Length": [ "8745" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:54.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "956" ], + "x-ms-client-request-id": [ "4cf436ae-258e-426b-b41c-35f7affa336b" ], "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.4", "Az.Functions/1.0.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": [ "07e2e8f5-98ba-43ca-9238-168dc5da9458" ], "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/143d5858-dba6-4e17-ba1d-14eff4f5dc90" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3adbd507-ecd0-4906-a3fc-426e1e45f9e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:3adbd507-ecd0-4906-a3fc-426e1e45f9e7" ], "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: BA54F3138B494E60BB3F7F72C95B7D2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "957" ], + "x-ms-client-request-id": [ "f4aa41ad-7490-43be-befb-1a78de21f8e5" ], "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.4", "Az.Functions/1.0.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": [ "0cdf64af-f9f8-41c0-8b74-03e927975096" ], "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/5eb7dc2b-b5da-4f9d-8896-551d96d95dfb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b819a2e3-ca05-4ca0-bb42-be0a1e584333" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:b819a2e3-ca05-4ca0-bb42-be0a1e584333" ], "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: 90C20BCBA4D94C40B3C98BA5C0DC0C89 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:54 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "958" ], + "x-ms-client-request-id": [ "73b7692b-3319-491c-aeaf-78f83a780c55" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2190,42 +2206,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC7E94E75\"" ], + "ETag": [ "\"1DC53CE35B490EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dce06783-b6cf-4ed0-9baf-dffc6ebb8e46" ], + "x-ms-request-id": [ "a12bafd2-2e93-410c-8341-ed02068cc41e" ], "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": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "368ebf94-5f39-4e25-82c2-eb540db471c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:368ebf94-5f39-4e25-82c2-eb540db471c7" ], "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: EE52BDFCF8E84BFCBA0A568806CAA301 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8418" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:44.3666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "959" ], + "x-ms-client-request-id": [ "4f86f20e-8ee4-417f-a89c-9669b52dfdd4" ], "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.4", "Az.Functions/1.0.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": [ "0b19cf69-29d2-40e2-9bcf-44f3700beb54" ], "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/460888dc-b688-49a8-96c6-049b5992718d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "5e7104e4-c46c-4233-832b-a0fc66e84527" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:5e7104e4-c46c-4233-832b-a0fc66e84527" ], "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: 4B45125B48FC43ECA926A1A9FD0B8A51 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "960" ], + "x-ms-client-request-id": [ "781e8155-1b97-4c20-901c-b0d36a0748df" ], "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.4", "Az.Functions/1.0.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": [ "3342e50f-904c-46cf-84fd-c76597a43cbc" ], "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/b11a556d-e091-4c2d-bc20-c685496faffa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a0d669ae-ec30-4ff8-b239-b21926ae0e48" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:a0d669ae-ec30-4ff8-b239-b21926ae0e48" ], "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: 78964DFE371A4AF3901571A497E03AD1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:55 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "961" ], + "x-ms-client-request-id": [ "f7b09b5c-b0b1-4c54-b8fb-002ad543684d" ], "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.4", "Az.Functions/1.0.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": [ "a2d82f69-b925-4491-b5ba-c7dbbe695f8b" ], "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/80dd385f-ab6e-4eb2-b72c-851d3ec386d8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "deef4b8c-28fc-4765-8d2b-5ba33f8afda8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:deef4b8c-28fc-4765-8d2b-5ba33f8afda8" ], "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: B1902434893C4E09A6C982541DD15677 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:55 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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "962" ], + "x-ms-client-request-id": [ "32e57663-3b9d-4734-b5c8-be2e844b8b5b" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2370,42 +2388,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD1BDFD4B\"" ], + "ETag": [ "\"1DC53CE3CC94F6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f797a7f-15ef-407c-bf34-9e723ecbcd4d" ], + "x-ms-request-id": [ "a274780b-049c-40b7-8b62-9476b9771bcc" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d1118aa1-70e6-4487-8050-c736dbaab012" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:d1118aa1-70e6-4487-8050-c736dbaab012" ], "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: 61B07D18D1BD49A2892DE9872185C004 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8418" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:56.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "963" ], + "x-ms-client-request-id": [ "93efc7e8-f6aa-426a-aa78-8050d2a0baba" ], "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.4", "Az.Functions/1.0.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": [ "d9b82bdf-b911-48fd-ab59-3a6604c2d479" ], "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/83ae4b5f-164e-4d54-8bc3-4c26d436337f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e8ecae3c-d620-4c68-b11f-a3f05c8a6882" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:e8ecae3c-d620-4c68-b11f-a3f05c8a6882" ], "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: E99C952875F5498BB804B1A7D048B574 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "964" ], + "x-ms-client-request-id": [ "94eaaf2c-2e0d-4b51-9498-ac6057863346" ], "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.4", "Az.Functions/1.0.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": [ "2ac5e480-97e8-4590-aa6d-58af6b717fca" ], "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/2eb32e7d-1bb3-4618-afe5-a4754722a147" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "77d23f77-2984-4bb1-8847-fc230f66f5c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:77d23f77-2984-4bb1-8847-fc230f66f5c9" ], "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: 748DF7137A014B11BC54F8541FEF8668 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:56 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "965" ], + "x-ms-client-request-id": [ "22cf58eb-348c-4fbd-b79d-e4c1420fbb42" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2506,42 +2525,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD1BDFD4B\"" ], + "ETag": [ "\"1DC53CE3CC94F6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7af65ea6-2656-4425-ae68-4bb358996b74" ], + "x-ms-request-id": [ "0cbd1568-1581-434f-a639-4f82ac25413d" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8dba1ebe-503f-41de-999b-fa9905da701f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:8dba1ebe-503f-41de-999b-fa9905da701f" ], "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: 0E5EEA73B4064003A9F94A487F74C8C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8418" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:56.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "966" ], + "x-ms-client-request-id": [ "b751feb0-9424-42a6-81ff-365beb49e8d7" ], "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.4", "Az.Functions/1.0.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": [ "2b9f5a49-6d01-4a0d-a772-4426dba1c565" ], "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/2a293cd8-5abf-417c-8ee5-f0c58cb1e29f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0208d612-309f-4cfb-93c7-96856091fb81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:0208d612-309f-4cfb-93c7-96856091fb81" ], "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: 86C63C2699F04448A7A326744B754EFD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "967" ], + "x-ms-client-request-id": [ "5022ee22-b773-468d-ac5a-fa468d781da2" ], "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.4", "Az.Functions/1.0.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": [ "62a4f25c-ccfb-4b49-a255-c4fa9feef047" ], "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/ec476f2b-a68e-4baf-b4c7-610f69146015" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "37b711bf-19e4-4cd1-8545-edc22b9d491b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:37b711bf-19e4-4cd1-8545-edc22b9d491b" ], "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: 3319E4CAE5764CC095F84E2818E82BF7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:57 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "968" ], + "x-ms-client-request-id": [ "e651c779-140d-4917-a4ff-94daf35aff92" ], "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.4", "Az.Functions/1.0.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": [ "2219c6ce-f2e9-4b34-8c29-f2a55af597c0" ], "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/a81fffed-47e1-473f-b21c-1a404576f5ce" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d49ce5e8-1859-4a61-a2f0-330f4e30141e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:d49ce5e8-1859-4a61-a2f0-330f4e30141e" ], "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: 70BE1D24E0964BEDB1F39C9B34F90A0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:57 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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "969" ], + "x-ms-client-request-id": [ "0c9cae01-be66-4b3a-9df1-e53a45397ba5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2687,42 +2707,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD3A0AD00\"" ], + "ETag": [ "\"1DC53CE3DE8AF20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "384a3878-007d-4599-a7ca-2862de2b935b" ], + "x-ms-request-id": [ "b4a6c979-5c7c-4b0c-b223-f91aea30304d" ], "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": [ "b83679cb-4807-4ac8-a9d9-7d1f5cdffc21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:b83679cb-4807-4ac8-a9d9-7d1f5cdffc21" ], "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: F3A5D58A119A460BA4FA75F0ECE8B4B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:58Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8413" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:58.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "970" ], + "x-ms-client-request-id": [ "6a22554b-b92d-40ba-8ffc-55dd299a099b" ], "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.4", "Az.Functions/1.0.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": [ "427f8107-5330-4f17-8129-7faafe2d63d2" ], "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/11e22391-3f2b-4c15-9a44-e30f5b00bef4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "812ce47c-3e88-469a-bbb5-51223f780c3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:812ce47c-3e88-469a-bbb5-51223f780c3d" ], "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: 58036E797BA84E2A901A49263CFAB1C4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:58Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "971" ], + "x-ms-client-request-id": [ "01a2b29e-48b3-4f86-a401-563a396d594e" ], "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.4", "Az.Functions/1.0.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": [ "7976d0f1-e396-4f40-87fb-dc9954c2958a" ], "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/2e0bfa41-ed30-440b-b19e-42db17e27dc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5973c5e7-e8d1-4a38-8691-b78661d0be06" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:5973c5e7-e8d1-4a38-8691-b78661d0be06" ], "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: BBECFEE192AF4D3390BAA22E51BA0A0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:58Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:58 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "972" ], + "x-ms-client-request-id": [ "46bd3aec-8faa-45ee-bf81-d11706f9ed94" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2823,42 +2844,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD3A0AD00\"" ], + "ETag": [ "\"1DC53CE3DE8AF20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91ecde84-6f88-4607-9eff-0468259fef51" ], + "x-ms-request-id": [ "8496dc80-d94f-497f-9d53-3f62ee1537bb" ], "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": [ "d0b71b4f-b13d-4ff5-abdb-694ff0547417" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121659Z:d0b71b4f-b13d-4ff5-abdb-694ff0547417" ], "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: B02C6D7ED21543E682B78C3F801DB216 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8413" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:58.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "973" ], + "x-ms-client-request-id": [ "a986c4ec-713c-4a30-8678-756634439a7d" ], "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.4", "Az.Functions/1.0.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": [ "a4438690-025c-4774-9aa6-2c9e3740953c" ], "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/68651ecf-665c-4ef4-90ba-bb20067a499e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "93e2ed9c-1643-4ef2-8c59-9dbc575e66a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121659Z:93e2ed9c-1643-4ef2-8c59-9dbc575e66a8" ], "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: 973A0A0F81204ABBA3C7062FC45A48C6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "974" ], + "x-ms-client-request-id": [ "981356ef-86d1-43fd-948f-a0b838281926" ], "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.4", "Az.Functions/1.0.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": [ "b9634a95-da01-4836-a5fe-56fba7e19448" ], "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/c00fe373-376b-474e-9982-4bcd3ff4ce60" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c5d94e4a-a14c-4044-ba11-26496f2dbba3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121659Z:c5d94e4a-a14c-4044-ba11-26496f2dbba3" ], "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: 12081E6C63CA48C5B8B24F21B770CE55 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:59 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "975" ], + "x-ms-client-request-id": [ "fd760069-4b32-4aa1-a22b-fcbaef20670c" ], "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.4", "Az.Functions/1.0.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": [ "c5fa3a6e-5c4c-477b-a259-3d027ed9f9b9" ], "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/9e2e8a8d-46d9-4fef-8c75-84c6e3af50f8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "bfa4e786-416e-4918-ae83-de7a40c5f9af" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:bfa4e786-416e-4918-ae83-de7a40c5f9af" ], "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: 84CE0F9BF6AF4117894A1C8E3FB12D86 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:59 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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?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": [ "976" ], + "x-ms-client-request-id": [ "2f8a888c-58e5-4fc4-8bae-604b6cf9695d" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3004,42 +3026,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD4E4ABB5\"" ], + "ETag": [ "\"1DC53CE3F006DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe750f4b-60e0-471d-b464-c26e6d1ad2e3" ], + "x-ms-request-id": [ "e9a4c760-856a-4505-8070-a909274e34c6" ], "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": [ "d5742f8e-884f-4641-808f-2556c7c0d3f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:d5742f8e-884f-4641-808f-2556c7c0d3f1" ], "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: 605963234C4344D69AD7885E869DC878 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8418" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:59.9633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "977" ], + "x-ms-client-request-id": [ "63338e1b-a639-419b-b8a3-a5811ac23ab6" ], "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.4", "Az.Functions/1.0.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": [ "66bbc583-70f4-4848-9434-0ad2a0ff9c17" ], "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/5a2fa07b-9b0c-49ee-a79b-431d979a0a56" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c54fd709-8835-4ca9-9b2e-e95353be67c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:c54fd709-8835-4ca9-9b2e-e95353be67c7" ], "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: A80E228EA29F4C0AB3455747683E4FA1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1172" ], "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", "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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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": [ "978" ], + "x-ms-client-request-id": [ "dfbc3489-479e-44de-aa8c-675ecb96a5ea" ], "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.4", "Az.Functions/1.0.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": [ "b6ff4938-488f-4784-9a5e-490657fa350b" ], "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/034205d4-73fc-4774-8c71-9625b698540c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "b5714e7b-6858-400f-9691-16c3546b577a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:b5714e7b-6858-400f-9691-16c3546b577a" ], "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: 002E59DB15C64FD59FEC36FDA22985FD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:00 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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "979" ], + "x-ms-client-request-id": [ "8b9c48a3-8069-4dd9-ae4d-cae936be34dd" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3140,42 +3163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC53CE37C68E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d21f0ba1-32c6-4bbe-b8e9-2bef299e36e5" ], + "x-ms-request-id": [ "462be163-22e7-496f-89c0-c9645d6f0b3d" ], "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": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "958ca3f0-f655-4ccc-8118-ea8366fb88b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121701Z:958ca3f0-f655-4ccc-8118-ea8366fb88b5" ], "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: F0465A2246F1406C9B1E1A9731D3E232 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8317" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "980" ], + "x-ms-client-request-id": [ "314b0ee1-0f39-4f24-87a7-a5f9ff6a2b42" ], "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.4", "Az.Functions/1.0.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": [ "3126686f-7265-4661-b146-d3b8a3fce79b" ], "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/2f0884a9-d433-47a3-8dad-515ee4b4d1c2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ec31e80b-00cd-4e58-8775-fe25ffab6b7f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121701Z:ec31e80b-00cd-4e58-8775-fe25ffab6b7f" ], "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: 7BA2381FB4704931AE152A58E83FC540 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "981" ], + "x-ms-client-request-id": [ "b5344c4b-ee5a-4739-8122-fae16f6ee900" ], "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.4", "Az.Functions/1.0.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": [ "e8c4013c-f31c-4bd2-9757-8df2971a7d5d" ], "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/aaffe27d-3bbb-4816-a5c4-bd99a5570439" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8a2a3585-9790-4389-b7a0-64dcdf9267db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121701Z:8a2a3585-9790-4389-b7a0-64dcdf9267db" ], "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: DF8FB24483F74B4690412A57F6B820F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:00 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "982" ], + "x-ms-client-request-id": [ "900e6e4e-9fe8-4792-83bb-a5aef815285e" ], "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.4", "Az.Functions/1.0.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": [ "8339cabb-c806-4197-b971-a7731586b12e" ], "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/cf6216df-1643-4202-8152-02f662a7d547" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "47e0b3f6-2a90-4841-acbe-472a6b670e64" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:47e0b3f6-2a90-4841-acbe-472a6b670e64" ], "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: 8969E915C0364B11882ED096272AD4C0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:01Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:01 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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "983" ], + "x-ms-client-request-id": [ "af8b3c1f-b2fb-4e52-a0b1-a18ba243bf05" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3320,42 +3345,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC53CE37C68E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af7a2edd-6554-43e9-baf8-7e5dfc936233" ], + "x-ms-request-id": [ "a5fa48b4-fc98-4f95-9add-6ab3e4c19b4e" ], "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": [ "aec95036-b9cf-4cef-9165-bb729d3baa86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:aec95036-b9cf-4cef-9165-bb729d3baa86" ], "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: DC6F93B1AC6340FFB18B5F1794ACA687 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8317" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "984" ], + "x-ms-client-request-id": [ "3b8cbbb0-0e28-4dfb-8b7f-bc0371f337cc" ], "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.4", "Az.Functions/1.0.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": [ "57dc7e6a-d00c-4a4a-9184-ee113270c3fc" ], "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/9127c811-133b-4cc7-b19a-271f0992b37e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "70b77f49-3f8d-4348-aca2-dd8a123cc4f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:70b77f49-3f8d-4348-aca2-dd8a123cc4f1" ], "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: FFD4046136484233A62E865ADFDDC8C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "985" ], + "x-ms-client-request-id": [ "66337d16-a870-4fef-9bae-759d5a7ead10" ], "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.4", "Az.Functions/1.0.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": [ "bf70345a-a3a8-49fe-9d8b-60a928a48e88" ], "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/f300f199-5c41-4f69-ba3a-a4cc578bbfe5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "85bddadf-51c4-4a22-9086-1f284c2bbbd6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:85bddadf-51c4-4a22-9086-1f284c2bbbd6" ], "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: 7334E4F144654C3194B6A7FDB77F8AE4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:02 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "986" ], + "x-ms-client-request-id": [ "5f6dcb22-0902-402b-866d-66be22f9c718" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3456,42 +3482,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC53CE37C68E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5cda02c-a6fb-4cf8-b921-52d359a0d917" ], + "x-ms-request-id": [ "f5b3aa30-5d64-4bee-95cb-8afe614c2c87" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "39d9cbaf-271e-42f6-804f-58089ce050ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121703Z:39d9cbaf-271e-42f6-804f-58089ce050ee" ], "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: AE8D0777DD864D539EBE2CD95A680188 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8317" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "987" ], + "x-ms-client-request-id": [ "f242011d-23f9-4089-afd9-3223ab77bbee" ], "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.4", "Az.Functions/1.0.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": [ "926ed73e-3704-4baf-a6fa-f3edb4a9dfd0" ], "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/bf0630bb-c0c8-44e5-b0ef-97bf60ab7a58" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f4e867a6-5ae9-48e3-aff9-ade58bd70f66" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121703Z:f4e867a6-5ae9-48e3-aff9-ade58bd70f66" ], "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: FC2ED085EB6341979A6AC1E8BFAF58EE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "988" ], + "x-ms-client-request-id": [ "20a18ff5-c079-4f03-9c3d-c2ed38819604" ], "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.4", "Az.Functions/1.0.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": [ "11894de8-e6c5-4b9f-bfa6-caa112e2e150" ], "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/4d7eaa32-11e5-4458-9fac-293a11c91964" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "58d9f818-1727-4102-98b9-4a4f7b0c3167" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121703Z:58d9f818-1727-4102-98b9-4a4f7b0c3167" ], "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: FAE4E9EA3CFA424D920B2B3C5721F6A5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:02 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "989" ], + "x-ms-client-request-id": [ "7571c3c7-390c-4ba6-952c-f9f7fd96a91e" ], "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.4", "Az.Functions/1.0.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": [ "f185c541-826f-4700-ae93-285c09dcaa52" ], "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/209f5dca-8b79-46a4-9249-bb4d3f1790d2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "4c7654d3-ebf0-4b9f-aa48-5228bf76288c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121704Z:4c7654d3-ebf0-4b9f-aa48-5228bf76288c" ], "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: 702C93B8B4F44167BCED0FCA2B3159C9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:03Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:03 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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "990" ], + "x-ms-client-request-id": [ "16ecdd98-9169-4a2b-9ce1-028bd9f802df" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3637,42 +3664,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD7ECD5A0\"" ], + "ETag": [ "\"1DC53CE41993400\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3efcd4d-e7f9-4d3c-90d6-77a689f4dbe1" ], + "x-ms-request-id": [ "588637ca-dccd-45c9-b888-1459ada28929" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "308ff1bb-19b5-4627-ad72-dd72928c8a35" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121704Z:308ff1bb-19b5-4627-ad72-dd72928c8a35" ], "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: 6A94A3EC33D04899A1A8B60BBC19CEFC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8317" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:04.32\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "991" ], + "x-ms-client-request-id": [ "ae6dbd13-4f0d-4818-8c08-70e98254b141" ], "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.4", "Az.Functions/1.0.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": [ "eb5dd92c-149e-4ffb-a855-61111623ab9d" ], "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/ffce8949-f935-49fb-860e-7b64aafdd4d1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "6559603a-8de5-4be2-adb4-f2124a67c045" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121704Z:6559603a-8de5-4be2-adb4-f2124a67c045" ], "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: 22EB1D845251410898BF508AE1FECC5F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:04Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "992" ], + "x-ms-client-request-id": [ "4dfabee5-c10e-45d7-97ca-7be673809a21" ], "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.4", "Az.Functions/1.0.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": [ "ade93205-e294-480a-9f73-050421e1bf89" ], "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/cda1e4c2-c236-4d77-a551-df6da9b198b8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "225a9ee7-d1ee-4c60-8882-b745e8a83c72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:225a9ee7-d1ee-4c60-8882-b745e8a83c72" ], "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: 1C193CA527BE4AAFAC187BE27CD968F4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:04 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "993" ], + "x-ms-client-request-id": [ "7b865aea-597d-4b6b-a754-d01a4f7355d5" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3773,42 +3801,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD7ECD5A0\"" ], + "ETag": [ "\"1DC53CE41993400\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f553584e-2d1c-476d-8614-89c8dce4f3dc" ], + "x-ms-request-id": [ "f0f4eabd-c448-42b7-b929-8b2c5204e55c" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fadd6a51-7cc0-450b-b331-cf71d5e8f27d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:fadd6a51-7cc0-450b-b331-cf71d5e8f27d" ], "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: 49C48B999AE04067BB87A90DBECB533B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8317" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:04.32\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "994" ], + "x-ms-client-request-id": [ "fbb575df-5e52-4061-b235-472cbac173e9" ], "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.4", "Az.Functions/1.0.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": [ "d312581e-8b49-4f32-a81b-83e53e86fe87" ], "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/55bb52db-d6e1-4549-baeb-f7008d6a9296" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3e56d21b-2df5-492d-a786-8589ebd816a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:3e56d21b-2df5-492d-a786-8589ebd816a8" ], "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: 2C1C91DC8FF7468F87B506C0C7C0AEDC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "995" ], + "x-ms-client-request-id": [ "1290b641-b9b0-4dfe-9bf1-054c91e33cab" ], "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.4", "Az.Functions/1.0.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": [ "195477ca-8b46-4b53-9b1d-98c115dd1089" ], "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/8fc39472-2e53-41b4-a3d6-8b4dd4c20255" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a7d1dda6-5ebb-4341-843f-bb3449a8d8f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:a7d1dda6-5ebb-4341-843f-bb3449a8d8f9" ], "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: DC9254D41EE649E0B33F0A79FD0BFDA9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:05 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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "996" ], + "x-ms-client-request-id": [ "61d2daf5-d71a-4179-a200-007844eebeaf" ], "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.4", "Az.Functions/1.0.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": [ "759168bb-a88b-40a2-8ce1-876b3839bd5f" ], "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/4977b731-fa84-442b-95e0-67f877e8dfb8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d1602124-a91f-4b1d-b7a4-acb9851dc681" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121706Z:d1602124-a91f-4b1d-b7a4-acb9851dc681" ], "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: C2C9BA2DF6334E67848EF9F97FC5F9A3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:05 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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?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": [ "997" ], + "x-ms-client-request-id": [ "64780a8c-4080-47b2-ba51-a69f98ab07c9" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3954,42 +3983,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD911CDA0\"" ], + "ETag": [ "\"1DC53CE42C9DECB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cba96c5f-f395-4f7e-886c-ddbfedcaeb6d" ], + "x-ms-request-id": [ "42b16fa5-48f8-429b-9eeb-ed507b21b31f" ], "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": [ "43609788-ec82-4bba-9efc-c0eabbb943c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121706Z:43609788-ec82-4bba-9efc-c0eabbb943c1" ], "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: 6F9CE15091EA4992BCAEAC09BC01B1E2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8322" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:06.3166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "998" ], + "x-ms-client-request-id": [ "3375a3db-4ea0-4e69-86b8-10111264321b" ], "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.4", "Az.Functions/1.0.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": [ "ccfd5a2d-dbdf-477e-a252-7e0d23d021f0" ], "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/908ee01a-1795-4957-af54-a652641455e7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "47b32fed-e175-482b-a5df-01239e6c3ce3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121706Z:47b32fed-e175-482b-a5df-01239e6c3ce3" ], "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: 401E930609644309911AE5DD74BADC59 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:06Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1201" ], "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", "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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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": [ "999" ], + "x-ms-client-request-id": [ "aae6633d-c842-402a-8d55-bc215f66bdb8" ], "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.4", "Az.Functions/1.0.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": [ "d75b1673-5517-4333-8387-0b8942db9b88" ], "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/bcb0b122-c224-4143-bd47-5a3516faf563" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "48ce86ca-a57d-477b-a3b9-75035a65e6ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:48ce86ca-a57d-477b-a3b9-75035a65e6ad" ], "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: 641E1277424C4C09AD6DB4BBFE6F4B35 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17: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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "1000" ], + "x-ms-client-request-id": [ "7668041f-2a95-436b-813f-9fab7894b5aa" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4090,42 +4120,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACD87B3A0\"" ], + "ETag": [ "\"1DC53CE39B7FDC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc26ee90-d9f6-49e2-abb6-497ee6dc3e09" ], + "x-ms-request-id": [ "c9537f26-1ae2-4a83-9189-25250ed6644a" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "add27d33-bad3-4f21-85a7-e8a40539db3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:add27d33-bad3-4f21-85a7-e8a40539db3b" ], "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: D379512F406E46A2B6D54010EFFC0076 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8681" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:51.1\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1001" ], + "x-ms-client-request-id": [ "8ce8f0bc-974e-4b4c-8bb7-2dad087852a4" ], "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.4", "Az.Functions/1.0.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": [ "cf5a5c63-2235-4e41-8dda-af35d6c1417b" ], "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/4e5f8883-d6c6-4090-ae1b-a85df2339fe1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "73b55580-7b79-4ea4-a90d-6e3ab3bb860a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:73b55580-7b79-4ea4-a90d-6e3ab3bb860a" ], "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: CB7BEFFA23C84691A40F06A6181E1D4B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1002" ], + "x-ms-client-request-id": [ "f349b4c1-8d3f-4052-aeae-1e32edc41ab4" ], "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.4", "Az.Functions/1.0.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": [ "bd7ad93d-65b8-4923-8bb7-f439edb4172a" ], "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/ecd37599-68d4-4061-be59-0a742e7a25dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2cb23ca8-2eaf-4095-a48e-47043224d08c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:2cb23ca8-2eaf-4095-a48e-47043224d08c" ], "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: EFFBAE832CDC4886A66937BE23A62A8F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:07 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1003" ], + "x-ms-client-request-id": [ "54151687-4f0b-4930-8a31-cf8ad047fad9" ], "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.4", "Az.Functions/1.0.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": [ "c9665f7d-51ed-44fb-9477-db392efc19c5" ], "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/447979e5-525e-449e-8989-8ea6733daa61" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "623b295a-6052-4d41-b3ad-b0654bfe1076" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121708Z:623b295a-6052-4d41-b3ad-b0654bfe1076" ], "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: 392A256693C74722ABD363971973A737 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:07 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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "1004" ], + "x-ms-client-request-id": [ "70741aa5-6827-4114-b2ea-b4818950b0a2" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4270,42 +4302,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADA6AA6E0\"" ], + "ETag": [ "\"1DC53CE43EA42EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a78ed1ad-929f-4d21-9266-b64d0d922278" ], + "x-ms-request-id": [ "7a954f93-078d-46d0-922d-cd7893f17ff9" ], "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": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a283e234-689d-486c-9399-e70a0cb202dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121708Z:a283e234-689d-486c-9399-e70a0cb202dd" ], "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: 100EF7A526E146D998941928DA838989 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8687" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:08.2066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1005" ], + "x-ms-client-request-id": [ "17e2c90a-b8f7-4ea1-beb4-af3a409260c9" ], "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.4", "Az.Functions/1.0.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": [ "8042b764-9633-4c90-93e2-65998197bd82" ], "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/020e570e-1d4d-45f2-87d6-eead448a8568" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "191aeee6-e6f3-45a1-ba28-7a0adc3ff8b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121708Z:191aeee6-e6f3-45a1-ba28-7a0adc3ff8b7" ], "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: F620F0942B6F42C482C357DDCE5A8990 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1006" ], + "x-ms-client-request-id": [ "df59fbb0-7a7f-4756-8ade-d4205809342d" ], "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.4", "Az.Functions/1.0.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": [ "e761b4a3-a09f-4841-a73a-6c20fcbe10ed" ], "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/de5e6f85-0cee-40d4-8691-a42809ceaafc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bded7a55-1325-418e-a9cd-fd513f11bd49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:bded7a55-1325-418e-a9cd-fd513f11bd49" ], "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: 7518F0201FCC485F99C719421F48BFC0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:08 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "1007" ], + "x-ms-client-request-id": [ "3d739d65-243c-446d-ac32-ab3ddf2a09ef" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4406,42 +4439,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADA6AA6E0\"" ], + "ETag": [ "\"1DC53CE43EA42EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d32cb4e7-ebbc-4551-9f67-4bfda060b429" ], + "x-ms-request-id": [ "9a46fbe8-4d3a-4660-b30e-f22f2c3fecd1" ], "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": [ "e28812be-030b-4dfd-b620-51275adbd1e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:e28812be-030b-4dfd-b620-51275adbd1e1" ], "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: 0D72A33846A347959D7669C7AE25E5E2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8687" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:08.2066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1008" ], + "x-ms-client-request-id": [ "bc752f8b-7870-4912-a41b-b78bef22bdb2" ], "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.4", "Az.Functions/1.0.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": [ "7ee2e908-0385-46a4-b12c-3ccd81ea9cd6" ], "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/879b8b4a-e361-4f8d-ba31-c8d32d132498" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3c5d7a9b-3825-44f5-8810-3be3e9cb2962" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:3c5d7a9b-3825-44f5-8810-3be3e9cb2962" ], "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: BB1DAF598225475A92FE413B016C6921 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1009" ], + "x-ms-client-request-id": [ "21e0fca8-cbcd-4cd0-9f34-ad9edc2b8da8" ], "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.4", "Az.Functions/1.0.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": [ "1b5e2daf-cfe9-48ff-933a-e7c45a7b4fd3" ], "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/3406b098-ac5d-4e85-a394-cce68c0a830e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3208617c-d431-4cb2-95f9-33beddaa0501" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:3208617c-d431-4cb2-95f9-33beddaa0501" ], "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: 045A6BB8CBC84EDEA53FF42CFC5B42C6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17: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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1010" ], + "x-ms-client-request-id": [ "16e0f5fc-dbad-4f64-965e-e2b08a0acd45" ], "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.4", "Az.Functions/1.0.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": [ "e367b828-f19e-43bd-833e-f62fa1bf945c" ], "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/f77fe048-5225-41da-bb9b-53e8b50c5339" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "4fc60a82-dc49-45f9-a94d-cc3ae6845467" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:4fc60a82-dc49-45f9-a94d-cc3ae6845467" ], "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: 0DF01B374D094CD5BBA631E7EC8EB8C3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:09 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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "1011" ], + "x-ms-client-request-id": [ "1ed42723-4835-41e7-8bdd-efcd1d210df7" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4587,42 +4621,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADC23A180\"" ], + "ETag": [ "\"1DC53CE44FF7675\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "862a803c-0e58-4b9f-95a4-f178df52cf50" ], + "x-ms-request-id": [ "8c4b1fff-d384-4029-81f2-0e5f18781e83" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bc707ec4-1526-4be3-82a9-edcf7083a3c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:bc707ec4-1526-4be3-82a9-edcf7083a3c2" ], "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: D7A221138CCE4A6686969EFED61F5450 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8687" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:10.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1012" ], + "x-ms-client-request-id": [ "5c34e192-1b8e-4957-81ea-2ab5b2819e11" ], "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.4", "Az.Functions/1.0.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": [ "400f3a01-a1b1-4c98-83ab-df1bebd680c1" ], "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/153d4576-09c0-4128-8d66-b5c17a9a3862" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bd1e1205-a3db-4f81-b710-7634a2ed1ade" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:bd1e1205-a3db-4f81-b710-7634a2ed1ade" ], "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: 9F0A17226938480192419BC6270BD502 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1013" ], + "x-ms-client-request-id": [ "635b36a9-0e6e-4a79-844f-9de60d315118" ], "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.4", "Az.Functions/1.0.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": [ "efa9126c-12fc-4a64-8475-5957337da54c" ], "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/c0d7f4b9-1ada-4f82-9a77-8aea170170a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a94808fd-ad62-45be-9ecb-b6e0a9480469" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:a94808fd-ad62-45be-9ecb-b6e0a9480469" ], "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: EDB2404D14B04DB5866C96299F72AE94 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:10 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "1014" ], + "x-ms-client-request-id": [ "ed6b5109-e7be-43c5-b111-2d88f2593448" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4723,42 +4758,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADC23A180\"" ], + "ETag": [ "\"1DC53CE44FF7675\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c75a9cfd-103a-422a-9cc1-ef8826134110" ], + "x-ms-request-id": [ "fa3f79bb-65d2-4df8-9f92-a55ce430169b" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "10533abc-4510-4e01-b3db-ae06f63604cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121711Z:10533abc-4510-4e01-b3db-ae06f63604cf" ], "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: DFBC55431C4C4DAB8895901AB0BC6263 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8687" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:10.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1015" ], + "x-ms-client-request-id": [ "4ce1246a-9a52-41a0-a5a6-88a615966e5e" ], "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.4", "Az.Functions/1.0.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": [ "3e56debf-bc00-4d36-b270-11a9567093da" ], "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/56a192e0-cf69-4121-ba57-c1cfc0c33e3d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8a306dc2-c633-4d88-a69d-b5aaeaa15d61" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121711Z:8a306dc2-c633-4d88-a69d-b5aaeaa15d61" ], "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: 6D28B28BB550429491C9C552CE0E2857 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1016" ], + "x-ms-client-request-id": [ "e2238fc2-621a-4123-993b-e9aa051272c2" ], "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.4", "Az.Functions/1.0.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": [ "6d685d67-33b3-4631-befc-6a971298ed14" ], "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/200c97d6-0860-4ec6-ae5a-89b6e31b4bb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3b1a487b-c3c3-4eba-bbe3-39510a688883" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121711Z:3b1a487b-c3c3-4eba-bbe3-39510a688883" ], "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: 6FFE7F91140F407A844EA492D3A90DDB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:10 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1017" ], + "x-ms-client-request-id": [ "fc6ae80d-0e5a-4c4f-a174-49276c67eabf" ], "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.4", "Az.Functions/1.0.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": [ "457e6823-59af-4330-81b3-1c1e5be999f8" ], "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/a44fbc67-0f18-4c09-bcc7-f5c577ffd8e3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "719a8069-ac6a-446a-9140-41163fb00762" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:719a8069-ac6a-446a-9140-41163fb00762" ], "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: B0D308400DCB46CCA0C8F04CBDC2822B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:11Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:11 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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?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": [ "1018" ], + "x-ms-client-request-id": [ "0bb3dfb5-61aa-4814-bd65-a1e4084de2d3" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4904,42 +4940,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADD68226B\"" ], + "ETag": [ "\"1DC53CE46205CCB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "92bd8b82-8ef4-4612-b526-c5392b956dc1" ], + "x-ms-request-id": [ "ccf58af4-3507-47b1-984d-18594439c9bd" ], "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": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "5bf21b04-dc60-4138-b1ff-20e7b2c6d02e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:5bf21b04-dc60-4138-b1ff-20e7b2c6d02e" ], "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: 56F850E7D4B041E9A009A977E34D7F52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7213" ], + "Content-Length": [ "8687" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17: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-8-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1019" ], + "x-ms-client-request-id": [ "3e1d97be-0cec-4815-9733-f1a5869eeb20" ], "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.4", "Az.Functions/1.0.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": [ "2f2bc06d-67eb-46fc-8685-9269586151e1" ], "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/668be6c4-fa42-46fc-b95f-00b2426164ea" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0b2e2248-db71-4f56-b834-5a76f6baf71a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:0b2e2248-db71-4f56-b834-5a76f6baf71a" ], "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: 691A8488190943B086E7567EFA41E3C7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1198" ], "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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", "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-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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": [ "1020" ], + "x-ms-client-request-id": [ "971573c2-9741-4d34-b43f-f6542eaa75d9" ], "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.4", "Az.Functions/1.0.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": [ "0d1896f7-f4ab-49fa-ae18-a575bf9a1a6c" ], "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/a49c0956-3bf1-4e5b-a520-4ae55ff9005e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "300a8eab-a51a-4680-bcfd-e069fc55def9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:300a8eab-a51a-4680-bcfd-e069fc55def9" ], "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: A6E0C742E7A747A7BAD7076AADE61980 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17: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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "1021" ], + "x-ms-client-request-id": [ "a85c219b-0064-4d89-a531-b190dc550db8" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5040,42 +5077,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD04EC2E0\"" ], + "ETag": [ "\"1DC53CE3BB72920\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94337d2b-fc82-4df3-b55f-2c5c635a1a28" ], + "x-ms-request-id": [ "4049686d-44ba-4fc5-9679-c5630263e35c" ], "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": [ "677ca1a4-2ed3-4a12-9d03-abfc161a17ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:677ca1a4-2ed3-4a12-9d03-abfc161a17ed" ], "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: 3CB4A6A0126F4837AC8512EFEFFF8AAF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7142" ], + "Content-Length": [ "8745" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:54.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1022" ], + "x-ms-client-request-id": [ "79e1e049-b05a-43c8-a299-09e150be742d" ], "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.4", "Az.Functions/1.0.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": [ "05559832-0696-4b55-b2d6-87af3e1145c5" ], "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/6f0e18cd-f248-442c-a92a-9fab274a5b90" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e4b6a509-6031-4cab-b612-9c1c40ed1c36" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:e4b6a509-6031-4cab-b612-9c1c40ed1c36" ], "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: 9055C5EA5E1F45E19BE9CCA7510B803E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:13Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1023" ], + "x-ms-client-request-id": [ "223ec3dd-4e76-4adb-9f4f-56ae4506b67a" ], "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.4", "Az.Functions/1.0.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": [ "8a91267e-c23b-434c-a532-a0a6e2c7bab1" ], "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/d2a68e73-296d-4cdb-b418-37d94d1250f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "dff2d01e-c5b7-4aae-93e0-66d0cde9de22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:dff2d01e-c5b7-4aae-93e0-66d0cde9de22" ], "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: DF6B29F36AD84127894CDD0BDA7AC3EF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:13Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:12 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1024" ], + "x-ms-client-request-id": [ "c4190df2-6f28-4bb4-8ea5-95647c7cb50c" ], "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.4", "Az.Functions/1.0.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": [ "2c050c83-4fa4-4b27-aecb-0eece675c4a3" ], "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/547f763f-e367-4c6a-8627-a39084ce54f1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "9c9b753b-d492-4cc5-a28f-0ba2b16d75ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:9c9b753b-d492-4cc5-a28f-0ba2b16d75ab" ], "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: D83F3676CB8D44F9986FB57E60380213 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:13Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:13 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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "1025" ], + "x-ms-client-request-id": [ "0ef7e6e7-3ebd-4844-8f0b-e379fd741a57" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5220,42 +5259,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADEBEF2D5\"" ], + "ETag": [ "\"1DC53CE474CF5EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "559cbfa7-c7a2-469a-8fc6-a3d706f7a28c" ], + "x-ms-request-id": [ "44f00ab9-2833-46f6-ac44-08c4350fab43" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dd4f2c8d-0321-4414-8503-457ef4adb36d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121714Z:dd4f2c8d-0321-4414-8503-457ef4adb36d" ], "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: 4EC35377733F463C88308FCBA73AEE00 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8750" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:13.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1026" ], + "x-ms-client-request-id": [ "68f27159-4f9c-421e-9812-2e918223afef" ], "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.4", "Az.Functions/1.0.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": [ "b2cf2971-2cd3-4e38-a73b-f369e8361066" ], "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/3b52d090-efd4-4df5-88c1-3dfa90a304a1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "168d53cb-0559-415b-a358-8537c0bd7c26" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121714Z:168d53cb-0559-415b-a358-8537c0bd7c26" ], "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: 43FA885774804F5D97D369EFA2E76FE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1027" ], + "x-ms-client-request-id": [ "aec887c5-590f-44a7-a47e-4438c57af5f5" ], "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.4", "Az.Functions/1.0.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": [ "a2ce0bab-8b13-49b4-9ac8-5795deb14bcd" ], "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/7ebe43cd-1efc-462c-aa27-332808199892" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0fe7eb6c-5f3f-4bbd-9e88-abdc30969e35" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121714Z:0fe7eb6c-5f3f-4bbd-9e88-abdc30969e35" ], "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: 8CFFE4D874DD434690462B2BBCCD9F95 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "1028" ], + "x-ms-client-request-id": [ "d0b654e1-1148-4f9a-b9d3-345beb3c6ac8" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5356,42 +5396,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADEBEF2D5\"" ], + "ETag": [ "\"1DC53CE474CF5EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0dd1bbb-4fb8-445b-a596-d7602ff1227b" ], + "x-ms-request-id": [ "4558699b-ea1a-4dc7-9e96-604e27b4d9c8" ], "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": [ "c4160561-8a53-49dc-9897-282c554680f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121715Z:c4160561-8a53-49dc-9897-282c554680f9" ], "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: 82C7088F91D946AB95C3CF556EA2DD2B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8750" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:13.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1029" ], + "x-ms-client-request-id": [ "6962fb72-0c88-474a-90ca-a257166996ab" ], "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.4", "Az.Functions/1.0.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": [ "643a3ec9-7378-42a1-8c0e-daf49c6acb13" ], "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/eb9f7d69-0fc7-4bfc-892e-74585f9cef68" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a3c9ffea-609d-4302-a8ae-452206bb6d08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:a3c9ffea-609d-4302-a8ae-452206bb6d08" ], "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: E52AD58B75034D25A3D24FA0DAB57AAF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:15Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1030" ], + "x-ms-client-request-id": [ "0a52eb01-e740-4700-a596-25624c25feb9" ], "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.4", "Az.Functions/1.0.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": [ "0b5adb16-dd20-4492-8ab3-627d56cfafdb" ], "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/34ea44ac-ee64-4efe-b9f9-8c52e0a00a50" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "761c2114-cfe5-412a-badd-ef07a02415dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:761c2114-cfe5-412a-badd-ef07a02415dd" ], "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: 8F973064EF67449C8C88EEDD5227A61D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:16Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:15 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1031" ], + "x-ms-client-request-id": [ "e7029dad-68f0-4c76-b266-9c9c9bc773a7" ], "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.4", "Az.Functions/1.0.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": [ "2aa254e3-f017-447e-b1c0-fbe1706b79af" ], "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/f2dc0117-7271-4547-aeb0-2b94fd775630" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "7cb91e10-d0b1-4276-8efb-a2b4f6742fb9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:7cb91e10-d0b1-4276-8efb-a2b4f6742fb9" ], "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: 96CC0F9F6A6C4257BF5D480F5280E94B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:16Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:16 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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "1032" ], + "x-ms-client-request-id": [ "8faa9ac2-0aa0-4a50-b1d5-c2e2ae8193e9" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5537,42 +5578,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADFD8380B\"" ], + "ETag": [ "\"1DC53CE48EE08C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3adb0b8a-d33c-40a9-9129-c773f7f13ea6" ], + "x-ms-request-id": [ "ca23e60b-8b7f-4625-83c4-f2922caef183" ], "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": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "71ba5699-0bfb-46e4-b54e-85c806f7906a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:71ba5699-0bfb-46e4-b54e-85c806f7906a" ], "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: 24B6ABF7FBC649BEB59D8A05EF4B2F89 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:16Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8745" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:16.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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1033" ], + "x-ms-client-request-id": [ "104b897d-5b58-4f05-8e10-9f33af0d89b1" ], "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.4", "Az.Functions/1.0.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": [ "81b01f59-7892-470e-b6a3-eb889ce28ef4" ], "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/97f49b3f-e560-4bbb-8a46-12511486e6dd" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ea19ba69-ca53-40be-b5e3-29edb754ce64" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121717Z:ea19ba69-ca53-40be-b5e3-29edb754ce64" ], "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: 8169C85594FF41FBA3A64849E72FF6CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1034" ], + "x-ms-client-request-id": [ "ff06190c-287d-4500-9953-65ac4b70a84e" ], "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.4", "Az.Functions/1.0.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": [ "2a8b110e-75e1-4f06-9efb-dfb56feb06a5" ], "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/29292011-ea92-4199-971d-ef4c0ccc18b2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "6c1c4d44-97bf-4461-a9d2-88d3cc02a65b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121717Z:6c1c4d44-97bf-4461-a9d2-88d3cc02a65b" ], "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: 16BAFB85FDFC4A7EB5E54796A5EABF2C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:16 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "1035" ], + "x-ms-client-request-id": [ "0dd579e3-e3ea-4d94-9b4e-66805a57058c" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5673,42 +5715,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADFD8380B\"" ], + "ETag": [ "\"1DC53CE48EE08C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4201632-7381-4d8a-bf3b-45051d53768f" ], + "x-ms-request-id": [ "6be09834-5be8-4f3d-959a-40aa45d63375" ], "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": [ "91e356bf-146a-4ab7-baae-01ed19e7bd66" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121717Z:91e356bf-146a-4ab7-baae-01ed19e7bd66" ], "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: 0B91EB075B6148F1A88C0E77F0C46BA9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8745" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:16.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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1036" ], + "x-ms-client-request-id": [ "30ef5634-6a63-4bdb-968b-dcfc6d4fe108" ], "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.4", "Az.Functions/1.0.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": [ "557e5c8d-621a-40eb-847d-f58b4ca5c3fe" ], "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/9ccef544-e89a-40fd-b41b-33b8cd34ad85" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2008e1e2-3809-4d73-8c87-555afed9ed30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121718Z:2008e1e2-3809-4d73-8c87-555afed9ed30" ], "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: 13B77D66D9CC44A0839AFC28DD8DDF82 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1037" ], + "x-ms-client-request-id": [ "c398c84a-6640-460c-ac42-c9a2613227cc" ], "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.4", "Az.Functions/1.0.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": [ "266e7a58-0d22-4ef0-bcb2-c0bbf219846d" ], "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/bd74b5fd-b62b-4e8b-bb33-171c98e53197" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bcf89ae8-77c4-4e80-b7a7-7fe3308f2acd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121718Z:bcf89ae8-77c4-4e80-b7a7-7fe3308f2acd" ], "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: 04CD20EEE74D43258F806D67C05C9747 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1038" ], + "x-ms-client-request-id": [ "86f3d2f2-2733-45bc-b8a1-70a9ed9d0c3a" ], "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.4", "Az.Functions/1.0.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": [ "4ce3cff7-eb2a-4853-a424-43f3e79263f7" ], "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/229f3656-8b06-4191-a099-d3708ae2ff94" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "1effb554-00c5-4f7f-a1ea-c89f4fdad118" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121718Z:1effb554-00c5-4f7f-a1ea-c89f4fdad118" ], "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: 930AFABEA21C48E6AF3C86B8ECF3C2B8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:18 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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?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": [ "1039" ], + "x-ms-client-request-id": [ "33aa5c26-97ef-4549-a004-6eafaf115774" ], "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.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5854,42 +5897,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AE102C855\"" ], + "ETag": [ "\"1DC53CE4A21C0CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2800ac00-9c44-4960-88c7-fd9479f280be" ], + "x-ms-request-id": [ "f8bbd7c9-a9d7-4ca6-aa2c-756a0b96fc9f" ], "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": [ "d8681155-b84b-4d21-a7a6-ec0c5164e146" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121719Z:d8681155-b84b-4d21-a7a6-ec0c5164e146" ], "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: 79FE2C642DBE4B1A8AEB51F594270310 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:18Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8750" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:18.6366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1040" ], + "x-ms-client-request-id": [ "cc7867e9-3a4a-414f-9507-5d53d2cc869d" ], "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.4", "Az.Functions/1.0.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": [ "42b80e5a-fcb2-495f-9058-5fbb49952ad6" ], "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/e856f9bf-ebfe-45e0-8d09-9d7397be52e0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b7a839ad-ac23-4f74-8771-f802c66e611e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121719Z:b7a839ad-ac23-4f74-8771-f802c66e611e" ], "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: 08C82E393DF24B0383F9308ED8E35E02 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1213" ], "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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", "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-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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": [ "1041" ], + "x-ms-client-request-id": [ "56cdfe9d-febc-4f1e-85c3-d5c7c86b4ffb" ], "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.4", "Az.Functions/1.0.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": [ "17c6f929-380d-44ae-a760-54ef32e04094" ], "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/6c5d39a6-dd6b-406d-a048-b2c131b427b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "6abb3e56-b178-460a-acb8-b2cf8e8abbaa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251112T121719Z:6abb3e56-b178-460a-acb8-b2cf8e8abbaa" ], "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: CE27360D55D64FF59B29953FCDBA2A4E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:19Z" ], + "Date": [ "Wed, 12 Nov 2025 12:17:18 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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 7140dc4882a9..b6f3a6fec023 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,89 +1,132 @@ { - "functionNameDotNetIsolated": "Functions-DotNet-Isolated9mgi8jlqpw", - "functionAppTestPlanName": "Functions-MyTestPlan1-jxe6kb3vil", - "servicePlansToCreate": [ - { - "WorkerType": "Windows", - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg", - "Location": "central us", - "Sku": "EP1", - "Name": "Functions-Windows-Premium-vesazn", - "MaximumWorkerCount": 10, - "MinimumWorkerCount": 1 - }, - { - "WorkerType": "Linux", - "ResourceGroupName": "Functions-Test-Linux-Premium-23kylb", - "Location": "central us", - "Sku": "EP1", - "Name": "Functions-Linux-Premium-wdx4cl", - "MaximumWorkerCount": 10, - "MinimumWorkerCount": 1 - } - ], - "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", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-xj3rn0czbp", + "storageAccountWindows": "functionswinstorageelx", + "functionNamePowerShell": "Functions-PowerShellTest-u074f23mpl", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-rqj7bp", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-lf9t8w", + "functionNameJava": "Functions-Java-pxi52b0hul", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-2g56pvnthz", + "functionNameTestApp": "Functions-TestAppName-f93hv67mky", + "functionNameContainer": "Functions-CustomImage-yji9lmaxko", + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-cjes6i", + "functionAppTestPlanName": "Functions-MyTestPlan1-is0kb9p8ar", + "flexStorageAccountPython": "flexapppythonsa112925", + "functionAppPlanName": "Functions-MyPlan-4gtyj69072", + "flexTestRunId": 112925, + "flexResourceGroupName": "Functions-Flex-RG-112925", + "storageAccountLinux": "functionslinuxstoragevo6", + "newApplInsights": { + "AppId": "a216cd51-e495-41b1-87f4-8d6afd178401", + "ApplicationId": "Functions-PowerShellTest-u074f23mpl-new", + "ApplicationType": {}, + "ConnectionString": "InstrumentationKey=6d61e4a0-2d68-4b31-aac3-2033202c388f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a216cd51-e495-41b1-87f4-8d6afd178401", + "CreationDate": "2025-11-12T11:13:59.9408869Z", + "DisableIPMasking": null, + "DisableLocalAuth": null, + "Etag": "\"6f06faf3-0000-0300-0000-69146bfc0000\"", + "FlowType": {}, + "ForceCustomerStorageForProfiler": null, + "HockeyAppId": null, + "HockeyAppToken": null, + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl-new", + "ImmediatePurgeDataOn30Day": null, + "IngestionMode": {}, + "InstrumentationKey": "6d61e4a0-2d68-4b31-aac3-2033202c388f", + "Kind": "web", + "LaMigrationDate": null, + "Location": "centralus", + "Name": "Functions-PowerShellTest-u074f23mpl-new", + "PrivateLinkScopedResource": null, + "PropertiesName": "Functions-PowerShellTest-u074f23mpl-new", + "ProvisioningState": "Succeeded", + "PublicNetworkAccessForIngestion": {}, + "PublicNetworkAccessForQuery": {}, + "RequestSource": {}, + "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", + "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-u074f23mpl-new_a216cd51-e495-41b1-87f4-8d6afd178401_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-new-ws" + }, + "functionNameDotNetIsolated": "Functions-DotNet-Isolated5ivf3pq4d9", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-wxft49p0i3", "functionAppsToCreate": [ { - "StorageAccountName": "functionswinstorage2mn", - "Runtime": "PowerShell", + "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", + "RuntimeVersion": "7.4", + "Name": "Functions-PowerShell-74-du1wbt", "FunctionsVersion": 4, - "PlanName": "Functions-Windows-Premium-vesazn", - "Name": "Functions-PowerShell-72-n0c7kq", "OSType": "Windows", - "RuntimeVersion": "7.2", - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg" + "Runtime": "PowerShell", + "StorageAccountName": "functionswinstorageelx", + "PlanName": "Functions-Windows-Premium-pe9wcd" }, { - "StorageAccountName": "functionslinuxstorageums", - "Runtime": "Node", + "ResourceGroupName": "Functions-Test-Linux-Premium-gpxn1b", + "RuntimeVersion": 22, + "Name": "Functions-Node-22-e0u29b", "FunctionsVersion": 4, - "PlanName": "Functions-Linux-Premium-wdx4cl", - "Name": "Functions-Node-18-1u8q25", "OSType": "Linux", - "RuntimeVersion": 18, - "ResourceGroupName": "Functions-Test-Linux-Premium-23kylb" + "Runtime": "Node", + "StorageAccountName": "functionslinuxstoragevo6", + "PlanName": "Functions-Linux-Premium-078h6t" }, { - "StorageAccountName": "functionswinstorage2mn", - "Runtime": "DotNet", + "ResourceGroupName": "Functions-Test-Windows-Consumption-o1blrw", + "RuntimeVersion": 8, + "Name": "Functions-DotNet-8-1axywr", "FunctionsVersion": 4, - "Name": "Functions-DotNet-6-9uj4si", "Location": "central us", - "OSType": "Windows", - "RuntimeVersion": 6, - "ResourceGroupName": "Functions-Test-Windows-Consumption-kylbxe" + "Runtime": "DotNet", + "StorageAccountName": "functionswinstorageelx", + "OSType": "Windows" }, { - "StorageAccountName": "functionslinuxstorageums", - "Runtime": "Python", + "ResourceGroupName": "Functions-Test-Linux-Consumption-cjes6i", + "RuntimeVersion": "3.12", + "Name": "Functions-Python-312-flmd3a", "FunctionsVersion": 4, - "Name": "Functions-Python-310-bj26n8", "Location": "central us", - "OSType": "Linux", - "RuntimeVersion": "3.10", - "ResourceGroupName": "Functions-Test-Linux-Consumption-h8frn2" + "Runtime": "Python", + "StorageAccountName": "functionslinuxstoragevo6", + "OSType": "Linux" } ], - "functionNameContainer": "Functions-CustomImage-5y3dpkzqcb", - "functionNamePython": "Functions-Python-iyf85pjd9l", - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-x7qylg", + "flexIdentityInfo": { + "ClientId": "e76d6800-ea07-432f-b8ef-88057ad63ff7", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925", + "Location": "eastasia", + "Name": "my-flex-app-uai-112925", + "PrincipalId": "3f8376fb-b747-4ef3-b5a7-2249978a1f9c", + "ResourceGroupName": "Functions-Flex-RG-112925", + "SystemData": { + "CreatedAt": null, + "CreatedBy": null, + "CreatedByType": null, + "LastModifiedAt": null, + "LastModifiedBy": null, + "LastModifiedByType": null + }, + "SystemDataCreatedAt": null, + "SystemDataCreatedBy": null, + "SystemDataCreatedByType": null, + "SystemDataLastModifiedAt": null, + "SystemDataLastModifiedBy": null, + "SystemDataLastModifiedByType": null, + "Tag": {}, + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" + }, + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-o1blrw", "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": "07c990f3-9ff2-49a7-83b7-6611809c6eb1", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", "Location": "centralus", "Name": "ID1", - "PrincipalId": "d715fdf3-1893-4720-bfd0-54b67d03e7a1", - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg", + "PrincipalId": "a33012dd-6c07-4e9f-923e-7b3bbf5547ea", + "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", "SystemData": { "CreatedAt": null, "CreatedBy": null, @@ -102,45 +145,45 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "functionNameCustomHandler": "Functions-CustomHandleresz8ym7unv", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-vesazn", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-rozbul", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-23kylb", - "functionNameNode": "Functions-Node-4fqxib7usc", - "functionNamePowerShell": "Functions-PowerShell-0sp8e17wjo", - "newApplInsights": { - "AppId": "32cb91e9-6c19-49c2-9e1a-5c74e8167aa1", - "ApplicationId": "Functions-PowerShell-0sp8e17wjo-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", - "DisableIPMasking": null, - "DisableLocalAuth": null, - "Etag": "\"28000b49-0000-0300-0000-6674cf390000\"", - "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", - "ImmediatePurgeDataOn30Day": null, - "IngestionMode": {}, - "InstrumentationKey": "e2b07092-a978-4d94-af24-5ea770e4263b", - "Kind": "web", - "LaMigrationDate": null, - "Location": "centralus", - "Name": "Functions-PowerShell-0sp8e17wjo-new", - "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShell-0sp8e17wjo-new", - "ProvisioningState": "Succeeded", - "PublicNetworkAccessForIngestion": {}, - "PublicNetworkAccessForQuery": {}, - "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg", - "RetentionInDay": 90, - "SamplingPercentage": null, - "Tag": {}, - "TenantId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "Type": "microsoft.insights/components", - "WorkspaceResourceId": null - } + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-o8n3yqx5lc", + "functionNamePython": "Functions-Python-10bxo65l7g", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-jm5wr8ezis", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-pe9wcd", + "flexStorageAccountPowerShell": "flexapppowershellsa11292", + "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsa1", + "functionNameDotNet": "Functions-DotNet-we3pd25b9g", + "flexStorageAccountCustom": "flexappcustomsa112925", + "functionNameNode": "Functions-Node-qb4h0d3z2x", + "servicePlansToCreate": [ + { + "WorkerType": "Windows", + "MaximumWorkerCount": 10, + "Location": "central us", + "MinimumWorkerCount": 1, + "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", + "Name": "Functions-Windows-Premium-pe9wcd", + "Sku": "EP1" + }, + { + "WorkerType": "Linux", + "MaximumWorkerCount": 10, + "Location": "central us", + "MinimumWorkerCount": 1, + "ResourceGroupName": "Functions-Test-Linux-Premium-gpxn1b", + "Name": "Functions-Linux-Premium-078h6t", + "Sku": "EP1" + } + ], + "functionAppTestPlanName2": "Functions-MyTestPlan2-nth8y5exl1", + "location": "central us", + "flexStorageAccountNode": "flexappnodesa112925", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-078h6t", + "flexStorageAccountJava": "flexappjavasa112925", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-q80swm", + "flexLocation": "East Asia", + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-gpxn1b", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", + "functionNameCustomHandler": "Functions-CustomHandlerh7ucdtvris" } From 1617f8d5fea4dcd4934bf86411bc11f94a9c008d Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 12 Nov 2025 10:55:51 -0800 Subject: [PATCH 13/26] Add Get-AzFunctionAppFlexConsumptionRuntime to functionsToExport --- src/Functions/Functions.Autorest/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Functions/Functions.Autorest/README.md b/src/Functions/Functions.Autorest/README.md index c613df53bd0e..42a47a7608dc 100644 --- a/src/Functions/Functions.Autorest/README.md +++ b/src/Functions/Functions.Autorest/README.md @@ -3,6 +3,9 @@ This directory contains the PowerShell module for the Functions service. --- +## Status +[![Az.Functions](https://img.shields.io/powershellgallery/v/Az.Functions.svg?style=flat-square&label=Az.Functions "Az.Functions")](https://www.powershellgallery.com/packages/Az.Functions/) + ## Info - Modifiable: yes - Generated: all @@ -108,6 +111,7 @@ metadata: functionsToExport: - Get-AzFunctionApp - Get-AzFunctionAppAvailableLocation + - Get-AzFunctionAppFlexConsumptionRuntime - Get-AzFunctionAppPlan - Get-AzFunctionAppSetting - New-AzFunctionApp From 4ff0d46a61dabf740dba7ec3198f91488a784269 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 12 Nov 2025 10:58:13 -0800 Subject: [PATCH 14/26] Update examples --- .../Get-AzFunctionAppAvailableLocation.md | 95 ++++++++++++++++++- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 68 +++++++++++++ .../examples/New-AzFunctionApp.md | 20 +++- 3 files changed, 178 insertions(+), 5 deletions(-) create mode 100644 src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md diff --git a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md index dc9a87911a89..4d0dd5f2423e 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. 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..2df3eea3e9d9 --- /dev/null +++ b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -0,0 +1,68 @@ +### 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 +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 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. + 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 ee36ebf8f6f669ab06b790d91b1016dd55726fc7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 12 Nov 2025 11:04:14 -0800 Subject: [PATCH 15/26] Update documentation to include Flex Consumption content --- .../Functions.Autorest/docs/Az.Functions.md | 5 +- .../Get-AzFunctionAppAvailableLocation.md | 103 +++++++++- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 185 +++++++++++++++++ .../docs/New-AzFunctionApp.md | 194 +++++++++++++++++- 4 files changed, 479 insertions(+), 8 deletions(-) create mode 100644 src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md 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. diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md index 1321d03f8ae3..ffca44b918c0 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,92 @@ 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 +```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 +296,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). 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..e3fc465b4bc3 --- /dev/null +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -0,0 +1,185 @@ +--- +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 + +### AllRuntimes (Default) +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location [] +``` + +### AllVersions +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [] +``` + +### ByVersion +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime -Version + [] +``` + +### DefaultOrLatest +``` +Get-AzFunctionAppFlexConsumptionRuntime -DefaultOrLatest -Location -Runtime + [] +``` + +## DESCRIPTION +Gets the Flex Consumption function app runtimes supported at the specified location. + +## EXAMPLES + +### 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 +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 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. + +```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: AllVersions, ByVersion, DefaultOrLatest +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: ByVersion +Aliases: + +Required: True +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.Autorest/docs/New-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md index 06dbf5d62768..8cbec14ce288 100644 --- a/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md @@ -54,6 +54,19 @@ New-AzFunctionApp -Environment -Name -ResourceGroupName ] ``` +### 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 Creates a function app. @@ -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. @@ -180,6 +225,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 +302,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 +333,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 +363,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: @@ -276,6 +428,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 +458,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 +633,7 @@ The function runtime. ```yaml Type: System.String -Parameter Sets: ByAppServicePlan, Consumption +Parameter Sets: ByAppServicePlan, Consumption, FlexConsumption Aliases: Required: True @@ -466,7 +648,7 @@ The function runtime. ```yaml Type: System.String -Parameter Sets: ByAppServicePlan, Consumption +Parameter Sets: ByAppServicePlan, Consumption, FlexConsumption Aliases: Required: False From 403bbbce36666e17e652b0324df347930ed3315d Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 13 Nov 2025 12:52:56 -0800 Subject: [PATCH 16/26] Set test flags and call internal cmdlets only --- .../Functions.Autorest/custom/New-AzFunctionApp.ps1 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 961f1fc932db..a57171939771 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -768,12 +768,13 @@ Example: if (-not $DeploymentStorageContainerName) { + $useTestData = ($env:FunctionsTestMode -and $env:FunctionsUseFlexStackTestData) # Generate a unique container name $tempName = $Name -replace '[^a-zA-Z0-9]', '' $normalizedName = $tempName.Substring(0, [Math]::Min(32, $tempName.Length)) $normalizedName = $normalizedName.ToLower() - if ($env:FunctionsTestMode) + if ($useTestData) { $randomSuffix = 0 } @@ -783,6 +784,11 @@ Example: } $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + + if ($useTestData) + { + Write-Verbose "Setting DeploymentStorageContainerName to: '$DeploymentStorageContainerName'." -Verbose + } } $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params @@ -1077,7 +1083,7 @@ Example: { if ($flexConsumptionPlanCreated) { - Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params -Force + Az.Functions\Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params -Force } if ($flexConsumptionStorageContainerCreated) { From d70be41844e0e58e162a83a86e0417a866489564 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 13 Nov 2025 12:54:28 -0800 Subject: [PATCH 17/26] Remove Flex plan when removing a Flex function app --- .../custom/Remove-AzFunctionApp.ps1 | 63 ++++++++++++++++++- 1 file changed, 61 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 index 72b28166382a..8ffeadbe275d 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 @@ -99,10 +99,69 @@ function Remove-AzFunctionApp { # Set the name variable for the ShouldProcess and ShouldContinue calls $Name = $InputObject.Name + $ResourceGroupName = $InputObject.ResourceGroup } - # Set the option to not delete an empty App Service plan - $PSBoundParameters.Add("DeleteEmptyServerFarm", $false) | Out-Null + # Determine if the function app is a Flex Consumption app + $deleteEmptyServerFarm = $false + + try { + # Get the function app to retrieve its service plan + $params = @{ + Name = $Name + ResourceGroupName = $ResourceGroupName + } + + if ($PSBoundParameters.ContainsKey("SubscriptionId")) + { + $params['SubscriptionId'] = $SubscriptionId + } + + if ($PSBoundParameters.ContainsKey("HttpPipelineAppend")) + { + $params['HttpPipelineAppend'] = $HttpPipelineAppend + } + + if ($PSBoundParameters.ContainsKey("HttpPipelinePrepend")) + { + $params['HttpPipelinePrepend'] = $HttpPipelinePrepend + } + + $functionApp = $null + $oldWarningPreference = $WarningPreference + $WarningPreference = 'SilentlyContinue' + try + { + $functionApp = Az.Functions\Get-AzFunctionApp @params -ErrorAction SilentlyContinue + } + finally + { + $WarningPreference = $oldWarningPreference + } + + if ($functionApp -and $functionApp.ServerFarmId) + { + # Get the app service plan details + $planParams = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` + -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") + + $planInfo = GetFunctionAppServicePlanInfo -ServerFarmId $functionApp.ServerFarmId @planParams -ErrorAction SilentlyContinue + + # Check if the plan is Flex Consumption + if ($planInfo -and $planInfo.SkuTier -eq "FlexConsumption") + { + $message = "Flex Consumption plan '$($planInfo.Name)' will be removed along with the function app." + Write-Warning $message + $deleteEmptyServerFarm = $true + } + } + } + catch { + # If we can't determine the plan type, default to not deleting the server farm + } + + # Set the option to delete the App Service plan for Flex Consumption, otherwise don't delete + $PSBoundParameters.Add("DeleteEmptyServerFarm", $deleteEmptyServerFarm) | Out-Null if ($PsCmdlet.ShouldProcess($Name, "Deleting function app")) { From 7ee49962e5fb05c15700d1b04f815f6f99fc0cda Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 13 Nov 2025 12:55:39 -0800 Subject: [PATCH 18/26] Fix typo so ACA tests run in live mode --- .../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 0b63d2640031..ee78d5c2a3d6 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'New-AzFunctionApp.ACA')) } -Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { +Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { BeforeAll { From e634a368170e8405889eee3124b0aaa07fdb2f02 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 13 Nov 2025 13:41:12 -0800 Subject: [PATCH 19/26] Add Flex Consumption cleanup tests --- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 191 +++++++++++++++++- 1 file changed, 183 insertions(+), 8 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 4f8018aa6f46..8fb6bea0e4bc 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -25,20 +25,71 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $env:FunctionsUseFlexStackTestData = $true # Set Flex Consumption test variables - # $flexTestRunId = 111125 - # $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 - $flexTestRunId = $env.flexTestRunId $flexLocation = $env.flexLocation $flexResourceGroupName = $env.flexResourceGroupName $flexIdentityInfo = $env.flexIdentityInfo # Helper function to validate core Flex Consumption properties + function Get-AppPackageContainerName { + param( + # The source name used to derive the container name (e.g., function app name) + [Parameter(Mandatory)] + [string]$Name, + + # Optional prefix to use before normalized name and suffix + [string]$Prefix = 'app-package', + + # Maximum length for the normalized core (alphanumeric only, before casing and prefix/suffix) + [int]$MaxCoreLength = 32 + ) + + # Remove non-alphanumeric characters + $tempName = $Name -replace '[^a-zA-Z0-9]', '' + + # Truncate to the allowed max length and lowercase + $normalizedName = $tempName.Substring(0, [Math]::Min($MaxCoreLength, $tempName.Length)) + $normalizedName = $normalizedName.ToLower() + + # Determine suffix: deterministic when FunctionsTestMode is set (truthy), random otherwise + if ($env:FunctionsTestMode) { + $randomSuffix = 0 + } + else { + # Get-Random upper bound is exclusive; 9,999,999 yields range [0..9,999,998] + # Your original code used -Maximum 9999999, which keeps the 7-digit padding contract. + $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + } + + $conainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + return $conainerName + } + + function Get-FlexPlanName + { + param + ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [string]$ResourceGroupName + ) + + if ($env:FunctionsTestMode -and $env:FunctionsUseFlexStackTestData) + { + $suffix = "-0000" + } + else + { + Write-Verbose "Test flags are not set. This will cause a failure in the test case in playback mode." -Verbose + # Get-Random upper bound is exclusive; 9999 yields range [0..9998] + $randomNumber = Get-Random -Minimum 0 -Maximum 9999 + $suffix = "-{0:D4}" -f $randomNumber + } + $name = $ResourceGroupName -replace '[^a-zA-Z0-9]', '' + $prefix = "ASP-$name" + return $prefix.Substring(0, [Math]::Min(35, $prefix.Length)) + $suffix + } + function Test-FlexConsumptionProperties { param( [Parameter(Mandatory=$true)] @@ -669,4 +720,128 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue $functionApp | Should -BeNull } + + It "Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)" { + + # Use the PowerShell test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "PowerShell" } + + $appName = "Functions-Cleanup-Test-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + $invalidAppInsightsName = "non-existent-app-insights-" + $flexTestRunId + + Write-Verbose "Testing cleanup on failure with invalid Application Insights" -Verbose + Write-Verbose "Function app name: $appName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Invalid App Insights name: $invalidAppInsightsName" -Verbose + + Write-Verbose "Getting storage account context for the container validation..." -Verbose + $storageAccount = Get-AzStorageAccount -ResourceGroupName $flexResourceGroupName -Name $storageAccountName + $storageContext = $storageAccount.Context + + Write-Verbose "Capturing existing plans and containers before the test..." -Verbose + $plansBefore = Get-AzFunctionAppPlan -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue + $containersBefore = Get-AzStorageContainer -Context $storageContext -ErrorAction SilentlyContinue + + $planNamesBeforetest = @($plansBefore | ForEach-Object { $_.Name }) + $containerNamesBefore = @($containersBefore | ForEach-Object { $_.Name }) + + Write-Verbose "Plans before test: $($planNamesBeforetest.Count)" -Verbose + Write-Verbose "Containers before test: $($containerNamesBefore.Count)" -Verbose + + $errorId = "ApplicationInsightsProjectNotFound" + $expectedErrorMessage = "Failed to get application insights project name '$invalidAppInsightsName'. Please make sure the project exist." + + $myError = $null + try { + Write-Verbose "Create the Flex Consumption function app..." -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation ` + -ApplicationInsightsName $invalidAppInsightsName ` + -ErrorAction Stop + } + catch { + Write-Verbose "Catch the expected exception" -Verbose + $myError = $_ + } + + Write-Verbose "Validate FullyQualifiedErrorId is $errorId" -Verbose + $myError.FullyQualifiedErrorId | Should Be $errorId + + Write-Verbose "Validate Exception.Message is $expectedErrorMessage" -Verbose + $myError.Exception.Message | Should Match $expectedErrorMessage + + Write-Verbose "Verifying no function app was created" -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue + $functionApp | Should -BeNull + + Write-Verbose "Wait for the plan to be deleted by the backend..." -Verbose + Start-Sleep -Seconds 10 + + Write-Verbose "Verifying the Flex Consumption plan was cleaned up." -Verbose + $expectedPlanName = Get-FlexPlanName -ResourceGroupName $flexResourceGroupName + Write-Verbose "Expected Flex plan name: $expectedPlanName" -Verbose + + $flexPlan = Get-AzFunctionAppPlan -ResourceGroupName $flexResourceGroupName -Name $expectedPlanName -ErrorAction SilentlyContinue + $flexPlan | Should -BeNull + + Write-Verbose "Verifying the deployment container was cleaned up." -Verbose + $expectedContainerName = Get-AppPackageContainerName -Name $appName + Write-Verbose "Expected deployment container name: $expectedContainerName" -Verbose + $deploymentContainer = Get-AzStorageContainer -Context $storageContext -Name $expectedContainerName -ErrorAction SilentlyContinue + $deploymentContainer | Should -BeNull + } + + It "Removes Flex Consumption app and deletes the plan automatically" { + + # Use the PowerShell test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "PowerShell" } + + $appName = "Functions-Remove-FlexPlan-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + + Write-Verbose "Testing automatic plan deletion when removing Flex Consumption app" -Verbose + Write-Verbose "Function app name: $appName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + + Write-Verbose "Create the Flex Consumption function app." -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation + + Write-Verbose "Verify the function app was created." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + $functionApp | Should -Not -BeNullOrEmpty + + Write-Verbose "Get the plan name." -Verbose + $planName = $functionApp.AppServicePlan + Write-Verbose "App service plan name: $planName" -Verbose + + Write-Verbose "Verify the plan exists and is Flex Consumption." -Verbose + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $flexResourceGroupName + $plan | Should -Not -BeNullOrEmpty + $plan.SkuTier | Should -Be "FlexConsumption" + + Write-Verbose "Removing function app: $appName" -Verbose + Remove-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -Force + + Write-Verbose "Verify the function app was deleted." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue + $functionApp | Should -BeNull + + Write-Verbose "Wait for the plan to be deleted by the backend." -Verbose + Start-Sleep -Seconds 10 + + Write-Verbose "Verifying that the Flex Consumption plan was deleted." -Verbose + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue + $plan | Should -BeNull + } } From dfb0ca8c010077a1cced71bd5a37dd50002fc534 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 13 Nov 2025 16:52:43 -0800 Subject: [PATCH 20/26] Update Functions ACA tests --- .../test/New-AzFunctionApp.ACA.Tests.ps1 | 37 +++++++------------ .../Functions.Autorest/test/utils.ps1 | 32 +++++++++++++++- 2 files changed, 44 insertions(+), 25 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 ee78d5c2a3d6..36a9db9a6a75 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 @@ -19,25 +19,20 @@ Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { BeforeAll { - $resourceGroupNameACA = "Functions-ACA-Test-" + (GetRandomStringValue -len 4) - $locationACA = "WestCentralUS" - $storageAccountNameACA = "funcacastotorage" + (GetRandomStringValue -len 4) - $workSpaceACAName = "workspace-azpstest" + (GetRandomStringValue -len 4) - $environmentACAName = "azps-env-test" + (GetRandomStringValue -len 3) - + $resourceGroupNameACA = $env.resourceGroupNameACA + $locationACA = $env.locationACA + $storageAccountNameACA = $env.storageAccountNameACA + $workSpaceACAName = $env.workSpaceACAName + $environmentACAName = $env.environmentACAName + $acaTestRunId = $env.acaTestRunId + + Write-Host "acaTestRunId: $($acaTestRunId)" Write-Host "resourceGroupNameACA: $($resourceGroupNameACA)" Write-Host "locationACA: $($locationACA)" Write-Host "storageAccountNameACA: $($storageAccountNameACA)" Write-Host "workSpaceACAName: $($workSpaceACAName)" Write-Host "environmentACAName: $($environmentACAName)" - # Create test resources - 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" -AllowBlobPublicAccess $false | Out-Null - - Write-Host "" Write-Host "Create Log Analytics workspace." -ForegroundColor Yellow New-AzOperationalInsightsWorkspace -ResourceGroupName $resourceGroupNameACA ` -Name $workSpaceACAName ` @@ -64,15 +59,9 @@ Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { -WorkloadProfile $workloadProfile | Out-Null } - AfterAll { - - Write-Host "Removing test resources." -ForegroundColor Yellow - Remove-AzResourceGroup -Name $resourceGroupNameACA - } - It "Creating a function app ACA should throw an error when ResourceCpu is specified without ResourceMemory." { - $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + $functionAppACAName = "test1appaca1" + $acaTestRunId Write-Host "functionAppACAName: $($functionAppACAName)" $result = { @@ -92,7 +81,7 @@ Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { It "Creating a function app ACA should throw an error when ResourceMemory is specified without ResourceCpu." { - $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + $functionAppACAName = "test1appaca2" + $acaTestRunId Write-Host "functionAppACAName: $($functionAppACAName)" $result = { @@ -112,7 +101,7 @@ Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { It "Creating a function app ACA should throw an error when ResourceMemory is not specified in Gi." { - $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + $functionAppACAName = "test1appaca3" + $acaTestRunId Write-Host "functionAppACAName: $($functionAppACAName)" $result = { @@ -133,7 +122,7 @@ Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { It "Creating a function app ACA with minimum required parameters should succeed." { - $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + $functionAppACAName = "test1appaca4" + $acaTestRunId Write-Host "functionAppACAName: $($functionAppACAName)" $expectedLinuxFxVersion = "DOCKER|mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" @@ -174,7 +163,7 @@ Describe 'New-AzFunctionApp ACA Tests' -Tag 'LiveOnly' { It "Creating a function app ACA with all options should succeed." { - $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + $functionAppACAName = "test1appaca5" + $acaTestRunId Write-Host "functionAppACAName: $($functionAppACAName)" $expectedLinuxFxVersion = "DOCKER|mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index eeaef2cd7e7f..6c125ab6b979 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -261,9 +261,35 @@ function setupEnv() { $newApplInsights = New-AzApplicationInsights -ResourceGroupName $resourceGroupNameWindowsPremium -Name $newApplInsightsName -Location $location $env.add('newApplInsights', $newApplInsights) | Out-Null + # Create resources for Azure Container Apps tests + Write-Host "Creating resources for Azure Container Apps tests..." -ForegroundColor Green + $acaTestRunId = RandomString -len 4 + $resourceGroupNameACA = "Functions-ACA-Test-" + $acaTestRunId + $locationACA = "WestCentralUS" + $storageAccountNameACA = "funcacastotorage" + $acaTestRunId + $workSpaceACAName = "workspace-azpstest" + $acaTestRunId + $environmentACAName = "azps-envtest" + $acaTestRunId + + Write-Host "Create resource group." -ForegroundColor Yellow + New-AzResourceGroup -Name $resourceGroupNameACA -Location $locationACA | Out-Null + Write-Host "Create storage account." -ForegroundColor Yellow + New-AzStorageAccount -Name $storageAccountNameACA ` + -ResourceGroupName $resourceGroupNameACA ` + -Location $locationACA ` + -SkuName Standard_GRS ` + -Kind StorageV2 ` + -AllowBlobPublicAccess $false | Out-Null + + $env.add('acaTestRunId', $acaTestRunId) | Out-Null + $env.add('resourceGroupNameACA', $resourceGroupNameACA) | Out-Null + $env.add('locationACA', $locationACA) | Out-Null + $env.add('storageAccountNameACA', $storageAccountNameACA) | Out-Null + $env.add('workSpaceACAName', $workSpaceACAName) | Out-Null + $env.add('environmentACAName', $environmentACAName) | Out-Null + # Create Flex Consumption resources Write-Host "Creating Flex Consumption resources..." -ForegroundColor Green - $flexTestRunId = 112925 + $flexTestRunId = RandomString -len 4 $flexLocation = 'East Asia' $flexResourceGroupName = "Functions-Flex-RG-" + $flexTestRunId @@ -293,6 +319,9 @@ function setupEnv() { # Add to $env with a key like 'flexStorageAccountDotNetIsolated', 'flexStorageAccountNode', etc. $envKey = "flexStorageAccount" + $runtimeName.Replace("-", "") $env.add($envKey, $storageAccountName) | Out-Null + + # Wait between storage account creations to avoid conflicts + Start-TestSleep -Seconds 2 } Write-Host "Create user assigned managed identity for Flex Consumption tests" -ForegroundColor Yellow @@ -322,5 +351,6 @@ function cleanupEnv() { Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsConsumption Remove-AzResourceGroup -Name $env.resourceGroupNameLinuxConsumption Remove-AzResourceGroup -Name $env.flexResourceGroupName + Remove-AzResourceGroup -Name $env.resourceGroupNameACA } From 7e19ca7b486c117d803cf05479be93c0b311ead8 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 13 Nov 2025 16:54:27 -0800 Subject: [PATCH 21/26] Update autogenerated loadEnv --- src/Functions/Functions.Autorest/test/loadEnv.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/test/loadEnv.ps1 b/src/Functions/Functions.Autorest/test/loadEnv.ps1 index 6a7c385c6b7d..5f079e89615e 100644 --- a/src/Functions/Functions.Autorest/test/loadEnv.ps1 +++ b/src/Functions/Functions.Autorest/test/loadEnv.ps1 @@ -25,5 +25,5 @@ if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { $env = @{} if (Test-Path -Path $envFilePath) { $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json - $PSDefaultParameterValues=@{"*:Tenant"=$env.Tenant} + $PSDefaultParameterValues=@{"*:SubscriptionId"=$env.SubscriptionId; "*:Tenant"=$env.Tenant} } \ No newline at end of file From 37ab29be4e6635652574ebbbdcddf3e78e53cbcc Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 14 Nov 2025 10:17:58 -0800 Subject: [PATCH 22/26] Update test recordings --- .../test/Get-AzFunctionApp.Recording.json | 802 +- ...unctionAppAvailableLocation.Recording.json | 132 +- .../test/Get-AzFunctionAppPlan.Recording.json | 278 +- ...Remove-AzFunctionAppSetting.Recording.json | 1024 +- ...FunctionApp.FlexConsumption.Recording.json | 10383 +++++++++++----- .../test/New-AzFunctionApp.Recording.json | 7507 ++++++----- .../test/New-AzFunctionAppPlan.Recording.json | 136 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 3772 +++--- ...te-Remove-AzFunctionAppPlan.Recording.json | 764 +- .../test/Remove-AzFunctionApp.Recording.json | 847 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3098 ++--- .../Functions.Autorest/test/env.json | 248 +- 12 files changed, 17602 insertions(+), 11389 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index b9f27253a127..8939496ce78e 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "74da692c-4b76-4a94-972f-bf13216b6090" ], + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "549009c0-7cdb-4360-bbf3-598c86eaa706" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,38 +22,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C55B7F3BC0\"" ], - "x-ms-original-request-ids": [ "43a5c74a-f5c5-4186-9057-61b18cfa7f39" ], + "ETag": [ "\"1DC5503F3A7DE40\"" ], + "x-ms-original-request-ids": [ "4ab56373-43a4-40f8-9a26-48d08e9834ea" ], "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": [ "62361b75-f094-45b7-8314-2394ccfdfa3d" ], - "x-ms-correlation-request-id": [ "62361b75-f094-45b7-8314-2394ccfdfa3d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T111654Z:62361b75-f094-45b7-8314-2394ccfdfa3d" ], + "x-ms-request-id": [ "ab51f2cc-bc74-441c-afff-bacdd49d58fd" ], + "x-ms-correlation-request-id": [ "ab51f2cc-bc74-441c-afff-bacdd49d58fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011759Z:ab51f2cc-bc74-441c-afff-bacdd49d58fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FE3668247CB4A43BDB4F137F07D9407 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCEC3502D53748A3B4A80E5AB0AE6FF7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:17:59Z" ], + "Date": [ "Fri, 14 Nov 2025 01:17:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "34244" ], + "Content-Length": [ "33773" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:12:04.86\",\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:13:22.3\",\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:13:57.54\",\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.28\",\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:12:54.9266667\",\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "2ffd05d4-c3a8-4cf4-a08d-b49359c42a9d" ], + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "c11752c5-b7a4-4272-8af1-536c5a17ad5b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -69,36 +69,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87d6f2c2-a0c7-421e-8da6-66c7c602b0d5" ], + "x-ms-request-id": [ "44037d69-eaf5-4e4b-b0d8-b44255ae6025" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c696fce7-d134-4e3e-a015-a967d6864995" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ceff0300-f3ef-4a22-9f79-343c6dbe784b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "47ff5ebc-1a3e-4dc0-bdc8-529bc5c21469" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111655Z:47ff5ebc-1a3e-4dc0-bdc8-529bc5c21469" ], + "x-ms-correlation-request-id": [ "53f2843f-5440-4770-a6b8-7fa07e2d6153" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T011800Z:53f2843f-5440-4770-a6b8-7fa07e2d6153" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 734F9CE04D0F4873816E73B85D6E8E3E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3BB050513FA42339900E4F35B68F4BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:17:59Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1172" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "0eb5ebd9-b216-4ea9-b884-2fdb4f4a67c1" ], + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "98288fe8-ac7c-461f-850e-ca2f0e8ca543" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -114,37 +114,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f1afcc2-7414-46cb-9619-129dbabaea9e" ], + "x-ms-request-id": [ "9365678b-b58d-4dbd-bd5f-50a09d98d8d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb674d30-f9cc-4d32-b493-4567982307d8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/886a2e3b-3a20-4b46-addf-f8a38a82fb4a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c8a64ed-ed59-4098-9bbf-128e5a5fbf5c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111655Z:9c8a64ed-ed59-4098-9bbf-128e5a5fbf5c" ], + "x-ms-correlation-request-id": [ "de8f273d-ea17-41be-b5c3-0b7317a06522" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011800Z:de8f273d-ea17-41be-b5c3-0b7317a06522" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A861C5772714BB8BE1E243254FC9700 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C031496E00A74BBF99B3F576F5E944A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:00Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4181" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "12019a2e-aa82-4e1d-b921-0d984cd047e0" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "b64306d6-7130-4b3b-98ea-3cd158fe033e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -160,36 +160,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "813933ba-5a15-4b9c-a899-7882fab9f5b4" ], + "x-ms-request-id": [ "1d3816d9-d3a9-4fae-b236-05b7cbf4e76d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08caa553-c0b8-47eb-a703-747f0055ee58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20222d23-e3a8-4895-ae29-4b686c659b61" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ed991c4d-786c-4a9b-a063-1241a95b8a0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:ed991c4d-786c-4a9b-a063-1241a95b8a0d" ], + "x-ms-correlation-request-id": [ "4e2a156a-1c64-43e7-8128-cc398fdcee26" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011800Z:4e2a156a-1c64-43e7-8128-cc398fdcee26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DE2220524B5425FBFEA62BA61F7069D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EB050E1BF1D41CEA70D5A5C4C091A33 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:00Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1198" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "8e1116a7-ea2a-4d75-a726-15aa47f6fd1f" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "d8a86769-90fc-4847-ac1f-68859c357051" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -205,37 +205,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26f7ea18-49a0-49b6-8323-fa9dcbc23a0b" ], + "x-ms-request-id": [ "a00ea874-8917-4414-8490-5409a8bc5f2b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83c0d612-4ed4-4b3c-975b-1a60f4dbdfca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37b5a26f-d85b-4e8b-a569-74a2d5e76fbb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cd532af7-b621-413e-aceb-346c79dac9c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:cd532af7-b621-413e-aceb-346c79dac9c6" ], + "x-ms-correlation-request-id": [ "87a72186-6435-4c40-a18b-d35611064ec7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011800Z:87a72186-6435-4c40-a18b-d35611064ec7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1C32931251C485AB3661CB55CA2D86F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C45E84AFF4C4CA5B960DBC6A16D6019 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:00Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:00 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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "5632128e-6277-45bd-87d6-5336d580a104" ], + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "17ed079a-40e1-4266-8801-bfc259e75a67" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -251,36 +251,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e2cd315-c9a4-4dc0-a500-0ec2d92c4cf8" ], + "x-ms-request-id": [ "92c35df8-3f8a-47aa-b7c0-d87e194f45c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3684e9f0-5a8f-48b2-8f60-6554aa615959" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "60345bc0-9cc4-4e8d-b32d-2749b222f12e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:60345bc0-9cc4-4e8d-b32d-2749b222f12e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a49e5b8e-1424-4c9e-abc9-7afda982df38" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7fc15d44-c947-4441-9975-ca5301874d75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:7fc15d44-c947-4441-9975-ca5301874d75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3DBA7C90EE7F45C49FB98100A7864BD5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF972D98DE364963997312FBB85484C1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "9d115db5-cf1c-492f-952c-13d11c0278f4" ], + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "a71feafb-1a16-4113-aff8-848703b7ddc5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -296,37 +296,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e07ed2f-0de8-4919-8a7c-8a3157190b2e" ], + "x-ms-request-id": [ "cc527f08-b3c1-4194-a90e-4b3d04059d50" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3258e0a-b8d2-4a2a-a552-526a2ceda76c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "281768e8-f4ed-4918-91b4-7f4d04c67b28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111656Z:281768e8-f4ed-4918-91b4-7f4d04c67b28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f0c76b9-c106-4fa5-af95-e49ef2b437fc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "343a45ec-02d0-4858-a31a-4de90f5539b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:343a45ec-02d0-4858-a31a-4de90f5539b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9AF0075DEB654415BDFD8774C17A76D2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 936C697062154A319CEC25CDD683F3D4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "acfdcb81-4b98-4154-a5dc-6bc2dc264c8e" ], + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "4db03d98-c2c0-42fa-9c62-ba69e9227149" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -342,36 +342,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a5f1e13-0992-4ecd-a9a4-ef2b1df13eb3" ], + "x-ms-request-id": [ "3930de11-bcfe-4099-9793-0372ef03fa7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb23a638-99e7-4769-9c90-1cdbaf0ad3cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20656e6c-4182-4c75-b7aa-103a5ddc5446" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3aaacb82-bdcb-456c-b616-fba6c7d5ae35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111657Z:3aaacb82-bdcb-456c-b616-fba6c7d5ae35" ], + "x-ms-correlation-request-id": [ "6c196e10-7188-4310-a420-fbc765e88c7a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:6c196e10-7188-4310-a420-fbc765e88c7a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 963D6CEBB2D045C7966B3B8952773713 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03BE6BF09E5948EF82FCFB24D9AE2BFA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1213" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "e5584953-cfa8-43ef-91bb-bbd70222fe90" ], + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "bdcc8c02-17c4-4f02-acc4-2d4e56da690d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -387,37 +387,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "997619a7-a4cd-49d3-b27e-eaf12cf85c36" ], + "x-ms-request-id": [ "2de6f4ee-023c-4d43-b669-33ee40d34a62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3547aa8e-dde3-4048-a988-6cfb0466e844" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b04c49ee-00ca-4853-988d-e9ef4297c72c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111657Z:b04c49ee-00ca-4853-988d-e9ef4297c72c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/abcfc35b-559c-4ae9-8d92-0d8a544047b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "84d83c50-33ab-4832-bef5-afcb67f4fb4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:84d83c50-33ab-4832-bef5-afcb67f4fb4f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FA2F5D8E67B43D3B7BF0D9B0688411E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E295AFCDB6B426FA0E91E4B090A7CA3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "16bfd2da-e363-49f5-ae7e-dcf396147230" ], + "x-ms-unique-id": [ "59" ], + "x-ms-client-request-id": [ "d51be4da-02c4-4f88-bb96-e3d0c08207b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -432,38 +432,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C4D9782F60\"" ], + "ETag": [ "\"1DC550378B71700\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d985d7e-deed-4477-ad4c-4c64551fe16c" ], + "x-ms-request-id": [ "877d2cb7-1ece-4fa1-ad91-c26d27d8ff06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4ac1187a-a2a6-4271-bf6e-fb923ff90c57" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111657Z:4ac1187a-a2a6-4271-bf6e-fb923ff90c57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "6c97e90b-0726-4e6a-ada2-b587dfee3f4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:6c97e90b-0726-4e6a-ada2-b587dfee3f4d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 36D9AEF63AA3447D904CB33CCDC1192A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FA42FF0455C40EDB0614F2F3367110E Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8413" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "6e4bb464-266b-46ef-8b10-44f594660818" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "1c805077-822d-47b1-8f85-27972603d936" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -479,36 +479,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ced0f4e9-3c27-4c6a-807e-915256604d0b" ], + "x-ms-request-id": [ "74cf39b4-7ec2-42d1-a610-7ee350c1e93c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d945f93-0430-49cf-bb13-896f9097f68c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c65c6f06-0d8e-4d80-9895-7cf7beb4ef96" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5174ce25-b451-41ac-a994-212d3aa48804" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111703Z:5174ce25-b451-41ac-a994-212d3aa48804" ], + "x-ms-correlation-request-id": [ "637c22d2-6741-4818-ae40-4971675164db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:637c22d2-6741-4818-ae40-4971675164db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E538A964A2E348A090B1C2EFA5BB09BB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58ACBF9BA7284567B964D3B3FC602F03 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "04afa7df-a477-474a-a062-b2bfa57ec52f" ], + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "9b80ebec-8920-4d1d-9024-0583e437333c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -524,37 +524,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "848b5223-2400-4bcd-b847-e330146b8471" ], + "x-ms-request-id": [ "e2e9d510-90aa-42c2-911b-b5720a75b35f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bdae2164-cad0-4b1b-b9c5-99058d1ff5d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b92e2abc-e339-4058-b631-2cd0b9bc2918" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3b5d88ab-f34d-4a7e-8900-09f1d361a82d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:3b5d88ab-f34d-4a7e-8900-09f1d361a82d" ], + "x-ms-correlation-request-id": [ "b9285d36-caff-4412-807a-bb19c63e582c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:b9285d36-caff-4412-807a-bb19c63e582c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1253E41DF1AB476680FF335758DEA84A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:03Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1F1F9AAA07B48E49F2EB08E38CCBDCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18: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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "d0facad5-799e-4c7e-b0c4-7ce7ad284fe4" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "c8217b5c-e751-455b-a8cf-a872ea28805f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -569,38 +569,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C4FCDC586B\"" ], + "ETag": [ "\"1DC55039C7D6A40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfcbaf7f-3e38-47f9-a376-7513705d6e7b" ], + "x-ms-request-id": [ "65876fd7-9812-4ab1-b554-1d1e8e6b40b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "071cc590-99db-4a1f-9c29-d6aa21af3f75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:071cc590-99db-4a1f-9c29-d6aa21af3f75" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "1f7a10d9-7469-423c-9166-3183ea7073a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:1f7a10d9-7469-423c-9166-3183ea7073a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82D87C10F70D42C4807FF80A9C20FC06 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69CEE01ECDC84760906A71B8A423E679 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8322" ], + "Content-Length": [ "8320" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "731b8c1b-cbd5-4e82-8708-b7cdb66c9ece" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "fd8e2628-508b-4496-a66e-f537172553bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -616,36 +616,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07959927-cb99-4542-a1a5-83c795485b5a" ], + "x-ms-request-id": [ "4e265231-14c5-482c-8404-d259311ba00a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/197b044e-fa9a-4500-91e8-68616619bf06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8622b1b-3257-4df5-9e79-551f0522da94" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6a1ed162-93bd-42ab-ab51-d5499a747a0b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:6a1ed162-93bd-42ab-ab51-d5499a747a0b" ], + "x-ms-correlation-request-id": [ "fc34c19e-a4ef-44cf-a688-2968571ab101" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011803Z:fc34c19e-a4ef-44cf-a688-2968571ab101" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D089DDF020B4E9694309BAC88C5D8CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FA40936FE7E425898272450B68BAAE1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "5118b5ef-1e4f-4514-a543-810b26213d63" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "ce4b0d39-abff-4b09-835b-2aed9bf4fd80" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -661,37 +661,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d49ef9f-a610-450e-baf1-edcce407ded8" ], + "x-ms-request-id": [ "e840d232-9d29-4c49-961f-72275ec1608a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f8fd0f3f-553c-411f-bdda-df6b90d2a7da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b42a22f2-0bcd-4b91-9898-6bd637d5983b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c3ce9d3-2552-4fdd-8e27-7d9561847f07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111704Z:2c3ce9d3-2552-4fdd-8e27-7d9561847f07" ], + "x-ms-correlation-request-id": [ "f8ec2360-9311-49b9-9bfb-e1d83073e59c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011803Z:f8ec2360-9311-49b9-9bfb-e1d83073e59c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21547DB8BE8648BA807FB22081515DEF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A190A94225D4087B3F4449F0CD4F2CA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "f097c059-96c0-4a3e-8d8a-f618e529cfb6" ], + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "8ef58c3c-f30c-4df4-9fa1-73eb4c9db4a8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -706,38 +706,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C52D56D3C0\"" ], + "ETag": [ "\"1DC5503CE55D4EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59d3c898-bee3-4f3f-96b2-bf27619adef0" ], + "x-ms-request-id": [ "986fa33b-5d35-40d5-b0b6-a0abd1b41548" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3c973ee0-8170-40ce-b594-ecdb583fb8a0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111705Z:3c973ee0-8170-40ce-b594-ecdb583fb8a0" ], + "x-ms-correlation-request-id": [ "ce290dd5-a7a0-4c52-b132-b8eb56c25660" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011803Z:ce290dd5-a7a0-4c52-b132-b8eb56c25660" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8EA396D061E4F50A242ABE03EBEC1D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EA38C482FA24F2CB8C90624C1D77498 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8682" ], + "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:12:04.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:12:54.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "dfc0a6d1-923b-418c-9a74-2da39ddb64f3" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "b51bac5e-2f9a-4d38-b187-f340e4000ec0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -753,36 +753,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03a03530-a85e-445e-8711-7564b4197b41" ], + "x-ms-request-id": [ "5cf4ee69-5dc2-40f2-95d2-4bf0fcecf66a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20a4fe7a-5e55-4874-9de9-c70176f40b61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/846fb423-863d-4a49-beea-d9916d1892ba" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a876b4a4-fe61-4493-8239-eb33db9d46ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111705Z:a876b4a4-fe61-4493-8239-eb33db9d46ec" ], + "x-ms-correlation-request-id": [ "5f722744-f6c3-4bed-a134-e7b8ae45c0ef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:5f722744-f6c3-4bed-a134-e7b8ae45c0ef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6907B691277C40D6BF18986F1E16A54D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1C10463DCF741C1BFDBC327A80B165D Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "37062f24-0eda-499c-814c-55395e9367fb" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "c33d8b07-8582-4447-951b-44766def5ec2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -798,37 +798,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3012104-a318-4132-9db9-e2730c3d61fc" ], + "x-ms-request-id": [ "11cf6246-0aa6-4de7-bdc2-6a5830c1df87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6af4066e-1ecf-4190-a4f5-fb19182226d6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "73809267-4f6d-49e6-a105-11030df76348" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111705Z:73809267-4f6d-49e6-a105-11030df76348" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/66176d8f-c570-4dfa-ab52-e92c5bfc1077" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "60c23916-a8ae-4bc6-abb9-c7daaa57e21a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:60c23916-a8ae-4bc6-abb9-c7daaa57e21a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECA8FFA2DE7844CA887E42E5D184CA52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80257AFD5F774649879BE7A6B1B71D13 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "2b0f69ec-0c54-4cdb-9146-1867df002d83" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "6c9a588c-a5c6-48b7-90fd-1232f3e8c956" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -843,38 +843,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C55B7F3BC0\"" ], + "ETag": [ "\"1DC5503F3A7DE40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f231ba95-31c1-40c3-83e8-1598776154e3" ], + "x-ms-request-id": [ "3c26117a-3786-494c-997f-b0f01736b99b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dcaa5978-5cf7-4f48-8445-bde1f9f0bae1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:dcaa5978-5cf7-4f48-8445-bde1f9f0bae1" ], + "x-ms-correlation-request-id": [ "3a7dacde-dbd2-468f-ae2d-f474ba772cdd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:3a7dacde-dbd2-468f-ae2d-f474ba772cdd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8216560B7C934867B57A1BDB18B340FE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 927AC9E37E864318B6464057EE9FB2DF Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8744" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:13:22.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:13:57.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "ce1bdb68-b323-4842-85b8-cb782f1a3a14" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "352ae0b5-79fa-4377-acc6-a1ef84f13817" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -890,36 +890,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "120cc9e5-c315-4b13-845d-67d1642cfc58" ], + "x-ms-request-id": [ "2efad2a5-e0c1-4ddb-9f41-d76f738e873a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2ec34743-7435-4f87-972e-be101597bd13" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49ff7ea4-0609-4e28-8174-9e6b19600067" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5f076fe4-8a1c-45cf-b4cd-a759745b7e3f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:5f076fe4-8a1c-45cf-b4cd-a759745b7e3f" ], + "x-ms-correlation-request-id": [ "e914a7cb-21de-4b74-9f79-c6dacc3ca2f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:e914a7cb-21de-4b74-9f79-c6dacc3ca2f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B94035D6AAD14622AB7A230BD76FEE08 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AC1E1D11C744133A6FCF0864FD1D63B Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "6ffb8359-9bd5-40e9-97ae-14daee165ffa" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "b8a1aef0-586a-4a25-8c33-21f9963adcdc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -935,37 +935,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5af1858-77b4-442a-9bb6-358bb07b066a" ], + "x-ms-request-id": [ "b80b2b34-b6e2-49d3-bbcb-9e51ad7e0d0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c2fb4e36-cd48-4b37-a873-2c28e2ad722b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "76c8e878-1fc8-4e22-90ab-4a76f3057f6a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:76c8e878-1fc8-4e22-90ab-4a76f3057f6a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d99c52d-1f63-4722-af9e-b970c7d80b9e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1095" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16495" ], + "x-ms-correlation-request-id": [ "490ce7ab-b094-41a5-98a2-cd686301be40" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:490ce7ab-b094-41a5-98a2-cd686301be40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC08B1370A434299862BC84640FCDC2A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE7D7B82F44B462EAF062F6BB08B70F9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-lf9t8w/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-ry1xpa/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-lf9t8w/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-ry1xpa/providers/Microsoft.Web/sites?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "15cad44b-7bc3-4598-8969-b69f58290b96" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "d9596307-26f9-4085-afa4-9adcf344b942" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -980,37 +980,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "773bc726-3e0f-417b-980d-5971789ffa72" ], + "x-ms-original-request-ids": [ "74d6e1fd-e69b-4271-83e4-88b908fee34c" ], "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": [ "1f6bf0cc-d584-4e97-8d6e-33564258da75" ], - "x-ms-correlation-request-id": [ "1f6bf0cc-d584-4e97-8d6e-33564258da75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111706Z:1f6bf0cc-d584-4e97-8d6e-33564258da75" ], + "x-ms-request-id": [ "ead3e0fd-0ea0-4b57-9d3b-f602ed54bd87" ], + "x-ms-correlation-request-id": [ "ead3e0fd-0ea0-4b57-9d3b-f602ed54bd87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:ead3e0fd-0ea0-4b57-9d3b-f602ed54bd87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2356E7AECBA042D6B0DDE437346DB130 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90FA9355414F4A7D866440904EC1AF96 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8235" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "63219dea-8a25-4cbf-a31e-f087762cd9a2" ], + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "7243c8b3-5e24-465c-8e03-3b099c450dac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1026,36 +1026,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5508fc11-6139-4273-a54d-b9c5e33f006e" ], + "x-ms-request-id": [ "6622d405-7cb1-47a5-9142-0fc1bcffaa07" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/812dbbfc-8344-4fba-98f5-00989c2dae00" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/64ed7440-0a15-4667-b631-84a28629bb98" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "90abf14e-aaf6-49e5-8ecd-b62dcb7c3747" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111708Z:90abf14e-aaf6-49e5-8ecd-b62dcb7c3747" ], + "x-ms-correlation-request-id": [ "a0033112-8446-4fe8-b26b-ec0808be97ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:a0033112-8446-4fe8-b26b-ec0808be97ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BAE6DDA138942E086227E1D358C2EF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78EF51DC46DF49B69B8E582D8A9BB1B3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "bd635250-92d7-43d3-a197-79e7d5dda940" ], + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "ce3f97b9-38e1-41db-a517-bea3044c94f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1071,25 +1071,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10f92146-4f0c-4113-8ea6-0d1e68c5f7da" ], + "x-ms-request-id": [ "993139b5-a658-44ee-bf24-8f24c522cfc3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f379078-2ddb-4f5a-8c9f-344852ef0705" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bba8114e-d354-4c58-8341-ce1553f551bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "74fbf39a-7d41-4e6e-8451-b5980483b8b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111709Z:74fbf39a-7d41-4e6e-8451-b5980483b8b2" ], + "x-ms-correlation-request-id": [ "34464a94-4a6d-4d54-8b0c-dd6920b7e4fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:34464a94-4a6d-4d54-8b0c-dd6920b7e4fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93972BE83F744F689CCF3031BE662224 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2667AD64C974DC2854E0E15D46A80E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18: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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -1100,8 +1100,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "a9fcf3ff-610f-4e9d-9c56-20f376885a96" ], + "x-ms-unique-id": [ "74" ], + "x-ms-client-request-id": [ "b55ae8f9-9815-4f48-8286-9a74c69d6144" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1116,38 +1116,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C55B7F3BC0\"" ], - "x-ms-original-request-ids": [ "9847b07e-cbaa-4104-a07e-7792633e9554" ], + "ETag": [ "\"1DC5503F3A7DE40\"" ], + "x-ms-original-request-ids": [ "db21edbe-4267-4db0-bb56-7d8daed7dfcc" ], "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": [ "d4be766d-972a-4c2b-893b-3dbeb1fec3a0" ], - "x-ms-correlation-request-id": [ "d4be766d-972a-4c2b-893b-3dbeb1fec3a0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111710Z:d4be766d-972a-4c2b-893b-3dbeb1fec3a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "bc14b505-abc2-4afb-8198-b51bdbcb17f7" ], + "x-ms-correlation-request-id": [ "bc14b505-abc2-4afb-8198-b51bdbcb17f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011806Z:bc14b505-abc2-4afb-8198-b51bdbcb17f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76CBDBBC657446D982EAEB70A3B68946 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3E098A58EFB4100ACB41A61EE6F04BA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "34244" ], + "Content-Length": [ "33773" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:12:04.86\",\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:13:22.3\",\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:09:44.15\",\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:12:54.9266667\",\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:13:57.54\",\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.28\",\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "c17d9135-ea50-4d23-bd49-a0ca38609fdc" ], + "x-ms-unique-id": [ "75" ], + "x-ms-client-request-id": [ "3fb0c376-d890-498f-a5b9-5b7a097a7f1f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1163,36 +1163,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f5c4d58-3af3-4bce-bbab-7ea7099a2cc9" ], + "x-ms-request-id": [ "822cf694-6ac8-43a7-b6cd-d7e73bcbf6d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1267f7ba-45df-4ec5-9760-fcbe4e46172a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/95ace025-364d-48dc-9b63-90e6c739b9a0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d143cae2-73c7-4cbd-8dea-a6cc810ba43d" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111710Z:d143cae2-73c7-4cbd-8dea-a6cc810ba43d" ], + "x-ms-correlation-request-id": [ "7c26185b-daf7-41be-97e4-3f7b4574f9f6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T011806Z:7c26185b-daf7-41be-97e4-3f7b4574f9f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40BF957C280E4B0F98148533F1E4EFF0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2495E5434689440B97A4D0FEB16F6790 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "902251ba-24c3-4e93-960d-6bac2b54948c" ], + "x-ms-unique-id": [ "76" ], + "x-ms-client-request-id": [ "eedad91b-9233-4fac-91be-b013319197b0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1208,37 +1208,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8140ae5-0d9d-4540-bd10-b322458d4eba" ], + "x-ms-request-id": [ "c222143a-bc11-4a6c-b22d-3c46489cf517" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25d2cc46-5a4b-4b20-b3e1-8286f8c5d686" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c32ff079-97ab-424f-9a58-999fa99e5dc4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:c32ff079-97ab-424f-9a58-999fa99e5dc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b938e44-d784-43eb-b0e4-a7606a413b3a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5306db0b-79db-47a3-981f-856a6e45b4bc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011806Z:5306db0b-79db-47a3-981f-856a6e45b4bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89A44B5C13014D12A2B278D1B7CCAF12 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D1B52B3C2564E91A697FB7580F75314 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+4": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "f407d6d4-af22-48a9-80a7-c26734f1fd2c" ], + "x-ms-unique-id": [ "77" ], + "x-ms-client-request-id": [ "c74181f8-5dad-4952-9f70-302a7be1bce1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1254,36 +1254,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f340ac2-d4a6-4309-bbec-1c29f22b790a" ], + "x-ms-request-id": [ "ed4fde6a-0228-4df4-812e-95502d7fb99b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9975b1b0-ed51-4a6d-b03f-7e1979682c53" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c1d8e89-3999-4d9a-8e6f-4b63d5c70a86" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4034bdd5-d596-42e8-9f19-de5ce168972b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:4034bdd5-d596-42e8-9f19-de5ce168972b" ], + "x-ms-correlation-request-id": [ "6b20676e-ff5c-4ac6-812e-207276b7c6b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011807Z:6b20676e-ff5c-4ac6-812e-207276b7c6b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EEA09BD2187743B1BF87FBE9299F052C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 572DB2D2D2CF4F7EB94CE35B38EE78FD Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1213" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+5": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "6d9db8b6-bf91-478f-b48b-2ba7dd10df0a" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "454a4927-1aeb-41ac-9f04-8e5aa9c80e4d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1299,37 +1299,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c38f2fb9-9314-4dbb-91bf-1e86444b3352" ], + "x-ms-request-id": [ "1c356d01-b71c-430c-905b-6c9706b4d7ab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87f53392-53c5-43a7-a5c9-51decbefe1ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e6eda69-e3e7-4675-84c7-6e23cf416ced" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b01f864-ae5e-4e68-b4c7-695e2de6c31c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:1b01f864-ae5e-4e68-b4c7-695e2de6c31c" ], + "x-ms-correlation-request-id": [ "f4c20c6c-e77e-453f-9765-eee09c572e5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011807Z:f4c20c6c-e77e-453f-9765-eee09c572e5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26C2F22CA3094781A3DB231D64C20A52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A14F8A99239424FB445BB234548FB7C Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "fcd0720c-9107-4f83-8690-bdf23fc78647" ], + "x-ms-unique-id": [ "79" ], + "x-ms-client-request-id": [ "d369204d-a15f-4aa6-ae84-4e7194af7d99" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1345,36 +1345,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "120ecc74-e02d-47bc-8bb7-264c432fc8c4" ], + "x-ms-request-id": [ "0bf99c1d-bb42-4929-b973-c5e71a142f6e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c0c00de-60b0-4898-b2fd-e9e24b9cfd97" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44420e39-aa0e-4bd2-bcf9-01b1ea269aeb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "33a383c5-b238-4dfc-a663-c58cad553ce6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111711Z:33a383c5-b238-4dfc-a663-c58cad553ce6" ], + "x-ms-correlation-request-id": [ "f66ef6b1-28d0-4334-b1c0-cd151ee6d625" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011807Z:f66ef6b1-28d0-4334-b1c0-cd151ee6d625" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF1C866894334F69B02069975FED4964 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFC8132DAD144C67879173E2062B28DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1172" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "1c8b8786-4656-457b-a095-d3cddce26efd" ], + "x-ms-unique-id": [ "80" ], + "x-ms-client-request-id": [ "8dd2278b-8a4c-4872-bf12-48463e571c20" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1390,37 +1390,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e86d919c-7a22-4e9c-9c11-b5b6ca525484" ], + "x-ms-request-id": [ "be3602a0-5438-4ac4-8f64-b5b8d5fa6206" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5240da63-39fb-47b1-973f-d316783d7019" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4543dfc-a510-4352-83b4-0f18ff1341f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "306ab39b-37cb-40c8-b785-2ee2a4defe6e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111712Z:306ab39b-37cb-40c8-b785-2ee2a4defe6e" ], + "x-ms-correlation-request-id": [ "f879ecb7-4906-4cb3-b00c-130fe36261f3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011808Z:f879ecb7-4906-4cb3-b00c-130fe36261f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5E7CB5EF22A42BA8596FB3E23054EB9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E313B87E09B4583A53A645205575D36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4181" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "f300d33f-3b83-47c1-b30b-67af42cf34cb" ], + "x-ms-unique-id": [ "81" ], + "x-ms-client-request-id": [ "ead6a6b0-3e32-4920-b657-fa20f96f6aae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1436,36 +1436,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf39e50e-e3d4-4369-9075-69b12f1d1797" ], + "x-ms-request-id": [ "a9b2ccc9-2142-40be-ad8a-722b60c13093" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a4acc16-ce15-4e1f-af5f-8bd4f3c30db5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fec84652-caf0-41a6-9000-edec7f1d81a9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f4a4438e-2f42-4b67-ae03-269b7e48af87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111712Z:f4a4438e-2f42-4b67-ae03-269b7e48af87" ], + "x-ms-correlation-request-id": [ "565da15b-e5db-4c83-bedd-0628719288f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011808Z:565da15b-e5db-4c83-bedd-0628719288f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7319BCCDA4F347369E91139D9A3C416C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FC56F812E8E4249B8B1307C84A7267E Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "3835bb3e-fa21-4536-bf33-4baf7d99cf38" ], + "x-ms-unique-id": [ "82" ], + "x-ms-client-request-id": [ "61cbfcda-677d-4fb6-adf3-a8d2c35eafff" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1481,25 +1481,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb24600f-b153-408b-a601-4dee66e3ff1d" ], + "x-ms-request-id": [ "c0e80ab1-cb3d-49c3-b650-03eeb5145123" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52283fbf-dece-4c8c-a049-5181097dfc9c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9c27fa1a-68a5-4cee-b9b1-11df46b8ecbf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111712Z:9c27fa1a-68a5-4cee-b9b1-11df46b8ecbf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad8911c4-ae54-48fc-b090-cdd38b99b76a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "3d159593-5e15-4ecf-8793-3429205823c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011808Z:3d159593-5e15-4ecf-8793-3429205823c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3274906EB6834BAABFC6A86A52099FD6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 325163848EE44B868A3535CB8F0E34A5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json index d92d5027a2cf..959ffe01c28a 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "e149358c-471a-4ae2-9f1f-89533909d13e" ], + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "4bfbed3a-98b7-499c-b87e-387d27d48b8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3914413f-9877-4d94-8750-73da137b7139" ], + "x-ms-request-id": [ "41fe5ea0-412a-4941-bfb8-c4adba9211ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa50b219-1f01-4298-b4c9-a614f26db221" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd558c56-cc2c-42f3-88b8-84d007f61f1c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b3a6def6-cdd3-4187-a00c-64688041b212" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111713Z:b3a6def6-cdd3-4187-a00c-64688041b212" ], + "x-ms-correlation-request-id": [ "0d557901-4f53-4c3d-8523-e8b9ebcf4c7e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011810Z:0d557901-4f53-4c3d-8523-e8b9ebcf4c7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BD7F1FB2AAE4A4ABB63C859536787A7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2163A08B60A44C3FAA19AFD588506973 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -52,8 +52,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "6da3f5c9-73f2-4fd8-a90e-a40acaafeb49" ], + "x-ms-unique-id": [ "84" ], + "x-ms-client-request-id": [ "f36c0f89-ce83-4ec3-be5e-c48ca364abfa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -69,18 +69,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fde74ce-d8db-4f42-b8ed-442feffacc47" ], + "x-ms-request-id": [ "201dcae3-013e-4ec2-a5ea-c4bdf83f099c" ], "X-AspNet-Version": [ "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/7d6992ea-18ea-4e32-91dc-2a3c9a4e8f08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/a2a3965c-666e-4835-bc6b-24a08ad4c040" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f99c8e1a-6482-4fc6-9b61-16667dd8debf" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T111714Z:f99c8e1a-6482-4fc6-9b61-16667dd8debf" ], + "x-ms-correlation-request-id": [ "3132804c-a7cf-4d12-8ea8-d29103df25e4" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011810Z:3132804c-a7cf-4d12-8ea8-d29103df25e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A475B647CFB54CB3B4738F7FE36AA6A0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F4688109108455F94B4971C94352CF3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37348" ], @@ -98,8 +98,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "ad7e6cde-0ccc-4b5d-a279-dad5c30eacf1" ], + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "e7a2e697-5dbc-4393-8231-82b5fa515317" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -115,18 +115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8686043d-85cf-41f6-a8e8-7ff76f72a732" ], + "x-ms-request-id": [ "a9e8c8f5-a4bf-4522-9485-251e015df7e7" ], "X-AspNet-Version": [ "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/02c80fef-2f84-4144-90d4-050183a37309" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5edaf6bf-cbf9-452c-b081-ee5464e9476d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3b668633-78e0-4d4c-be17-8267cc7c8e67" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T111714Z:3b668633-78e0-4d4c-be17-8267cc7c8e67" ], + "x-ms-correlation-request-id": [ "c7b6d3e1-315e-4437-b5e5-3a4ef1bf7001" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T011810Z:c7b6d3e1-315e-4437-b5e5-3a4ef1bf7001" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C34579749174CCCAD60CF98628227AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 02D07B8DC7D74D2D96DC899F860C945A Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -144,8 +144,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "5d886265-a427-4a13-a172-1eaf010c29fa" ], + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "ace9f0d1-c7d8-4922-aadb-66173cc73535" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -161,18 +161,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e366d222-8dd7-4210-ac37-bd79d7f68470" ], + "x-ms-request-id": [ "7b9ffe0b-4937-4b08-afae-23fe26d6e674" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/28c2f799-2753-44d3-8994-d2f0023f4831" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25b6e607-b983-45da-b728-a8553c66c87f" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111714Z:25b6e607-b983-45da-b728-a8553c66c87f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/70dc80c3-586a-4c85-bb4d-5eed0ca62a5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dd18ca9f-e8fa-4f3c-bb1b-eccf333ef61c" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T011810Z:dd18ca9f-e8fa-4f3c-bb1b-eccf333ef61c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BAED7006C5AC4A7DB4D8ED86918FAA1A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C019981885794B748A19CA93A94DDFF7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37704" ], @@ -190,8 +190,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "55249ff1-baca-4081-a63a-cbbe1ad31fcb" ], + "x-ms-unique-id": [ "87" ], + "x-ms-client-request-id": [ "75ff21b6-6ccb-4609-80dc-8e376d52661e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -207,18 +207,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff27e441-b63b-4ca1-8c07-00651486e812" ], + "x-ms-request-id": [ "a00d3523-0413-476c-b849-4f87c90d1b9f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/530ec900-e9cb-45f1-9f5a-ed24caaa2011" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/01d8070b-5efe-4e61-bab0-17add57bce80" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "470377e9-7ef0-4360-8726-0046c179529f" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111714Z:470377e9-7ef0-4360-8726-0046c179529f" ], + "x-ms-correlation-request-id": [ "e22b85ad-2ff6-4600-8c9d-837838900b77" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T011810Z:e22b85ad-2ff6-4600-8c9d-837838900b77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F312422CE7443D5817E3FB1F255A024 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69DA1AB2B9EE4E0596EF3934732DC902 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -236,8 +236,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "87" ], - "x-ms-client-request-id": [ "e6c33261-bf7b-490f-8fce-d83ce1163296" ], + "x-ms-unique-id": [ "88" ], + "x-ms-client-request-id": [ "353ff101-cdea-4068-b6dd-e6793ac81287" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -253,18 +253,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38cd77ef-4760-4666-9b5e-3429ba949166" ], + "x-ms-request-id": [ "b5ac2b64-d4a0-44b3-a7be-320355bd52df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/cbc047e6-1d3f-41d6-bb50-e090570cc65f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1c924eb4-8de1-44e6-a3fb-6025218eb0be" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2e4942a-4a13-4f25-80a6-0523c3336d98" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111714Z:b2e4942a-4a13-4f25-80a6-0523c3336d98" ], + "x-ms-correlation-request-id": [ "d750340e-ef7a-4c2a-ab2d-23b3d76a6383" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T011811Z:d750340e-ef7a-4c2a-ab2d-23b3d76a6383" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD7F5C9314AF4D748D25F13651232D2D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F0F97BA97D54010A7C34F6DA051BE57 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "27175" ], @@ -282,8 +282,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "5569b8de-35c6-4981-94ea-581ae7f83955" ], + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "b945f31a-9926-4def-a684-ff42105736a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -299,18 +299,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4308d64-b09c-4ef3-8d31-711276e04e92" ], + "x-ms-request-id": [ "fdf5d177-8809-40ac-96bf-f300b2e7594c" ], "X-AspNet-Version": [ "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/84b62c51-5661-443d-ad6e-f0766ac06a25" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/e1cbb4f0-1aab-4429-9850-1c875b5b761f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e7e42056-d979-46ca-9efd-eea0dd37c74c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T111715Z:e7e42056-d979-46ca-9efd-eea0dd37c74c" ], + "x-ms-correlation-request-id": [ "707c5d08-c4fb-4b50-8f81-c2ab52c27a6b" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011811Z:707c5d08-c4fb-4b50-8f81-c2ab52c27a6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41F2B45652BD403CA7FA1284DD387070 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0549FA38B62345A796AB9C8502DCEA89 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:11Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "27175" ], @@ -328,8 +328,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "87d3d5f0-1be3-47db-a260-a54e91f60019" ], + "x-ms-unique-id": [ "90" ], + "x-ms-client-request-id": [ "7ec88b64-1850-47cd-add8-01383e54b53b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -345,18 +345,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b8aeca1-d024-4d37-abe7-871e86493736" ], + "x-ms-request-id": [ "7a335ef0-b065-452d-9903-3bb6f826bf58" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/21abd4e8-ed9e-47bd-9c08-c5f8c3f6577c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a200ed5f-0709-4a97-a758-0d839c91318f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4d7ae0a8-a7d6-4f03-859d-5c0e5d64d6fa" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111715Z:4d7ae0a8-a7d6-4f03-859d-5c0e5d64d6fa" ], + "x-ms-correlation-request-id": [ "2381b61b-f197-443a-b757-bd427eece013" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T011811Z:2381b61b-f197-443a-b757-bd427eece013" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CC0C7F1F67148F08448DD7E200EDE52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:17:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:17:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18267251B5744FA4B3CEED892D4D4111 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:11Z" ], + "Date": [ "Fri, 14 Nov 2025 01:18:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "27175" ], diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json index f87bb377ae60..c5d1af0ebe50 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "138" ], - "x-ms-client-request-id": [ "f17e6711-77f1-4daf-a2f4-2a07b0b0c879" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "df8d712b-2b22-49f6-9935-0b99ed806de7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,37 +22,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "264239f4-8b5a-400d-ba57-b226a5d11f91" ], + "x-ms-original-request-ids": [ "ddc7d686-17a8-4fb0-8e45-c9079f3d3705" ], "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": [ "c07151b8-8685-4623-9595-16d2d4ab03c2" ], - "x-ms-correlation-request-id": [ "c07151b8-8685-4623-9595-16d2d4ab03c2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T111808Z:c07151b8-8685-4623-9595-16d2d4ab03c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "37b73aa4-6abc-4eb5-bbed-806ef1ed39bb" ], + "x-ms-correlation-request-id": [ "37b73aa4-6abc-4eb5-bbed-806ef1ed39bb" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011904Z:37b73aa4-6abc-4eb5-bbed-806ef1ed39bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64C36284ABB84E3EAAAD23E46705261C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:07Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09BB6D14B2D74610B3E7FE852D9212B0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "20dc7f9d-d8ff-47cb-9b5b-72e0a63addbe" ], + "x-ms-unique-id": [ "140" ], + "x-ms-client-request-id": [ "9e483419-beaa-4529-a4a4-e72cd824e620" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -68,36 +68,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9ef00ac-0e54-4e83-afb3-6db73e0ee55e" ], + "x-ms-request-id": [ "77df99ef-afa6-48af-a165-862ccb616e42" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8b3967b8-b394-41ab-9d03-4a89987bf301" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T111808Z:8b3967b8-b394-41ab-9d03-4a89987bf301" ], + "x-ms-correlation-request-id": [ "bdc86b58-c1b8-4fb4-8098-572b9d64d95f" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T011905Z:bdc86b58-c1b8-4fb4-8098-572b9d64d95f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E32EB4FE81E4A4EB5FB4E35BF3EFEB7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C64AED732594460A9AEE6E185977F60 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "140" ], - "x-ms-client-request-id": [ "b2717aea-ea92-48dc-b940-ae9c3d519f55" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "6c98e1c6-d83c-44f8-bacd-8bd31b4ec90b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -113,36 +113,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2d3c665-7206-4885-b450-3fb30f84b0ca" ], + "x-ms-request-id": [ "092b5261-5919-4a5a-92eb-d50ab0935538" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b4c1e684-8e87-4d9f-a76a-5c9094acc875" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111808Z:b4c1e684-8e87-4d9f-a76a-5c9094acc875" ], + "x-ms-correlation-request-id": [ "b4a47433-e07b-4296-bf1d-a72bfc1bf832" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011905Z:b4a47433-e07b-4296-bf1d-a72bfc1bf832" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47DE358647F446039FC76BA259500573 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 60CB95EA1C844782A5D942E80263F997 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "141" ], - "x-ms-client-request-id": [ "9cc1aa4c-4765-4c78-a9e4-3b8498a3dc84" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "e5df0e25-7a3c-4d70-bce3-7d13636254d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -158,36 +158,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b1cd15ef-3680-4892-8963-c97abd230bc0" ], + "x-ms-request-id": [ "4471e6af-5e05-47f8-ba45-ea5ae1057f41" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f50e5922-c5a2-4d52-956f-3c268ee590a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:f50e5922-c5a2-4d52-956f-3c268ee590a6" ], + "x-ms-correlation-request-id": [ "129df95f-aebd-4396-a4b7-f09f5ce9a2cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011905Z:129df95f-aebd-4396-a4b7-f09f5ce9a2cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F15348F083A4460BB0A8262F1C6A798B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71AD9556AA1945DEB38A0300ED4BFCD9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "44361fdf-6397-4667-aed0-9baa3c299a27" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "ef7fa7e5-208f-46ba-863b-c73d74028d74" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -203,36 +203,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1feb075b-a2e0-4c5a-89aa-9fa761b24119" ], + "x-ms-request-id": [ "0b4f0d27-2f58-43e0-973a-723ce400e996" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0ea67b34-3aa0-493a-9fcd-67fdd4e099fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:0ea67b34-3aa0-493a-9fcd-67fdd4e099fe" ], + "x-ms-correlation-request-id": [ "54f477ee-8969-4e17-b622-9ccd5957b267" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011905Z:54f477ee-8969-4e17-b622-9ccd5957b267" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E0A4091A3914402DBED3D83BA6983C97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F9E1DE17D5E4BE98CCA2BF222A5C19C Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-pe9wcd\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-fo9ugi\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "8bc1c4e3-89fb-4eb9-a6f2-b0f25a2dc472" ], + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "ceefc323-219b-4b68-ad13-4e16306c6194" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -248,36 +248,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a306baac-e0c7-4705-9a00-8f11faa1ddd0" ], + "x-ms-request-id": [ "52b0d8a4-6e1b-4e52-ae41-3e7450e5d4a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bbc894ba-e3eb-4018-bc20-d82d8ad9cf4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:bbc894ba-e3eb-4018-bc20-d82d8ad9cf4e" ], + "x-ms-correlation-request-id": [ "9f3d04e9-a863-4e7f-ab66-4a88fe91db73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:9f3d04e9-a863-4e7f-ab66-4a88fe91db73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 205FF6B3A2A54197B0B3DDD4B4BDDD5E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 924B2473B5C448ACB99667AA3431F7FD Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-078h6t\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-4e5vgl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "c2a7ef53-d53c-4a75-b3ad-e0f9590903bf" ], + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "e2818a78-22ce-46a5-97ee-9feca09d994f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -293,36 +293,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aaf75eca-8830-4173-9f11-37e50b6011cd" ], + "x-ms-request-id": [ "fb24cc4a-1f26-47f8-8137-2e248fc82df3" ], "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": [ "00cd9650-fe6f-4f38-96d1-eea2436e2cab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111809Z:00cd9650-fe6f-4f38-96d1-eea2436e2cab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f1fc2e3d-cc20-4436-ad66-7044e5e7fa4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:f1fc2e3d-cc20-4436-ad66-7044e5e7fa4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 351A0F56E23D4CC3B700892B52D95C3B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75423BC5FE4C4C5E86002DA69EB4B109 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/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-ry1xpa/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-lf9t8w/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-ry1xpa/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "1d9dfa07-c2bc-4029-846c-8aa7abbe794f" ], + "x-ms-unique-id": [ "146" ], + "x-ms-client-request-id": [ "9c2aada2-3f1f-425e-9b00-2634d64ecff6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -337,25 +337,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ce2fc52e-8d6f-4ab7-8d25-46a199cabbed" ], + "x-ms-original-request-ids": [ "e2f9f94a-09f4-4676-82cd-18c891be4884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "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-request-id": [ "8686659a-2e28-4129-a8cd-89cb24a7ffa1" ], - "x-ms-correlation-request-id": [ "8686659a-2e28-4129-a8cd-89cb24a7ffa1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111810Z:8686659a-2e28-4129-a8cd-89cb24a7ffa1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "563a322e-5c66-4870-be40-8daf4feb0f90" ], + "x-ms-correlation-request-id": [ "563a322e-5c66-4870-be40-8daf4feb0f90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:563a322e-5c66-4870-be40-8daf4feb0f90" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5920057597EB480FB8250CA1EEC38323 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71B138E133DC4213917A56523E67897D Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1838" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -366,8 +366,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "899d09b1-e838-44ff-8b84-a6d4c0b3f7aa" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "0cfa0661-a518-4df2-af71-1399f4394c8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -382,37 +382,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7bbef311-ea91-4353-ad22-ad2b7c021644" ], + "x-ms-original-request-ids": [ "c42dfa27-ba5a-4ade-9007-2db329126c78" ], "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": [ "bb5bd717-f85d-4952-8701-b1de2b1e478f" ], - "x-ms-correlation-request-id": [ "bb5bd717-f85d-4952-8701-b1de2b1e478f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111810Z:bb5bd717-f85d-4952-8701-b1de2b1e478f" ], + "x-ms-request-id": [ "fd84133e-0d1c-4cd1-86f6-7bfda8889025" ], + "x-ms-correlation-request-id": [ "fd84133e-0d1c-4cd1-86f6-7bfda8889025" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:fd84133e-0d1c-4cd1-86f6-7bfda8889025" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E0773ED462384F049DBCC101E86F579F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8414C291212F45BBB0AF2A3720C35242 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "147" ], - "x-ms-client-request-id": [ "79028c3a-83ed-47cd-8c80-5aaf98779ac6" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "92edd097-eccd-4250-86b1-2733eb503d2e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -428,36 +428,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38b21dfe-f518-4e92-bbf4-01e0851f289e" ], + "x-ms-request-id": [ "864ffbb7-1cc8-4eac-bfef-cd319220b564" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c3fd17af-6384-457a-80e7-eebfa063b3c6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T111810Z:c3fd17af-6384-457a-80e7-eebfa063b3c6" ], + "x-ms-correlation-request-id": [ "c06111f0-6ac3-4954-ba08-fddbeb870ef9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T011907Z:c06111f0-6ac3-4954-ba08-fddbeb870ef9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C715B76415CB4BE6BF0ABA3413BD5620 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0617BB3B8514DBC8C307228C1D2FEA6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "2a3b154b-fb71-4a82-b723-933a2e04fd35" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "a479be12-b2e1-4934-89fb-2123bb74136f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -473,36 +473,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd1af28c-e9e2-459c-a148-a83ac12239c1" ], + "x-ms-request-id": [ "85e28b5f-412d-4cc5-a3d4-7146cb8dfa8c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6b73664b-ef01-4f58-9c9e-f35e72132a39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111810Z:6b73664b-ef01-4f58-9c9e-f35e72132a39" ], + "x-ms-correlation-request-id": [ "f2ac32b3-f546-4298-9d13-73970853e169" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011907Z:f2ac32b3-f546-4298-9d13-73970853e169" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B8642638D8A4AC3BF4BA46437C0F8F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0DCF12A195BA4AEE803D226582CECE63 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "97d56afc-2cc5-464b-a7b9-88f2df8da0a1" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "22447e13-d753-451e-b510-84256f9bfe6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -518,36 +518,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "211bea3e-a80c-497f-a218-cc0fd08fc8b3" ], + "x-ms-request-id": [ "89067ea5-bc17-4e46-b1d0-6e67873e05bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "066f5776-d8ff-4b47-88cb-b776866d5931" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111811Z:066f5776-d8ff-4b47-88cb-b776866d5931" ], + "x-ms-correlation-request-id": [ "3e7f19c2-fe5a-4c7b-93d8-7e6d3614e57a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011907Z:3e7f19c2-fe5a-4c7b-93d8-7e6d3614e57a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1ED2AC8324204D4AB450F7F9C0AAECB4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62853B14392A48F783EFF72EDE6AD6CD Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "fa15047c-d6f5-40fc-ac98-d706dbb05922" ], + "x-ms-unique-id": [ "151" ], + "x-ms-client-request-id": [ "99151ea0-f985-4624-b1b1-54e4d70162d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -563,24 +563,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e942ec23-ae1a-43b3-a00d-ce07edb06253" ], + "x-ms-request-id": [ "61c49c84-202b-49a7-be3a-8df996ba1a53" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f8b2a5d4-efd9-475e-b288-50a6a89649d6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111811Z:f8b2a5d4-efd9-475e-b288-50a6a89649d6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b48e6029-ef37-4598-a37c-6847b8412323" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011907Z:b48e6029-ef37-4598-a37c-6847b8412323" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4715FA20BD24BC99648DFE5A8ED9BC4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58AC0DE7E043427B9E3572453FEA1DFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json index e8cca90b0302..830f21f33827 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-xj3rn0czbp\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\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": [ "c2c20b31-8558-4340-8ad2-9bdd178b14ec" ], + "x-ms-request-id": [ "049ecf50-3c87-4d10-b15a-43479f874928" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4eb954f-57b7-4a2a-bca2-d9433c961d44" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26e8ff6e-874f-43cb-9a56-a04aba00b4fa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4759dd06-cd37-4c13-8bfa-b869cc2d3493" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111812Z:4759dd06-cd37-4c13-8bfa-b869cc2d3493" ], + "x-ms-correlation-request-id": [ "3e072902-062b-40e0-9cd8-f04bafd57cc4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011908Z:3e072902-062b-40e0-9cd8-f04bafd57cc4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C8FCE514E6548BAB8DBF166252861C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE2C24C43FC54A30BF9015340C7380D1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,8 +47,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "b36f0cd6-a17f-494c-a7d4-94836dc87037" ], + "x-ms-unique-id": [ "153" ], + "x-ms-client-request-id": [ "027d98ad-0317-4932-8e17-218263f0c427" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,37 +63,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d8d05ab8-a43b-4375-8381-9b28d373e632" ], + "x-ms-original-request-ids": [ "290c2402-e697-4b7c-a20c-33d409254804" ], "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": [ "12998159-1366-4fc7-af65-59be685d8c34" ], - "x-ms-correlation-request-id": [ "12998159-1366-4fc7-af65-59be685d8c34" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T111812Z:12998159-1366-4fc7-af65-59be685d8c34" ], + "x-ms-request-id": [ "417aa16c-59ec-4bc0-996f-0e6759bebb7e" ], + "x-ms-correlation-request-id": [ "417aa16c-59ec-4bc0-996f-0e6759bebb7e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T011909Z:417aa16c-59ec-4bc0-996f-0e6759bebb7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 504E1EF9209C49A9BB25ACA887F3A6AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 936C4AEB77424EA7B082A81493354A73 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "eea80f4d-0548-4b73-ba6e-b712043d2afb" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "9179698a-ea6d-414d-8d28-7caf5f9c712b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -109,36 +109,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdd06eb5-0ee4-4b4a-ac75-ef1bc6b6a79d" ], + "x-ms-request-id": [ "3e821383-e95c-419d-a7c8-3db1d1d2884f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80c08ccd-c94e-4344-a719-330a1a74b1d1" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111812Z:80c08ccd-c94e-4344-a719-330a1a74b1d1" ], + "x-ms-correlation-request-id": [ "a21677fd-e476-4cd8-b8c5-4f7fb083936d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T011909Z:a21677fd-e476-4cd8-b8c5-4f7fb083936d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB35D7BF61BB4B04B161EEAB2A55E340 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EC5BDEAF9BC463D991469AC971E2E3C Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "ec306a69-1cc8-44ad-8448-af7911d32f5f" ], + "x-ms-unique-id": [ "155" ], + "x-ms-client-request-id": [ "92b06aac-c3c1-4792-9d86-b5c23ac67282" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -154,36 +154,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "991b2112-6721-4086-85da-9d748d89d5c1" ], + "x-ms-request-id": [ "ab8eb09b-38fe-4569-91f9-3db576c7ecca" ], "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": [ "c264b310-bc15-43b2-b9bb-2bbadff38ead" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:c264b310-bc15-43b2-b9bb-2bbadff38ead" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9585c5b5-aa89-4a1f-afdf-690388955a2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011909Z:9585c5b5-aa89-4a1f-afdf-690388955a2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3711E84749C42E4A19CD41F15DF62C1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 734F808FE42F4ACD9769194724A63ABE Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "5469129b-4d80-488e-982f-d22063e43895" ], + "x-ms-unique-id": [ "156" ], + "x-ms-client-request-id": [ "9d85a386-5d56-444e-9c3a-b162124c2e2e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -199,36 +199,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b1b69282-f648-4768-9893-f347734a6e36" ], + "x-ms-request-id": [ "fb406c69-023f-48d4-8922-b96767cc83ba" ], "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": [ "1e6492e5-3c12-4e68-bcbc-97d0dde77d62" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:1e6492e5-3c12-4e68-bcbc-97d0dde77d62" ], + "x-ms-correlation-request-id": [ "f72186f4-c646-4df8-b5c2-2d819bdece39" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011909Z:f72186f4-c646-4df8-b5c2-2d819bdece39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E36E2A0821AD4E3D8E4E73497A478FEC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 727EB762C213452BA437043B6D7FA1DB Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "9bebf2d3-7904-48f9-ab50-c27a3464718d" ], + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "5623eddf-ad4a-487d-b99d-2e658331737c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -244,24 +244,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "308a87e2-268b-4870-aff4-2de8cad21fcb" ], + "x-ms-request-id": [ "4b7a4109-60a8-41ea-be10-6d8d90c78ad1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13bdbfcb-98d3-47e0-974e-fa63a552fb16" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:13bdbfcb-98d3-47e0-974e-fa63a552fb16" ], + "x-ms-correlation-request-id": [ "39d8ad19-aa5a-4bce-9577-ab45fd034a01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011909Z:39d8ad19-aa5a-4bce-9577-ab45fd034a01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE20ED516373470E93B87560F528B8FF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BD38D7D1315445DA3577921E854B44C Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -272,8 +272,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "1207e555-4cc2-4d20-8039-12884a40cd27" ], + "x-ms-unique-id": [ "158" ], + "x-ms-client-request-id": [ "43682290-ccf5-40a8-9161-bcb5a54262f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -288,36 +288,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6609c6da-1a89-4ee2-93b5-daf8336377bb", "b0b5c552-5b04-4c0b-bcb5-dc4e449cfc5d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f74782cc-1a3f-4d5b-aefa-3f033460a787" ], - "x-ms-correlation-request-id": [ "f74782cc-1a3f-4d5b-aefa-3f033460a787" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111813Z:f74782cc-1a3f-4d5b-aefa-3f033460a787" ], + "x-ms-original-request-ids": [ "31c6ee4e-15be-4cd0-a58a-cb60d0ca1414", "2b2880a0-7968-4fc6-83ba-ce788879950a", "4b6688c8-79eb-4b2c-b760-f68ea28d5ac6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "89c10df0-0ac7-4936-ace2-d839607db115" ], + "x-ms-correlation-request-id": [ "89c10df0-0ac7-4936-ace2-d839607db115" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011910Z:89c10df0-0ac7-4936-ace2-d839607db115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2099AB3CB61A4BC8B47EAC7FCE143725 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0349B985AEDB41AA81638FF6879AF795 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "64318d60-f7ea-4702-bfbf-0af7a091be18" ], + "x-ms-unique-id": [ "159" ], + "x-ms-client-request-id": [ "9e6e8424-f825-4c20-af8f-401b2586bd9d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -332,30 +332,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c7743855-5718-4f27-a56e-e0cc737fe276" ], + "x-ms-request-id": [ "98e9a720-f243-4efa-8e4b-1d0e628b18f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/69bea5a2-b85e-432c-80a8-aab4db9915d4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/d1a4a74b-3d3e-4ed9-91ec-ac0cf9d61ed4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d5d60c2b-47a1-40ca-b1e4-b5b520263e87" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T111814Z:d5d60c2b-47a1-40ca-b1e4-b5b520263e87" ], + "x-ms-correlation-request-id": [ "569850d6-107e-479e-96c8-df2fe8ff54da" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011910Z:569850d6-107e-479e-96c8-df2fe8ff54da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE2BDEC9881A42CC940EB90B4297BF61 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 294FA7C775624176B58A521CE7C370F7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-12q6pcrzoi?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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-xj3rn0czbp?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -375,30 +375,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4586fc42-838a-4323-9c2a-b6ad6c471a24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44e67b0a-c88d-493c-a05a-98b51eb6dde4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "ff6669d9-20b7-4cf9-9161-477cf38dc4c0" ], - "x-ms-correlation-request-id": [ "ff6669d9-20b7-4cf9-9161-477cf38dc4c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111819Z:ff6669d9-20b7-4cf9-9161-477cf38dc4c0" ], + "x-ms-request-id": [ "52ad9341-9ba9-47fe-9a68-46e308955ecd" ], + "x-ms-correlation-request-id": [ "52ad9341-9ba9-47fe-9a68-46e308955ecd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011915Z:52ad9341-9ba9-47fe-9a68-46e308955ecd" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F49D99C460CC41F981F00CFCD62EDA2B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:18:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7984EB64DC454134A4CD31F891F14C5F Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"70065f43-0000-0300-0000-69146cfa0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"name\": \"Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"AppId\": \"cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ccdcf4f1-f4f9-450a-840a-a67055ad7238\",\r\n \"ConnectionString\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"Name\": \"Func-PowerShell-NewTest1-xj3rn0czbp\",\r\n \"CreationDate\": \"2025-11-12T11:18:14.8420581+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-xj3rn0czbp_cd31381e-3776-48e0-96bb-536f3b046173_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-xj3rn0czbp-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\": \"\\\"07075f14-0000-0300-0000-691683930000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"name\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"AppId\": \"fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"312a33ec-580c-489c-9e80-b4756c09f157\",\r\n \"ConnectionString\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"Name\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"CreationDate\": \"2025-11-14T01:19:10.9931567+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-12q6pcrzoi_fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-12q6pcrzoi-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-xj3rn0czbp\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-12q6pcrzoi\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -412,39 +412,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C60DC02B00\"" ], + "ETag": [ "\"1DC5504B28A23E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be8f0b00-bee3-430b-93a7-5c87a271557a" ], + "x-ms-request-id": [ "41e872aa-14b5-41be-8ad2-dba189c5a5f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3bf2cc0-27cb-4e15-b5dc-1059eed94629" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3286a72a-f240-464b-ab5d-74f0e0817a18" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "ffd9c363-681c-4068-9399-20049678016f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111901Z:ffd9c363-681c-4068-9399-20049678016f" ], + "x-ms-correlation-request-id": [ "f508a669-0f45-4d4d-a02a-519823a19be5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T011957Z:f508a669-0f45-4d4d-a02a-519823a19be5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AE2C761288545659B4C3BFD47715D97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:18:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90A3EA498B004215A2F9435E73B21A61 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:15Z" ], + "Date": [ "Fri, 14 Nov 2025 01:19:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8507" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:18:20.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:19:17.1433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "161" ], - "x-ms-client-request-id": [ "78c7c9b8-2e38-4e56-a7c7-d15ad1d6cc90" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "dfdf8e61-3917-49de-bfba-934a4aabfb76" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -458,38 +458,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C625A97C4B\"" ], + "ETag": [ "\"1DC5504C9F24440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35d43329-9def-49f8-a73e-951dbbe9da96" ], + "x-ms-request-id": [ "aee33390-8b79-49ee-b8ac-e2a6d64ee935" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05a7e6c1-5080-41d0-a5c2-fd1f7dda486f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:05a7e6c1-5080-41d0-a5c2-fd1f7dda486f" ], + "x-ms-correlation-request-id": [ "85223b8e-c6d1-4a73-88b8-4be15acf2a22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012027Z:85223b8e-c6d1-4a73-88b8-4be15acf2a22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 259CF2E66B4947D4B236259C8309435F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C78D2A07D3BC4A0E96C39917CF9C2B43 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8476" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:01.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:19:57.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "927e091c-b487-4971-9bff-3c216536fa69" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "9796de80-f055-4732-a100-b349b69c4dae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -504,38 +504,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C625A97C4B\"" ], + "ETag": [ "\"1DC5504C9F24440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70df2016-9ce0-428c-ac23-3f5931c7ae14" ], + "x-ms-request-id": [ "4a88d520-fc26-40c5-9845-31e8eb5340f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f331385b-00f1-4520-9e78-376a60db658a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:f331385b-00f1-4520-9e78-376a60db658a" ], + "x-ms-correlation-request-id": [ "dfcfdec5-ea2a-40b9-b49a-7a4f4cf09e80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:dfcfdec5-ea2a-40b9-b49a-7a4f4cf09e80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5EDA33B9AAE143DCAC612F55C62780CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBB5034C01F44CECB47E2C54E12DD00F Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8476" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:01.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:19:57.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "163" ], - "x-ms-client-request-id": [ "c4a23bce-70fd-4ff9-8d3a-cc2658b377df" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "cea04099-9e99-4efd-82db-f6332e229988" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -551,36 +551,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2124564d-2ecd-45c0-8f8f-ee073562c6c5" ], + "x-ms-request-id": [ "508da879-e8b0-471d-857f-dbc8cd5930c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36f39ec4-60cf-401a-aafb-20eba9cad090" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f9ac5b0-b6cf-4d7d-9b95-fb477ac2a71d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d545e37e-1482-4a81-820a-4895508dcc1c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:d545e37e-1482-4a81-820a-4895508dcc1c" ], + "x-ms-correlation-request-id": [ "ec0fcb96-2008-42e2-8cce-0524a334d390" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:ec0fcb96-2008-42e2-8cce-0524a334d390" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFD1A7D0D99A4163BFE373CC44A65826 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92D6CB48C3E34228892DCCBC8DD78297 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "d1a81589-c696-4d1e-9ede-ba5f7ce29c53" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "312a0415-8423-4a52-8f9d-fc781a0c933a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -596,37 +596,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4c6f6b8-4cf1-45fe-9474-907f4607d734" ], + "x-ms-request-id": [ "e499c316-6766-4828-9c1f-ed4ad6fce4b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bbca3602-e506-4c70-9e9a-4ed2e49e9f26" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c02baac-ce48-46ec-8045-605ff620cb71" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "540a0997-1477-4441-92cf-85bb4f02d838" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111932Z:540a0997-1477-4441-92cf-85bb4f02d838" ], + "x-ms-correlation-request-id": [ "697a6980-790c-4223-bfe2-44025d19bba4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:697a6980-790c-4223-bfe2-44025d19bba4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF5260F33C0B4314801E5488CA3C9B7A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F78985CBE2EC4EDC8278DD02D8D879D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "165" ], - "x-ms-client-request-id": [ "428a0779-bdf9-484a-8ada-80fbf2681045" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "c0bf5392-918a-494a-bf46-0296a67f3a13" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -642,36 +642,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db983e1f-d25d-4d70-ba89-95dd909eb8fd" ], + "x-ms-request-id": [ "6a1f5191-8a73-4d6a-9d93-5624dc3436b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b266f883-3737-49a6-8c52-6b88bc67c1b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9229989-da12-406c-a59b-a6e42f3d6be5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "56a99a63-adf0-436f-a4f2-1e61805d6a71" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111933Z:56a99a63-adf0-436f-a4f2-1e61805d6a71" ], + "x-ms-correlation-request-id": [ "55e41762-724f-4195-8cd7-b23c48b04292" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:55e41762-724f-4195-8cd7-b23c48b04292" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6891103C9BC4A46B840CCC5189A20B2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A94C343A9CC7436E93190FC51651A4EC Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "956a4f4f-222c-42a0-bd68-c096c932d052" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "447d1690-32f0-405f-b251-5a33eb063ff4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -687,36 +687,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6c2ed51-c9f2-4b5c-8bab-b5885ff7102a" ], + "x-ms-request-id": [ "ef324d13-a08d-42ab-981c-3d6a78248084" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/72bbab0b-1cb7-48c1-a57f-19fb6867b1fb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a8a53af-5234-4858-8a44-46ff5c425712" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e0519384-9425-426e-b8c3-7b015e9893cc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111933Z:e0519384-9425-426e-b8c3-7b015e9893cc" ], + "x-ms-correlation-request-id": [ "7034defb-4761-4108-9fbd-0d3f955efac4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012029Z:7034defb-4761-4108-9fbd-0d3f955efac4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB86AB489E994F5F90A80BBBB0D426E9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B7E8E5D9AA14D8CAB60952989AA1006 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "c33a6f01-7083-4d4b-a605-9cf6021bf5c5" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "1460c0b6-02d4-4ba0-be3a-535ce49ec0c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -732,32 +732,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27520685-5855-4b2b-a010-28044a8144c8" ], + "x-ms-request-id": [ "2fc195b2-4ec7-4722-8241-1bc23ce34342" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4dd07ce8-eeea-47d3-a257-3ab137de5b78" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac5328d8-aa15-4a90-946f-4fc9cf87c7a3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "56564727-aa84-47ef-a5cc-0096706aa79a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111933Z:56564727-aa84-47ef-a5cc-0096706aa79a" ], + "x-ms-correlation-request-id": [ "6208137c-3d99-4556-bfa8-0f32469a17b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012029Z:6208137c-3d99-4556-bfa8-0f32469a17b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6310079B83E468188242EA1CEAB6BE2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE41CB79727B49F7BA36280A539EC98D Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting2\": \"PowerShellRocks\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -771,39 +771,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C625A97C4B\"" ], + "ETag": [ "\"1DC5504C9F24440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0f0f8d5-e770-41c1-bb00-71639a6ca89f" ], + "x-ms-request-id": [ "95211d6d-da39-476e-ada8-6dca9c0bf03e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76e6f9ac-0f67-4dd4-a010-324c25851ae3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1de0171-3aa2-4b23-abc0-7754dab280bf" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "62e088a9-d127-4bdc-9d6c-f351966e2095" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111934Z:62e088a9-d127-4bdc-9d6c-f351966e2095" ], + "x-ms-correlation-request-id": [ "9382d6f0-716a-4102-9933-2759f3190756" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012030Z:9382d6f0-716a-4102-9933-2759f3190756" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1041B541D0D4E88940398734A78FAAF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80B61990AF21424EAEEE37A34A96B102 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "f56fb2fc-85cc-413b-a7de-f67f804f4a32" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "f0b32425-a3b5-4552-93db-e8257ed4a7cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -819,36 +819,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f474307-a57a-472a-beb1-80c1df88da74" ], + "x-ms-request-id": [ "7dbe003b-1eec-4777-b81b-525cca2ba23d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d0d024c3-2aa2-40f2-90b0-06f1d2bec938" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "f203b782-a9e4-4dec-a0da-1663cd64b3d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111934Z:f203b782-a9e4-4dec-a0da-1663cd64b3d3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20aee982-62f9-470c-9373-a572a73d804a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "40b868ed-94aa-4164-abf9-c57a86128014" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012030Z:40b868ed-94aa-4164-abf9-c57a86128014" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09951425E3EF4F14A3A18E6C0B4AE7B8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B023CC1F899441BB19A90204B67B0C0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "9b0950e2-adec-47cf-b141-aab65dd06315" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "cb1881da-bd24-462d-a558-cdd7038130e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -863,38 +863,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6393E81A0\"" ], + "ETag": [ "\"1DC5504DDC75FD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f26dc749-1501-4b1b-bf86-10e0887f9140" ], + "x-ms-request-id": [ "7aa0bdd0-18bc-48aa-bea8-394d9f46afaa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2157aa8c-acb7-46d2-b881-ead9a66b0205" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:2157aa8c-acb7-46d2-b881-ead9a66b0205" ], + "x-ms-correlation-request-id": [ "80fcac85-275a-4d46-96c8-733cb8ddb289" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:80fcac85-275a-4d46-96c8-733cb8ddb289" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FA5B0BE048F469EB5397B70C77EBE3B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8DC9881C62064501BD5811B9296C349C Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:34.33\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:30.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "5933ad43-8281-45d9-9458-455785878dae" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "879d6db8-66a6-473c-9bd7-57afdea3ca99" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -910,36 +910,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18282d9f-1cfe-4256-9c80-474cd5b790eb" ], + "x-ms-request-id": [ "43f01d9f-de5c-4501-9140-8569cf7776e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7527613f-72ff-4f4b-9666-8bb8602ebacf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77a704b4-e980-4e7c-b90c-79da86dbb5ee" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2c041dbf-8e84-4c74-a541-82de48f208e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:2c041dbf-8e84-4c74-a541-82de48f208e1" ], + "x-ms-correlation-request-id": [ "7e27ae46-d027-4654-939e-d97779779f36" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:7e27ae46-d027-4654-939e-d97779779f36" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 662EE6943D414E1695883E6BD32CB5F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3BBCF41A27E4335A988ED02A1C93504 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "09ffc8e8-1087-4f64-b001-88733e5345c7" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "aca333cc-4184-4f2f-9f97-7f5e71adcefd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -955,37 +955,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51f0e43f-1701-4d3c-8e4a-3a7ee2cef597" ], + "x-ms-request-id": [ "0f632633-ced0-41fc-8070-2ff3e0fbe86d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c85d3879-61a2-4caf-8dc8-9cb178b37be0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60ac8824-132a-45fa-ae61-bda12e976e8a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "172f7b1f-efb5-4fe5-bdb4-a7c0c70f6072" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:172f7b1f-efb5-4fe5-bdb4-a7c0c70f6072" ], + "x-ms-correlation-request-id": [ "ef8ac1bb-2d2a-441f-979a-7c07299adcc1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:ef8ac1bb-2d2a-441f-979a-7c07299adcc1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE5807F719F346EFB468677A946FCA09 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11A277F0A45842BB927109679FDEE0D2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "173" ], - "x-ms-client-request-id": [ "998c2f30-1124-48b5-a977-ed295fb90c55" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "4c122241-4929-401c-b0c0-e58932e4cbf6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1001,32 +1001,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53939f9e-1761-47b9-b29a-f2a15e5d20f3" ], + "x-ms-request-id": [ "e1b8f69b-f15f-453a-b3e1-87ca9fee6924" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da1aede9-d3ef-4702-a2ea-7d4adc2ca35a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/134f1700-9fc0-4f90-a6cc-c9a3cd63baff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fd3b0ee0-14c5-48d5-997d-de2ecbc6bb2b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111935Z:fd3b0ee0-14c5-48d5-997d-de2ecbc6bb2b" ], + "x-ms-correlation-request-id": [ "46084b78-40c2-4343-91ac-3c25158ed39c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:46084b78-40c2-4343-91ac-3c25158ed39c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2482484478634444B840BDB5C70FE3E8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 404A39BCE05B4AA6A141309809E75029 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"MyAppSetting2\": \"PowerShellRocks\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1040,39 +1040,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6393E81A0\"" ], + "ETag": [ "\"1DC5504DDC75FD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f92a45a3-260c-48c1-aa5a-35e976dfccee" ], + "x-ms-request-id": [ "a8ca5934-f106-4ffa-87bb-319a3819cb5a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acdb3e50-04e6-4352-b90a-65cb6731cafa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c78e3db6-4e71-4a2e-b43b-3f49707e518c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "89ada3c7-7672-4787-82d5-5567cb8d0efa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111937Z:89ada3c7-7672-4787-82d5-5567cb8d0efa" ], + "x-ms-correlation-request-id": [ "f10bf0a0-a531-4813-bfda-32826a3f3dd1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012032Z:f10bf0a0-a531-4813-bfda-32826a3f3dd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90F547DCCAD54F23909E182A2C84B0F9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4CE54E5CB8F4B908389DCCA93781A06 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "175" ], - "x-ms-client-request-id": [ "b2a22ebb-dfa1-44b3-98cb-071f4dba9467" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "ca0a77bc-bc35-455c-96c3-653117fd78da" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1088,36 +1088,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d45b8153-cf98-4de5-9045-b108ff4096d8" ], + "x-ms-request-id": [ "f6c3db8b-a092-4c89-9151-d43c4a80864a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/53a6178f-82d2-40f6-86d4-d38c172b6539" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9cea46fe-5a89-4216-a7a9-a250fc83a1e5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5e927e71-7b28-4a3d-a15b-1b6cc8534575" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111937Z:5e927e71-7b28-4a3d-a15b-1b6cc8534575" ], + "x-ms-correlation-request-id": [ "03d1f338-cbbb-4d72-816d-33b97be3fdf0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012033Z:03d1f338-cbbb-4d72-816d-33b97be3fdf0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A2888A4D4DB4037A82C02D8021A9B2F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F159B1A21B774E688B4244870D9F9598 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "176" ], - "x-ms-client-request-id": [ "0a27305f-9571-4fc5-ba2f-610d919ed144" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "4bbfa157-559a-41fe-be2b-9d4ffccd5591" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1133,32 +1133,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71d4de39-f8a0-4a68-af40-bd2142e0ce18" ], + "x-ms-request-id": [ "aa4b1b02-17db-4cdd-a040-5207ffd19180" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b6a5579a-57de-4920-8476-e43fccb56992" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fde80c22-67c2-44a9-a0d5-dfb3644d74e2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7b9daf54-ac5b-4e10-acc3-b1aa68717cf2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111937Z:7b9daf54-ac5b-4e10-acc3-b1aa68717cf2" ], + "x-ms-correlation-request-id": [ "51e67f33-f11e-44c0-aa18-197b5fd9ef9d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012033Z:51e67f33-f11e-44c0-aa18-197b5fd9ef9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0C938DE4225405E9D561AA6BE6BBE6D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB7C99E4F6FB4FFF97A1F55F25E874A9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting3\": \"123456\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1172,39 +1172,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C63AA4944B\"" ], + "ETag": [ "\"1DC5504DF254F2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9e0e8e2-d528-42b4-8a02-2320d4fb5a10" ], + "x-ms-request-id": [ "a5d4c98a-1fae-4af1-86c4-218d15be8cc6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/869e1030-a66f-4409-a9d9-fbcb8bf74eb3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "137f9e41-6a90-4a0a-aa4b-d261d9d33926" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111938Z:137f9e41-6a90-4a0a-aa4b-d261d9d33926" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ead62214-c4f1-41f8-8d36-92a71f0b6b56" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "127f9128-720d-49c0-839d-28fef3dd3b72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012034Z:127f9128-720d-49c0-839d-28fef3dd3b72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19458FDF3D964BF99F98DD7C87AD8647 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E322FC6BA764114B2B7893E49572099 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "178" ], - "x-ms-client-request-id": [ "e8343854-c8c7-4965-88fd-1f9d453deaf5" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "de7ab1f3-20c2-4db2-9ea8-818d4b241907" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1220,36 +1220,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57b15ae0-f963-4a79-8b0f-be99cc083bf6" ], + "x-ms-request-id": [ "218c13ab-751a-446d-a98a-56dbc28e1aa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acd8bfe7-9d13-4bab-8d5f-ad7d1ad80b19" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd89e45b-73ff-4c47-9cff-d7cac4368adf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "34921929-39c9-45c9-a4e1-164f3b4218fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:34921929-39c9-45c9-a4e1-164f3b4218fe" ], + "x-ms-correlation-request-id": [ "c0561b7b-c40e-4c0b-8374-668f8af1fd4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:c0561b7b-c40e-4c0b-8374-668f8af1fd4f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D6F5C5C52CD4499932DA24D927A63A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7036674CACC44C87B1744B6AE26B89BE Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "179" ], - "x-ms-client-request-id": [ "85717f75-6e26-4654-9871-0b768c0b4089" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "f6f00116-e151-40dd-973b-97fad13ecbb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1264,38 +1264,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C63BB0A015\"" ], + "ETag": [ "\"1DC5504E02F5220\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53b928b1-67b7-49ad-bcd4-41b4ca32f0e2" ], + "x-ms-request-id": [ "cf4541a6-a474-4435-92f7-ab0b28c1fcae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "02d808b8-32df-4568-ba3e-b7e29fdaece6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:02d808b8-32df-4568-ba3e-b7e29fdaece6" ], + "x-ms-correlation-request-id": [ "ee735dff-2d63-4eee-a3a8-f18727233441" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:ee735dff-2d63-4eee-a3a8-f18727233441" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E7FA4E5884F446499B0A998EC29E9DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F46E0A9225143CEA283BE86D0673311 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8476" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:38.4333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:34.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "180" ], - "x-ms-client-request-id": [ "436e5c19-a2b3-4855-a9fc-b8e2019d3e56" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "f17b1cf2-1708-4d36-aa79-dd575963b0e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1311,36 +1311,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ceb74fc-ffc8-4334-a92b-21ea6e2b0cfc" ], + "x-ms-request-id": [ "deeb47a8-33b1-4d90-a763-3ac777f73053" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa1da658-afd2-439d-9475-eb9ebcbb6bab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b36bac4-a375-4c23-a797-30d9d6c349b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "62f64eba-aedb-4c4c-9edf-d065d621d171" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:62f64eba-aedb-4c4c-9edf-d065d621d171" ], + "x-ms-correlation-request-id": [ "b73085d6-1611-4306-a0ac-7781b3fe3ed8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:b73085d6-1611-4306-a0ac-7781b3fe3ed8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BC74444D2D346A9847DC150836773F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5BDB4E86CA504BB8B2F58B71ACF83CBF Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "181" ], - "x-ms-client-request-id": [ "c5bb257c-577d-43ea-85fc-728728e41139" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "30eb196c-2952-4e3d-9abb-d8958723e92b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1356,37 +1356,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ccbc9f8-487d-4c97-8b7f-370dee4ad4e5" ], + "x-ms-request-id": [ "8e691f60-d1ed-4dd2-9539-d9d51289f59b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c3cbed8-72c3-47df-a88c-49e86690de22" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "46fc2ccf-97c1-458d-a301-9c5616cdc55c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111939Z:46fc2ccf-97c1-458d-a301-9c5616cdc55c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74e3bf3a-6c26-482a-8966-29294cd71455" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d66578a-9c6a-43ae-8d6f-ee3e9c8aceb2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:2d66578a-9c6a-43ae-8d6f-ee3e9c8aceb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66ED1309333A4C5DB17CB35D6610CEA5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8014BEA7E01149C0BA6CBD6320FAFD4F Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "182" ], - "x-ms-client-request-id": [ "c75e2f53-65d3-4f01-b448-bd31c80919f1" ], + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "3ddc223b-59d1-40d0-916f-26ceca3ac886" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1402,32 +1402,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60b90438-58d6-46dc-826c-664c4622b276" ], + "x-ms-request-id": [ "1590fcf6-6bbb-4553-ad62-36c7028bd3db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b4d67c7b-21e6-495c-ab0f-4cd037e29abf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/510e43b1-b86e-4481-aa2e-adb6ef1514c7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e5d39160-fa15-4324-a28d-1a1b82711d5d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111940Z:e5d39160-fa15-4324-a28d-1a1b82711d5d" ], + "x-ms-correlation-request-id": [ "e51ce9e6-7951-4dfb-9102-2c8d126c2e46" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012036Z:e51ce9e6-7951-4dfb-9102-2c8d126c2e46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64A71F985C3E4CF7AEE72192F2DEC95C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72C0757BBDBC40AF95ED88C640C5FA21 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-xj3rn0czbp\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1441,39 +1441,130 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C63BB0A015\"" ], + "ETag": [ "\"1DC5504E02F5220\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0037665-6a07-4e69-8187-e8855ae9baf4" ], + "x-ms-request-id": [ "1bcefbe3-01e1-404e-aac2-d574b82c72ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c431ccd-86d2-4531-939a-b116a35cb1fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11464b76-1e72-42e7-91d8-bdfbf0291bb4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e108bd25-b1e5-4bdd-ac5c-2060d6ad73f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111941Z:e108bd25-b1e5-4bdd-ac5c-2060d6ad73f0" ], + "x-ms-correlation-request-id": [ "1f98efe6-f961-422b-881f-775f32365f12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012038Z:1f98efe6-f961-422b-881f-775f32365f12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8605B7F9E0A244A0ADB6EA4DB1CFE4E4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF16F7A607944DE99A2642C30C52E1AE Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "9d22883b-4aad-4c30-9fb0-52dfc03428e5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a3bd296e-edd8-4f55-ba5b-66b1adb403a1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e25aafec-0ee7-4825-80ec-54597081026f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "fbc1f416-a8ef-4549-8f69-40d67dddeeed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012038Z:fbc1f416-a8ef-4549-8f69-40d67dddeeed" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2900ACD9C0A24736864A33BB3E339AA3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "3121615f-27df-4cd5-9251-349e1a60a48e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5504E2486E20\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "af9902cc-5aef-4cd0-a5d0-fb8128ce6fd2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3ecb739f-77e8-47f4-9b2f-8f5a9a76ebe6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012038Z:3ecb739f-77e8-47f4-9b2f-8f5a9a76ebe6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1A2682054B26412D8A3654676AA03CF0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8476" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:37.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-NewTest1-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "184" ], - "x-ms-client-request-id": [ "eba59088-246c-48a7-876d-92ab5bb9b887" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "b491ade9-a98f-4ec8-8aa5-1b09d1bbeaa2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1489,36 +1580,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d70cf896-5e40-45ab-a9cd-ad99ff8e974c" ], + "x-ms-request-id": [ "946eadd0-08f0-4893-b3f9-d5d881bab306" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f718b176-1e1f-4a9e-afed-53009d3fc680" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f70fd509-67f9-4dfd-b25a-165ffc13d725" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "83a81025-9b10-4754-b785-bd4992446ddf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111941Z:83a81025-9b10-4754-b785-bd4992446ddf" ], + "x-ms-correlation-request-id": [ "4517c4ee-2894-4bf5-b408-8dacea3a2434" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:4517c4ee-2894-4bf5-b408-8dacea3a2434" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB8D71FBCF6E44E8BC16F9BDD229A3A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0770499F6BD4FA397CC36060F0CB586 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "185" ], - "x-ms-client-request-id": [ "35fd9fba-3d84-484e-8887-a3defa50b7f9" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "6c11f7ba-5241-42a4-8db3-633d6acca74a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "e0a1aef8-434a-4cc1-8970-338c6890f8c2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65a0b35f-d2e4-4068-a4b5-cf5eeaff525f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d1190357-99dd-4e4d-9fff-6d9775f10844" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:d1190357-99dd-4e4d-9fff-6d9775f10844" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 720C9C6658D643EBAF31628248E3AA27 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4191" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "c6d0aaf5-6c2d-4cb1-886a-2f9621df8045" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1533,38 +1670,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C63D1DD1AB\"" ], + "ETag": [ "\"1DC5504E2486E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "54976d7f-1126-43dd-8bb2-236abf58f9a7" ], + "x-ms-request-id": [ "aabc8e00-ea92-4a08-a382-1c65e7b181a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e2cf9b19-67d5-4e5c-98dc-eb86c06c09bb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111941Z:e2cf9b19-67d5-4e5c-98dc-eb86c06c09bb" ], + "x-ms-correlation-request-id": [ "7fb6389b-8114-42c5-ab96-864e0bcc6bc0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:7fb6389b-8114-42c5-ab96-864e0bcc6bc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D97E8EE89204038A86FE206F90312B2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD4954ACC873482B82FB0F93CDD73E2C Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8476" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest1-xj3rn0czbp\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"func-powershell-newtest1-xj3rn0czbp.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-xj3rn0czbp.azurewebsites.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-xj3rn0czbp.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:19:40.8266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-xj3rn0czbp\\\\$Func-PowerShell-NewTest1-xj3rn0czbp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest1-xj3rn0czbp.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:37.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-NewTest1-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "186" ], - "x-ms-client-request-id": [ "959af216-23b9-4223-a68e-d1dfe913f89b" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "a566273e-3291-45a2-85a4-01222b20e9ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1580,36 +1717,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2683b8d9-f8b0-40db-b957-186f294a1671" ], + "x-ms-request-id": [ "1d5dbc3d-3b74-4804-bbc9-bbc3bc5bc05d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cb64b4d-d615-40d6-b1d7-d75d2fd5c940" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c354107b-174b-45fa-b8c0-e16aee89d239" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d5a95c82-29ab-4e4b-8193-0a60a848e480" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111942Z:d5a95c82-29ab-4e4b-8193-0a60a848e480" ], + "x-ms-correlation-request-id": [ "d331d662-aaa9-4a2d-9d3c-5c855d6bef1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:d331d662-aaa9-4a2d-9d3c-5c855d6bef1d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03F990F68C744924BD036971400FC6C0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0DD324DD74D84E92A39B2A573B77F8B6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-xj3rn0czbp\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "0da2af62-38cc-4249-b1a3-20fdebf371bb" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "11b50a96-a412-4cfd-a1b9-6c6be445a700" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1625,37 +1762,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe59ad63-c949-45e1-80e2-8891f7a5b50c" ], + "x-ms-request-id": [ "a38f40e4-d6e4-483c-92d4-9bb3c69c7921" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/afa0d948-9301-4bc1-ae57-097d6faf48af" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/88fc9327-cd3f-44d4-adc5-5ecc3c594550" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2e83e627-7e8d-49f9-8f22-5fd049211512" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111942Z:2e83e627-7e8d-49f9-8f22-5fd049211512" ], + "x-ms-correlation-request-id": [ "8a35b117-363f-46a5-88f3-7ea5c042406f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012040Z:8a35b117-363f-46a5-88f3-7ea5c042406f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF1DD540C20E45D7B43C4FD7857BC124 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3C11FE5CCA3479EAB6109AB5F19EF36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp/config/web\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "192" ], + "x-ms-client-request-id": [ "1e6e05a6-4422-44b2-8506-bb32f71a01c9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "513a49e9-0799-484a-bf16-979588c200d3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "19741db2-7e83-443f-92f7-8667349e40bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012040Z:19741db2-7e83-443f-92f7-8667349e40bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 69A7D791514A4EA09C5CAE0E8A5A9DD5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+42": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-xj3rn0czbp?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "188" ], - "x-ms-client-request-id": [ "97c97837-f3b3-4b7c-9be5-1813035787a0" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "111bb9c8-9d50-44c0-8f99-3add238c9a2f" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1670,20 +1852,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C63D1DD1AB\"" ], + "ETag": [ "\"1DC5504E2486E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93aedc58-9f24-40f3-87b1-e425276f3785" ], + "x-ms-request-id": [ "4fb1b505-bc2d-4e8f-9c6f-f5fdfacdfb8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e05821a0-3b03-4cbc-a08c-bb367e74021d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76042b84-28f9-41e3-bedc-a1eb51a8d035" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "64a5378e-1514-4e28-beba-8ee98db1956f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111951Z:64a5378e-1514-4e28-beba-8ee98db1956f" ], + "x-ms-correlation-request-id": [ "0f76ccd6-1ce7-4fb9-b168-279b4da936f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012049Z:0f76ccd6-1ce7-4fb9-b168-279b4da936f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EE617706A8B40278239B9D6E8719438 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58EDDA97EBDD4D5C97FB343A399BFC36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json index c4f070172a5a..45bdb751b121 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.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-Flex-DotNetIsolated-112925\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "73" ] + "Content-Length": [ "71" ] } }, "Response": { @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "139aab69-5afd-4dff-91fd-e7e0ceb13547" ], + "x-ms-request-id": [ "a583cfd9-39dc-4a34-a2ae-10fe8a566112" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/414e383e-d244-46b5-b023-d12242b4395b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/303ad37a-1210-4375-b729-0d199d0b6407" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f89ebd64-1bd4-4f38-9019-fcec0997d686" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T111952Z:f89ebd64-1bd4-4f38-9019-fcec0997d686" ], + "x-ms-correlation-request-id": [ "dceaae19-3e11-45c0-a305-775ca8eb86da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T012050Z:dceaae19-3e11-45c0-a305-775ca8eb86da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 413CDB0F0E8E42C29534CC7AA5632C6C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:51Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06739A7741D2414EA52AC8D466C44DBB Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -40,10 +40,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -59,38 +59,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6321513b-67c2-4d78-ae05-142cb5443f24" ], + "x-ms-request-id": [ "2230d41f-bbac-40d5-915e-a23ed7e02c32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/100b820f-a6e5-44c2-9025-e94ef14545b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/932e2e90-0ba7-40fd-95c5-7fd4dfab8d31" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a6e4d84b-96c1-4b0c-aea2-5dd2518f2e2f" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T111957Z:a6e4d84b-96c1-4b0c-aea2-5dd2518f2e2f" ], + "x-ms-correlation-request-id": [ "901cfa23-e101-47d5-a2ba-4b5d49871b68" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012055Z:901cfa23-e101-47d5-a2ba-4b5d49871b68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 564DFE587AD54B65BF569A66A7BC7AF6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:19:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:19:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45FDE97E8D9F4F899738FE5070D18661 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:20:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1917" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"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-14T01:20:55.11\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "aea0bf11-bb45-4563-9deb-8cbf79f722fd" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "d54739e7-20f2-47ab-b4da-ffe9b0646a61" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,37 +105,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ebb94882-f1ec-4a82-9f47-6399383c0a30" ], + "x-ms-request-id": [ "ce891637-c460-4357-8c4a-ffd3a8eb0405" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "51eb3a8c-af2a-44b5-8b7d-822c548441d1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112028Z:51eb3a8c-af2a-44b5-8b7d-822c548441d1" ], + "x-ms-correlation-request-id": [ "8ebfed55-c5a9-49d5-b023-0aa03ed2800e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012125Z:8ebfed55-c5a9-49d5-b023-0aa03ed2800e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 985C6149F1C54DC3BF408B9FB3D304DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D111398BF3A4F81B3DA98662A109FF0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "aea0bf11-bb45-4563-9deb-8cbf79f722fd" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "d54739e7-20f2-47ab-b4da-ffe9b0646a61" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -150,24 +150,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9fc204e3-3d3d-445a-b757-b5962ecfe4b7" ], + "x-ms-request-id": [ "e2c0b564-1ae8-4ed1-88c6-c3ea043a190d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d3596e3f-22ba-4a0d-8552-739acad39d2e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112028Z:d3596e3f-22ba-4a0d-8552-739acad39d2e" ], + "x-ms-correlation-request-id": [ "7d24f2fe-f28e-49a7-adbf-8a179b65dc02" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012126Z:7d24f2fe-f28e-49a7-adbf-8a179b65dc02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2775859FB96043D986161AD6926C9F01 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55D4128098264877883D2F93BA573CEC Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -178,8 +178,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "194" ], - "x-ms-client-request-id": [ "4ad05e57-dcd1-49f6-be5f-518b3c92ee4f" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "667e5304-1b4b-4b56-9fcc-74670651887e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -194,36 +194,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1cb4d8d4-c0f5-4244-82c2-03608a4ccebd", "f083f111-936c-4f5a-8ffe-71cf1b18c5be" ], + "x-ms-original-request-ids": [ "141d6801-d0aa-4132-bb01-15e81387d181", "1ac7dd7d-4728-41b5-842f-063405344f99", "1df2e81f-f05f-40ce-a7cc-abfcf9d2afa7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "691d65bb-1075-4889-99a9-81a9c68dfe6b" ], - "x-ms-correlation-request-id": [ "691d65bb-1075-4889-99a9-81a9c68dfe6b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112029Z:691d65bb-1075-4889-99a9-81a9c68dfe6b" ], + "x-ms-request-id": [ "9386df91-df58-4c66-9cb2-c5cd1a9b60fc" ], + "x-ms-correlation-request-id": [ "9386df91-df58-4c66-9cb2-c5cd1a9b60fc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012127Z:9386df91-df58-4c66-9cb2-c5cd1a9b60fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9C84CC8A796418E9C54CDB306F7731A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 196A4C131E1F45D18C8BA04A508EFAC2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "195" ], - "x-ms-client-request-id": [ "8e715c38-bce6-48eb-a356-017f232b6c1f" ], + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "08db0434-cfc8-4010-a295-126a6d7a1964" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -238,31 +238,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1af5cddb-3365-4406-9f8e-72f9fa7e7323" ], + "x-ms-request-id": [ "d7cca474-0a31-46a5-b284-e40c5fec99af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ef4fe698-e4bb-42a3-8adb-df8837024173" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/7783abc4-dfd0-47fa-9cd1-9fe53da2a4e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a65d778b-4ba5-4dea-80b5-c86e604d6e1e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112029Z:a65d778b-4ba5-4dea-80b5-c86e604d6e1e" ], + "x-ms-correlation-request-id": [ "a1e6fade-076d-4e9e-a12b-9930cbbb7e3a" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T012127Z:a1e6fade-076d-4e9e-a12b-9930cbbb7e3a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC5D7FBFE1754E799F6237FB516E0DB2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:29Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7179CEB0C0154996BD21EC6D7C67A180 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:b0fc7886-301e-0051-22c6-53fd25000000\\nTime:2025-11-12T11:20:29.8580806Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9163f24d-e01e-0038-2d04-55caeb000000\\nTime:2025-11-14T01:21:27.5059514Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -277,25 +277,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DD7D48DA19\"" ], - "x-ms-request-id": [ "c6008ff2-9726-405a-8fe2-fbdf6611ac83" ], + "ETag": [ "\"0x8DE231C22ECC4C0\"" ], + "x-ms-request-id": [ "ab69a47f-6246-490a-9956-f44260036c04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/77bb1b09-afce-4d07-9023-e7741ac359c5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c195bd68-988c-4139-8e2d-1c04bad0c4ad" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "cdb49da4-d4f5-4c83-9b73-67f0002900ca" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112030Z:cdb49da4-d4f5-4c83-9b73-67f0002900ca" ], + "x-ms-correlation-request-id": [ "4c0cdf61-502e-4f63-88a8-13887ce9a346" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012128Z:4c0cdf61-502e-4f63-88a8-13887ce9a346" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E81278F8C244EBA999C91150F6C7442 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:30Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E25072553DEE44A6A3F41D206EF61ADA Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "471" ], + "Content-Length": [ "467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsflexdotnetisolated11292-0000000\",\"name\":\"app-package-functionsflexdotnetisolated11292-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000\",\"name\":\"app-package-functionsflexdotnetisolatedfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -306,8 +306,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "197" ], - "x-ms-client-request-id": [ "6cde9245-5861-4b2a-9645-76354d0c1d20" ], + "x-ms-unique-id": [ "202" ], + "x-ms-client-request-id": [ "e83d7217-9030-47ac-8417-78f3a09e9a95" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -322,36 +322,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f6a8ce13-42d9-4001-8154-1787c3699d3b", "1dcea94e-2f99-4d9f-8c41-5214ed13905f" ], + "x-ms-original-request-ids": [ "d617369d-f965-4f5f-9880-951a820cde0a", "3cb8e119-cf48-4dcd-a640-a12e6a47207d", "d329ca44-78b8-439c-9c4d-b87ac2af2a0b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "8774eaf5-17ab-4d26-a13d-9bd7efbaa48a" ], - "x-ms-correlation-request-id": [ "8774eaf5-17ab-4d26-a13d-9bd7efbaa48a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112031Z:8774eaf5-17ab-4d26-a13d-9bd7efbaa48a" ], + "x-ms-request-id": [ "c512f809-a981-485b-8fa7-dcee805c5920" ], + "x-ms-correlation-request-id": [ "c512f809-a981-485b-8fa7-dcee805c5920" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012129Z:c512f809-a981-485b-8fa7-dcee805c5920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3EFB72E6473F4E689FE0E864AE6CA0A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:30Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1753A0D087904D1FAAB164A7165E305D Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "e600665b-ca29-446c-b8d0-7e1918694082" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "87210ff9-74bc-4670-8f95-d0dc68c8eef2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -366,23 +366,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6692b8bd-af7c-4f88-9b90-bb58e2defdae" ], + "x-ms-request-id": [ "d3fe6026-1a21-4e56-92de-4cf33858c6c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/357403a9-0818-4de5-90f4-39bbbc70ba08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1eb73284-fd94-4a01-a498-5ac2c8be2e7b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e8818d0b-bcf9-44dc-b14b-b945a3690f6d" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T112031Z:e8818d0b-bcf9-44dc-b14b-b945a3690f6d" ], + "x-ms-correlation-request-id": [ "d9864311-4a45-4fe5-b9a4-094765f22823" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012129Z:d9864311-4a45-4fe5-b9a4-094765f22823" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 971A9EA8B0F441BC907759EB99D40367 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D213E263408410DBAD99F6A067AEBA8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -393,8 +393,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "edd3746d-73f6-411b-85b1-1d515bd7d07d" ], + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "9eedc920-71a9-4771-8550-45b4f6260df3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -409,36 +409,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "dec3ac96-618b-4a60-a125-0e27a88c658d", "cb1ee5fb-a6e0-45a4-898b-06584b4694a3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "5f91ac7e-9de3-423a-b4c2-9a20c1cabbdd" ], - "x-ms-correlation-request-id": [ "5f91ac7e-9de3-423a-b4c2-9a20c1cabbdd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112032Z:5f91ac7e-9de3-423a-b4c2-9a20c1cabbdd" ], + "x-ms-original-request-ids": [ "3f7eca43-9edf-42ee-8de2-759a0f73dd87", "119647af-7b94-48f1-89f9-e138429d770e", "80d9926d-5c2f-432c-82ea-fa848b822667" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "a47f8ebe-d5bd-4d54-89c1-458f43296dd7" ], + "x-ms-correlation-request-id": [ "a47f8ebe-d5bd-4d54-89c1-458f43296dd7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012130Z:a47f8ebe-d5bd-4d54-89c1-458f43296dd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A21D878BA304A95B9C4896AA23EBFC6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A48DC3255A304C8EB21EF92042575164 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "200" ], - "x-ms-client-request-id": [ "97b17a44-7967-4a43-bdc3-539d4629a0ea" ], + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "4cc3c21a-b503-446b-a495-86dd38fc5442" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -453,30 +453,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a1a1ad02-f6fa-4390-a935-6f661f92726f" ], + "x-ms-request-id": [ "c342b5b8-6ee7-4c03-a368-f06f6bdb641e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7cc3969c-a7fb-4efd-8de6-39ae6378267f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2c75ac48-2000-48ff-8d19-91c15d9d5c34" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a52600b5-7039-49d3-8571-9f09162443fc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112032Z:a52600b5-7039-49d3-8571-9f09162443fc" ], + "x-ms-correlation-request-id": [ "bd235622-e4a6-48d5-ac78-56ef4472835e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012130Z:bd235622-e4a6-48d5-ac78-56ef4472835e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BEC53EC962EE4CD5A6F6A080E53AB3BF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37E5B8FBA05C4627862EF01E6C463EA2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-fqti?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -496,36 +496,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/eastasia/df17e7eb-c1a8-4213-ab4d-bef819f478ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c8294652-9739-4c9a-8b0c-59e4289c289f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "8c7a37b7-1f23-4e64-889f-db745444c7e1" ], - "x-ms-correlation-request-id": [ "8c7a37b7-1f23-4e64-889f-db745444c7e1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112058Z:8c7a37b7-1f23-4e64-889f-db745444c7e1" ], + "x-ms-request-id": [ "764b34e3-24eb-44a5-96c8-53ede674efbc" ], + "x-ms-correlation-request-id": [ "764b34e3-24eb-44a5-96c8-53ede674efbc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012145Z:764b34e3-24eb-44a5-96c8-53ede674efbc" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E9E83F22A204652A7E2979692A4BB4A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:20:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 859A65984BC44040B2F96332BEAB60E1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:21:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1674" ], + "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03cb7e-0000-0200-0000-69146d970000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-112925\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-112925\",\r\n \"AppId\": \"8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"27ea1b07-fd8d-4548-b836-6f3963752f28\",\r\n \"ConnectionString\": \"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-112925\",\r\n \"CreationDate\": \"2025-11-12T11:20:35.2452925+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-112925_8b3f974d-4b75-41fc-8ec1-52ae2bb0decd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-112925-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\": \"\\\"7803fa6c-0000-0200-0000-691684290000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-fqti\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"AppId\": \"823ef2bc-8959-4971-9e37-d58eb123f38b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0efc83b9-d2e9-496d-b76a-e87df304b77e\",\r\n \"ConnectionString\": \"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:21:33.3685541+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-fqti_823ef2bc-8959-4971-9e37-d58eb123f38b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2013" ] + "Content-Length": [ "2008" ] } }, "Response": { @@ -533,39 +533,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C66D0757A0\"" ], + "ETag": [ "\"1DC55050CD42760\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ce95562-f6db-4ce8-b2b7-ed3a4995debf" ], + "x-ms-request-id": [ "cae591b8-edbe-4a3c-85bc-69ae383f094d" ], "X-AspNet-Version": [ "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/fca51a3f-a0de-4b28-a392-cd4adbf37ce5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/47c4913c-985b-4c22-a06c-15e86ed205b7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e39abd18-7cae-4b6b-a5bd-a98670d88f85" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112122Z:e39abd18-7cae-4b6b-a5bd-a98670d88f85" ], + "x-ms-correlation-request-id": [ "1996e9f7-b4f3-4a08-8d84-cadd63185b14" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012210Z:1996e9f7-b4f3-4a08-8d84-cadd63185b14" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 339FA6117B864B29B53F0A5ECD6858B1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:20:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F993A6BE82FC4540AAC0D70D7E3264D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9665" ], + "Content-Length": [ "9628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:00.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:21:48.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "94a15b75-0b69-4dac-bc85-f372f58072ab" ], + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "278c27ba-0bd3-4c15-87af-972c5f3e2930" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -579,38 +579,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6796897C0\"" ], + "ETag": [ "\"1DC550519249EA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7930fec7-ec39-43aa-9456-204e07bb2df3" ], + "x-ms-request-id": [ "84319e39-e418-4834-a083-adceaa94ac20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "319ceaed-9eaa-428f-8177-96dc1d0574f0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112152Z:319ceaed-9eaa-428f-8177-96dc1d0574f0" ], + "x-ms-correlation-request-id": [ "f9068d73-dd0a-4b2a-9466-8143c5835a86" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012240Z:f9068d73-dd0a-4b2a-9466-8143c5835a86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F5ED2419CC54E5E99899AF08BF91873 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19AB4EB737504EC89399E841E5A376A2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9637" ], + "Content-Length": [ "9600" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:21.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "204" ], - "x-ms-client-request-id": [ "93593c1d-093b-4232-905d-8bd83b70991f" ], + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "7a91cebb-ae28-4086-bc24-1444fa49e024" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -625,38 +625,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6796897C0\"" ], + "ETag": [ "\"1DC550519249EA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0c0291b-afe3-4503-bb07-367d98ba7f94" ], + "x-ms-request-id": [ "cd1a9c85-a689-406e-8322-cc1e702d5a7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2fa1a01d-7ba8-4706-860e-b04a4c4575d7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112153Z:2fa1a01d-7ba8-4706-860e-b04a4c4575d7" ], + "x-ms-correlation-request-id": [ "2bdcbc56-00b1-4c43-a91d-5210131b251f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012241Z:2bdcbc56-00b1-4c43-a91d-5210131b251f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBC0D0F14E904637AA2CF42A4E534EAE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA45CD63E55541D6A4CD9B9E1F460578 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9637" ], + "Content-Length": [ "9600" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:21.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "205" ], - "x-ms-client-request-id": [ "00745ac2-82ae-4288-8614-c7213f396e27" ], + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "5c5a8a88-9ea3-493d-ab6c-bd04d9993d6e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -672,36 +672,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7028ffa0-f49f-4c4b-ab50-a2e1545dccfd" ], + "x-ms-request-id": [ "88a8a89c-850a-4710-bb64-c16a81258c08" ], "X-AspNet-Version": [ "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/841aef02-1ae7-4926-b704-cc35093b02f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7916cc97-9dec-4eff-a50c-e5279cd49287" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "34096efa-0c34-47a7-a612-f7f7e5b27433" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112153Z:34096efa-0c34-47a7-a612-f7f7e5b27433" ], + "x-ms-correlation-request-id": [ "d418ef3f-f1a2-4ffb-b29e-04b8a8f31ead" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012241Z:d418ef3f-f1a2-4ffb-b29e-04b8a8f31ead" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0356159DED14FDBAB69778B7377BCDA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 618C1FA31BB244F6992ADE3188D44BFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1031" ], + "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "206" ], - "x-ms-client-request-id": [ "e1e7fc75-9d8f-4c20-8dcc-8bdfc9d31778" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "b7d01f25-b599-48a3-bd8f-322f8b8537be" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -717,37 +717,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cade48c4-e4cd-488c-a452-bc2b3eee8566" ], + "x-ms-request-id": [ "1ae964b0-934e-44e2-bdfc-215b00e72725" ], "X-AspNet-Version": [ "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/b1455ced-dad1-44a8-8103-e88cbe853355" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7f2e4f07-45c8-406e-9fcd-c51d7f8490ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66ca5bc1-5a6d-4e36-9f32-3361b9126d8b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112154Z:66ca5bc1-5a6d-4e36-9f32-3361b9126d8b" ], + "x-ms-correlation-request-id": [ "a0ed7c52-058b-48a3-a083-6c35bd00c365" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012241Z:a0ed7c52-058b-48a3-a083-6c35bd00c365" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F8249B2D67E43CA80A1196C1A8F344B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E173BE9D48334095847113C899510029 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4175" ], + "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "207" ], - "x-ms-client-request-id": [ "840ac202-30ef-4515-825d-4efe35c83c23" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "2f7435ee-e409-4754-ade6-d0655eec8f29" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -763,36 +763,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e32d4ad-fa1e-4047-92d8-34b6553dfbae" ], + "x-ms-request-id": [ "ef1fe638-c58c-435b-aaf7-cc095b54d7df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9d157a34-3046-4d5b-89a9-0aa5236c9509" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112155Z:9d157a34-3046-4d5b-89a9-0aa5236c9509" ], + "x-ms-correlation-request-id": [ "ccaf8137-d440-4bab-8da6-27e32696bd97" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012242Z:ccaf8137-d440-4bab-8da6-27e32696bd97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 100E80FD18A2454F947D6B77B7122475 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB0C025982634474B3D16C92500FE5A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "208" ], - "x-ms-client-request-id": [ "d719846b-a933-44ef-b99d-e8ae571ac71d" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "94bc5a51-be88-4fb2-a2da-b4c1c6ee1cd6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -808,36 +808,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce01c6ed-8d8d-49d5-a774-d1d25bc83a7c" ], + "x-ms-request-id": [ "c3beb098-f556-4d45-bdef-536ca59e5a07" ], "X-AspNet-Version": [ "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/dae55995-d4aa-4a8b-836a-384fea025bfb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0f533f88-c10a-481b-8444-3c0ad06bd9ab" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "04923f9d-933e-42d7-8b84-244e0e1c5876" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112155Z:04923f9d-933e-42d7-8b84-244e0e1c5876" ], + "x-ms-correlation-request-id": [ "2fdb1e86-ca8b-40fa-b747-3934fd4a5508" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012242Z:2fdb1e86-ca8b-40fa-b747-3934fd4a5508" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B14B9C882E9C4F80A9388D984FC74BFF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1041EE7902A44BA591DAE4B4FA3668D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1031" ], + "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "209" ], - "x-ms-client-request-id": [ "3f58a2f7-6b02-4c6f-87d6-029baeb523d0" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "94b56bcb-a894-4278-a2a1-a449bc03aab5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -852,38 +852,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6796897C0\"" ], + "ETag": [ "\"1DC550519249EA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbbe7b03-c62f-4cd4-b690-9c10c663e9fd" ], + "x-ms-request-id": [ "a1e4c354-e9b5-4d14-a479-542ae9a0d6f6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bae39426-f466-433e-bd3d-eb8ae9e0db94" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112156Z:bae39426-f466-433e-bd3d-eb8ae9e0db94" ], + "x-ms-correlation-request-id": [ "229ec484-d3d1-4c4b-a3ee-288c5355361f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012243Z:229ec484-d3d1-4c4b-a3ee-288c5355361f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66BDBF1C467641DA8997322DC2D5DDD3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 654123FCCE6D4CAA8ACA8E628E637FE6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9637" ], + "Content-Length": [ "9600" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-DotNetIsolated-112925\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"functions-flex-dotnetisolated-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:21:21.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa1.blob.core.windows.net/app-package-functionsflexdotnetisolated11292-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-112925\",\"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-112925\\\\$Functions-Flex-DotNetIsolated-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-dotnetisolated-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "210" ], - "x-ms-client-request-id": [ "f75291ff-32d9-4a32-bd2f-f27f329bec0d" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "c559052a-e0d6-4b34-b288-d62aa3250857" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -899,36 +899,173 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37ace822-ec2f-4618-9490-3693df82d06d" ], + "x-ms-request-id": [ "4699fe98-2d07-4ef6-917e-2dca5a511bef" ], "X-AspNet-Version": [ "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/108447de-64de-4887-893a-e6b6d06b56c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ca9e51b2-5676-4d59-a6ab-85763e2128a6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5afcde38-3a69-464d-a71d-e069762ace2c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112156Z:5afcde38-3a69-464d-a71d-e069762ace2c" ], + "x-ms-correlation-request-id": [ "61e78651-38dd-438d-a226-c7b11060528b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012243Z:61e78651-38dd-438d-a226-c7b11060528b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 170D5A8A474A44D493B9949B8961B97B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F6072539E64421791F0752ACF1B034F Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1031" ], + "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa1;AccountKey=lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "52f14e2a-dd89-49ce-a135-ba12710a81f8" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "d4a48a48-9ada-48e1-9a4f-be3858f849de" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "ae651bb0-a314-46c3-8504-38cb06595b4d" ], + "X-AspNet-Version": [ "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/3ada3129-fb99-451e-9be8-0a6405de080b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1143ba13-923c-4d1a-8cfa-df2656aac92e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012243Z:1143ba13-923c-4d1a-8cfa-df2656aac92e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F72F7DFCC5144704959F3B5F3CB18B95 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4169" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "40dca951-2a5f-4bbc-ba11-0ea09c3ea062" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550519249EA0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d0b05c25-8328-4c49-b455-5cb57239160c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c2b71b22-f19d-4cea-bb3c-cee354a69329" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012244Z:c2b71b22-f19d-4cea-bb3c-cee354a69329" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3EA8890E486A4011B11699B3F362F45A Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9600" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "f30eab64-8f09-4732-bf44-4ca424e5aba0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4415d57b-c5e4-461f-ad57-f971419de413" ], + "X-AspNet-Version": [ "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/5c8a5ce6-2c99-4e66-aaf5-ac65ba6295db" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8689296e-39e3-4fb0-a140-998fd547811f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012244Z:8689296e-39e3-4fb0-a140-998fd547811f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0B7C8618DADD40E786DFA3B1C6761C0E Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", + "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "3acaeaef-e206-4c67-9072-14dac97332c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -944,37 +1081,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b159f26d-8c19-4836-b280-7cd9b1c83f7d" ], + "x-ms-request-id": [ "0e7ec6b1-5555-48eb-a094-2569f89df407" ], + "X-AspNet-Version": [ "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/32536434-2f93-4bd9-bdb9-f5b8ef87a747" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ecb28b51-3422-4995-8318-ea01002c6d38" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012244Z:ecb28b51-3422-4995-8318-ea01002c6d38" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 90D6525542C3480A9088FB0560A33797 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4169" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "cd28b3c6-75e7-4990-9b05-1a3bc4e24e69" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4f24f353-f7c4-4309-b495-c14c8e2a5906" ], "X-AspNet-Version": [ "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/c0fb2954-bef2-4a7f-8b28-015eb10e0bd5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "70f45477-9bdd-4407-8f7c-be40e6d1040c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112156Z:70f45477-9bdd-4407-8f7c-be40e6d1040c" ], + "x-ms-correlation-request-id": [ "5b3a5e23-8d3d-47bd-81e8-1287d16f0af0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012245Z:5b3a5e23-8d3d-47bd-81e8-1287d16f0af0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9552CBC5FB7423093628CA60273A7C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD04F1C628E247EFB593BAC85E775B63 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:22:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4175" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "4a830bea-a7f8-412a-b789-2a6989a98585" ], + "x-ms-unique-id": [ "221" ], + "x-ms-client-request-id": [ "6f290732-91a0-4dbd-83b2-057dec2eb724" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -989,20 +1171,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6796897C0\"" ], + "ETag": [ "\"1DC550519249EA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "192fe4a9-1dcb-4721-befc-b48692bcc3a4" ], + "x-ms-request-id": [ "f3e24fa2-57ed-46e8-9a20-89cae7ca4dd3" ], "X-AspNet-Version": [ "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/242af9d3-7718-4a32-82ab-a159bc07264d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/847050e4-a90a-4d6d-a44d-5ef2b55c4ba2" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "420c25a9-8275-402c-b03b-bcd9f4263497" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112212Z:420c25a9-8275-402c-b03b-bcd9f4263497" ], + "x-ms-correlation-request-id": [ "d9361ba1-baeb-4fb3-bbc8-d4a72d94d787" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012304Z:d9361ba1-baeb-4fb3-bbc8-d4a72d94d787" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 552D9585B83548D185162F88C12B98EE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:21:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 600D4BCDBDF742ACBEA2A21A9339C1CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1016,13 +1198,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-Flex-Node-112925\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Node-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "63" ] + "Content-Length": [ "61" ] } }, "Response": { @@ -1031,18 +1213,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae4befd8-ca2f-4f30-abfe-c152ff92e621" ], + "x-ms-request-id": [ "d00661bf-19f2-4788-a7b6-a1d83d41d07a" ], "X-AspNet-Version": [ "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/c44d3727-7928-478a-b2c9-c9f80a4a0f0b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/73c088d5-9a86-4e12-9084-d9bcbb1cedae" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80625858-eb0e-497b-90a8-9d0435d13518" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112213Z:80625858-eb0e-497b-90a8-9d0435d13518" ], + "x-ms-correlation-request-id": [ "a021da79-4766-4e73-bca0-5d2a0bc7218c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012305Z:a021da79-4766-4e73-bca0-5d2a0bc7218c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D2EAA6B78E5496E9FF617D9661E0461 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB6CDF5829CA4F09A26134C17EFBEAB0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1053,10 +1235,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": { @@ -1072,38 +1254,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "002e4765-cded-4bcc-9959-91c70013c3ce" ], + "x-ms-request-id": [ "9ad96a80-7641-4233-8c35-b8bd1a569165" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/6a4d645e-f752-494e-9e0d-fcdc523e7f74" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5af28053-d1e3-42f3-8b6d-955d54077dac" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a498efb4-eaec-45c2-8ce4-2725c41ff881" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T112217Z:a498efb4-eaec-45c2-8ce4-2725c41ff881" ], + "x-ms-correlation-request-id": [ "dc001e29-9687-496f-81d9-1afd621f7465" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T012310Z:dc001e29-9687-496f-81d9-1afd621f7465" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01C0DEDFEC8B4E98929962701D0DA5CD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACAC4E8C1142456296AA5455A2244CD7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"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-14T01:23:10.22\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "d4542b34-ee48-49a9-8e8a-85b41797fc7b" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "345eb51c-cb03-4d14-a097-d5ec2bb910f5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1118,37 +1300,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f65a8d99-5e88-4280-a754-e76262e69311" ], + "x-ms-request-id": [ "301a654b-4691-4ccd-bb9c-650a03bad58d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "207af089-bda2-451e-8810-d92b73d624e6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112248Z:207af089-bda2-451e-8810-d92b73d624e6" ], + "x-ms-correlation-request-id": [ "e1b1c119-2c7f-4099-9873-54f7adb49c21" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012340Z:e1b1c119-2c7f-4099-9873-54f7adb49c21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A39061628168469297C86775E2706911 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 352774E1C5F64C509E4A9DDB51EF46AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "d4542b34-ee48-49a9-8e8a-85b41797fc7b" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "345eb51c-cb03-4d14-a097-d5ec2bb910f5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1163,24 +1345,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64bf6bf9-a9a5-4e8c-bb71-450fdc32a015" ], + "x-ms-request-id": [ "9e718d49-ec15-43f6-8e9e-40e49adf36fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "705a8eb9-45d4-462a-b3d1-35b6105dd709" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112248Z:705a8eb9-45d4-462a-b3d1-35b6105dd709" ], + "x-ms-correlation-request-id": [ "5b243d7e-b111-49cf-a07f-00d93305af91" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012341Z:5b243d7e-b111-49cf-a07f-00d93305af91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DA5C248EA8D46BE809B25FF3BEBA331 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3EF467E1C534A9CAFA518838790CBCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -1191,8 +1373,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "e9b156af-0f30-4f22-81cc-2e3e7e6af745" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "9c2f976b-3f04-4f9e-afa1-cd55ba312d84" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1207,36 +1389,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8a4d1525-9928-4ec6-b8ae-517239387da2", "5c4b3290-95c1-4892-b5cf-b326b4088509" ], + "x-ms-original-request-ids": [ "2f3c5bc1-459b-44a2-b1c3-0482896e2cdf", "91ce3d8e-4644-45b3-b129-5ff13ba28ea7", "bbc52c04-ac7a-4b1c-a4f6-4f1e2ed3ac52" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "04e58d72-8db8-47ab-b56e-f3bca3d86445" ], - "x-ms-correlation-request-id": [ "04e58d72-8db8-47ab-b56e-f3bca3d86445" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112249Z:04e58d72-8db8-47ab-b56e-f3bca3d86445" ], + "x-ms-request-id": [ "2b1099a7-bfab-47c3-a359-af9bcd1f073a" ], + "x-ms-correlation-request-id": [ "2b1099a7-bfab-47c3-a359-af9bcd1f073a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012342Z:2b1099a7-bfab-47c3-a359-af9bcd1f073a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B22E3C8EB0914C27998350EC296DBB92 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8DEC1265314C468A915C607400A10220 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "26198b5a-9637-4e09-9bca-f923b8b0562f" ], + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "db47f28a-cf5e-4339-8fa0-86f685560aa8" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1251,31 +1433,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "26845d11-a619-4d9d-bc4c-5f77b8c19c1e" ], + "x-ms-request-id": [ "85692b03-67c4-4dc7-ba1e-65cf5faed26b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cd25a07e-8b85-469b-b8df-e46883b919b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/ddef34da-fd6f-448b-992d-9dc2c6e18439" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "24db09e6-9694-48cf-894c-07203e799dbc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112249Z:24db09e6-9694-48cf-894c-07203e799dbc" ], + "x-ms-correlation-request-id": [ "9e2ffbc7-5e5d-46c1-8312-989c381498de" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T012342Z:9e2ffbc7-5e5d-46c1-8312-989c381498de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F197E3C835BA4C06894157D6DC6F9F76 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CC0B7EFAE414699AA345BDA10154165 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2e37629a-901e-0050-70c6-53ac7b000000\\nTime:2025-11-12T11:22:49.6402051Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:cb581700-f01e-0054-6805-55b656000000\\nTime:2025-11-14T01:23:42.5720335Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1290,25 +1472,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DDD087929C\"" ], - "x-ms-request-id": [ "5ff0af90-7bf8-45cd-9ab9-392b87598d82" ], + "ETag": [ "\"0x8DE231C732BBFDB\"" ], + "x-ms-request-id": [ "672d8b88-0ef7-44fe-9dee-04ba02288195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0d5a6725-ae63-4a3f-87c4-1f7e8135d918" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ee23ee82-ead8-4b6f-8266-3ed13446f14d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "30ee04dc-0cfd-4311-b5f4-1fd11ac44dbe" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112250Z:30ee04dc-0cfd-4311-b5f4-1fd11ac44dbe" ], + "x-ms-correlation-request-id": [ "3552037f-1274-4616-b347-c19490f4cf1e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012343Z:3552037f-1274-4616-b347-c19490f4cf1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67C6ED3F7EF04D02A6E6B0B7AE68D864 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DC66E09CE8840B2B0A07916B05FA200 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "448" ], + "Content-Length": [ "440" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsflexnode112925-0000000\",\"name\":\"app-package-functionsflexnode112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000\",\"name\":\"app-package-functionsflexnodefqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -1319,8 +1501,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "221" ], - "x-ms-client-request-id": [ "bca99958-4bdb-4421-9249-cca9eb3c7ff4" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "7061cccc-6205-44ab-bd9d-9d1669dc156f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1335,36 +1517,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8e610818-daf1-4e59-a1e8-21e358833d9d", "2607cb51-3ea2-4afe-80f6-63f40745cf51" ], + "x-ms-original-request-ids": [ "431faf37-8099-47a8-a657-528810766f5a", "11b39b95-e5eb-4ba8-b3fa-cecaa021efd4", "97cbe9ec-27dc-46c8-a473-4ac07fa00d50" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "79726350-952b-46f5-85bf-17962e31b077" ], - "x-ms-correlation-request-id": [ "79726350-952b-46f5-85bf-17962e31b077" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112251Z:79726350-952b-46f5-85bf-17962e31b077" ], + "x-ms-request-id": [ "ecf42c98-9c11-45d9-8a17-935261cdb75f" ], + "x-ms-correlation-request-id": [ "ecf42c98-9c11-45d9-8a17-935261cdb75f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012344Z:ecf42c98-9c11-45d9-8a17-935261cdb75f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3942CC5C98594141AD228F28890694E0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9797D2A8A59843819073D785D34E1D02 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "222" ], - "x-ms-client-request-id": [ "c48f25ac-8583-4eb0-bfe0-23a17be3903d" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "322a7d1e-20bf-45ca-86bd-0d365ea12b33" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1379,23 +1561,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "55b09d5c-f9ae-4196-9bd4-b0bff6bb825b" ], + "x-ms-request-id": [ "bf672f45-840f-4831-be89-90048d9d3e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1ef370d7-0f84-4532-9449-d301fb7a9a92" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e3342971-621a-46a1-8ee5-dccae6c97356" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "95b379d6-169c-411a-aa3c-d25184bd9bce" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T112251Z:95b379d6-169c-411a-aa3c-d25184bd9bce" ], + "x-ms-correlation-request-id": [ "abf3cf65-1bd4-47f5-9ad5-7894336f8de6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012345Z:abf3cf65-1bd4-47f5-9ad5-7894336f8de6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 682BE0CBE1E24427870E66C7A529CC15 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:51Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6B593F234D345298586CE3A9AEAB4FB Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"Ky2pxrgAJq6uFQNVPM7Rse3XEdAssBbQssUYKn03uJG1lER0qpRRjF7CRMAYfLI8IFlvffKrsbtN+AStHah/eQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"pSHOojsFN8q+Tack0Fyxk5X3kWIJdkDnZL3UplBajtACJ9TH98k15kf8peL/uAMEC2CVnaF8FTeG+AStB2gFug==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1406,8 +1588,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "223" ], - "x-ms-client-request-id": [ "ac9a8e02-1566-40f9-8242-0904563fb388" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "08669115-9a5d-4f86-abec-59fb80e08bb6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1422,36 +1604,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c8601fd9-1880-4e9e-b4fd-182bf7681225", "09789554-768a-40a2-af2e-3e6eee2289b0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "ea3db0fc-10d5-4c5f-b826-ad2177a30646" ], - "x-ms-correlation-request-id": [ "ea3db0fc-10d5-4c5f-b826-ad2177a30646" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112252Z:ea3db0fc-10d5-4c5f-b826-ad2177a30646" ], + "x-ms-original-request-ids": [ "4a7245e6-99b7-481f-90c9-006a454d2c42", "d0074941-2adf-4149-840e-a0550218d601", "9323c5b7-595e-46c7-aba5-1ef133e1f4c8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c791b706-d1f4-4ed9-8905-ac6f2f0e999e" ], + "x-ms-correlation-request-id": [ "c791b706-d1f4-4ed9-8905-ac6f2f0e999e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012345Z:c791b706-d1f4-4ed9-8905-ac6f2f0e999e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A79A667F1D543299AC9ADB6C4DAAD28 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:51Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E07D3333CCE84A3C8C9CB89D04D337DD Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "224" ], - "x-ms-client-request-id": [ "bad3aa8a-fdc4-42fd-97dd-7a760641a769" ], + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "192b57d5-5bf0-4223-ac2a-789cd28fec7b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1466,30 +1648,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e1fbc5e4-2a41-4c31-a398-eb010725a777" ], + "x-ms-request-id": [ "6279af9e-9788-4eee-92a7-e1a16e5fc7bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a47ba68f-18c4-4b83-b154-9b6041138527" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/9ea988fd-54d0-488b-8121-e1bce6a20136" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f7d226ad-08d7-425f-b6c0-f940532b5e65" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112252Z:f7d226ad-08d7-425f-b6c0-f940532b5e65" ], + "x-ms-correlation-request-id": [ "b265e868-0feb-42da-9031-116e27ab94e6" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T012346Z:b265e868-0feb-42da-9031-116e27ab94e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30B9CB7C7D1E488AB40642719DBE1269 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:22:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE4DBBA6F40E46AB85952D93CE259452 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"Ky2pxrgAJq6uFQNVPM7Rse3XEdAssBbQssUYKn03uJG1lER0qpRRjF7CRMAYfLI8IFlvffKrsbtN+AStHah/eQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"pSHOojsFN8q+Tack0Fyxk5X3kWIJdkDnZL3UplBajtACJ9TH98k15kf8peL/uAMEC2CVnaF8FTeG+AStB2gFug==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Node-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Node-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Node-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Node-fqti?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": { @@ -1509,36 +1691,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/eastasia/5cbfae98-985d-41e9-a1dc-da3febca2265" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ca71ecc0-fe9a-4579-a8e1-004e7aebd4da" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "19b1ed69-729b-498a-aab8-8ca86a1cdc6b" ], - "x-ms-correlation-request-id": [ "19b1ed69-729b-498a-aab8-8ca86a1cdc6b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112309Z:19b1ed69-729b-498a-aab8-8ca86a1cdc6b" ], + "x-ms-request-id": [ "9d9c7c3b-9065-45cb-9ace-873a90155992" ], + "x-ms-correlation-request-id": [ "9d9c7c3b-9065-45cb-9ace-873a90155992" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012357Z:9d9c7c3b-9065-45cb-9ace-873a90155992" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0AEEF43D9D34638A1AB18265B199D04 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:22:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:23:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00B55CD26E6F4516A493D8B571260EC6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:23:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1613" ], + "Content-Length": [ "1600" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e030783-0000-0200-0000-69146e1a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Node-112925\",\r\n \"name\": \"Functions-Flex-Node-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-112925\",\r\n \"AppId\": \"f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"2d0c1a0a-2951-423f-8471-574b6e71fb7d\",\r\n \"ConnectionString\": \"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\r\n \"Name\": \"Functions-Flex-Node-112925\",\r\n \"CreationDate\": \"2025-11-12T11:22:55.045101+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-112925_f0410b81-5d3e-4655-9df6-b3118e3db5d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-112925-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\": \"\\\"78033075-0000-0200-0000-691684ad0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Node-fqti\",\r\n \"name\": \"Functions-Flex-Node-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-fqti\",\r\n \"AppId\": \"968cb2e5-19cd-47be-8eca-ca4b54c56198\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"aa497dca-41c0-4f25-ad85-ea184f06d59b\",\r\n \"ConnectionString\": \"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\",\r\n \"Name\": \"Functions-Flex-Node-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:23:48.8943199+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-fqti_968cb2e5-19cd-47be-8eca-ca4b54c56198_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1977" ] + "Content-Length": [ "1965" ] } }, "Response": { @@ -1546,39 +1728,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6BB3C6640\"" ], + "ETag": [ "\"1DC55055B11DB8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ba0e65f-9fa4-4ce9-b399-58981afcad4d" ], + "x-ms-request-id": [ "657ca6de-81b6-4f31-9e57-b4b760751b2c" ], "X-AspNet-Version": [ "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/03e45e2e-6236-4074-b568-acf664287b81" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8ff11613-b71e-481d-bf55-179934e47aad" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "4b1bee8d-e368-48d3-8a38-1edff42154a1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112333Z:4b1bee8d-e368-48d3-8a38-1edff42154a1" ], + "x-ms-correlation-request-id": [ "28518b67-8023-4cbf-8057-117b8e249eeb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012421Z:28518b67-8023-4cbf-8057-117b8e249eeb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21E9E8C22E3D460A871666BC4FA041E0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:23:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:23:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B26015FFA3A84F9699E76E979885EBA0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9499" ], + "Content-Length": [ "9461" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:11.7366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:23:59.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "cbc90aa2-ee5c-4688-a826-95214465c953" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "e003eb48-bcad-4b02-89f1-98a717fa2abd" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1592,38 +1774,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "ETag": [ "\"1DC55056781DBB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e589e69a-050d-4acf-936b-d593c54046b6" ], + "x-ms-request-id": [ "dc8632d4-1241-4476-b0c8-648d85c6de95" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "458ad4e7-cdd9-41f3-8437-65502ef79a7f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112404Z:458ad4e7-cdd9-41f3-8437-65502ef79a7f" ], + "x-ms-correlation-request-id": [ "b8355d30-5151-40be-9972-a7401eedf4cf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012452Z:b8355d30-5151-40be-9972-a7401eedf4cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EC774C07F1B42C281340A84C4368D57 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDAF6D1F020943039D97923106ABD543 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9476" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:33.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "f48f788f-1c85-41ac-a819-7eb26e0a3c61" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "e6cc3a9a-94d0-4669-a7f9-d891cb9fca1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1638,38 +1820,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "ETag": [ "\"1DC55056781DBB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdace427-2c2a-4c3e-b6ab-0106c08c6227" ], + "x-ms-request-id": [ "ec2dadb8-6c9a-49c0-b8a3-8757714eae14" ], "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": [ "7b7ed9a6-d18c-40e8-8c14-4245f798c3a5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112404Z:7b7ed9a6-d18c-40e8-8c14-4245f798c3a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "db0dc2ce-3592-4d30-a438-871139c1e7f5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012452Z:db0dc2ce-3592-4d30-a438-871139c1e7f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4AB6E057C2B411FBC46E6D6E78BDF6A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09A71A1E498647FD812D400726BDE547 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9476" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:33.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "229" ], - "x-ms-client-request-id": [ "533ed4ab-1d53-478a-b08d-7094671e340f" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "bc2f34f3-8365-4949-89c0-bd7d4acd27be" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1685,36 +1867,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37cbbb74-58d2-4782-9a00-fc995f07212d" ], + "x-ms-request-id": [ "84c892ee-72d0-4072-9ed6-85b0bcd58984" ], "X-AspNet-Version": [ "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/9936bcc4-417a-4408-8644-9e766bb93d19" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2f0929e9-8c50-45c4-9e84-1f264434f8c1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2db22bf5-72f1-44c3-9cbd-773d623ef5a4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112405Z:2db22bf5-72f1-44c3-9cbd-773d623ef5a4" ], + "x-ms-correlation-request-id": [ "c3d2faeb-d35c-46a0-99bf-9df82f017fdc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012452Z:c3d2faeb-d35c-46a0-99bf-9df82f017fdc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8A4CCD2F0414664A5897CAE867A29C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:04Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5BD067C173CC4BA0A26E941D52ACB6EA Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "e10187e6-fc81-4b14-beb5-ffa6d0c75e43" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "79d96e7b-55c8-4322-a215-0efbea5054d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1730,37 +1912,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c82b323f-0214-425b-904f-1c9862d06fd2" ], + "x-ms-request-id": [ "2a9ac4da-332e-4728-bdb5-83ed2b5c9914" ], "X-AspNet-Version": [ "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/0cd6445a-85cb-482c-8cc9-7d3232d947a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d6d2b39c-847d-4422-ae82-a8b08b9d4e89" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a901d72c-c359-4abd-8821-93913a92d01d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112405Z:a901d72c-c359-4abd-8821-93913a92d01d" ], + "x-ms-correlation-request-id": [ "ffc41d99-d136-4711-a641-1925102e367a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012453Z:ffc41d99-d136-4711-a641-1925102e367a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA1016C542EA49129756533B9BDDF451 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4DB8CB978DB4207991C7580788E33D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4155" ], + "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web\",\"name\":\"Functions-Flex-Node-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "231" ], - "x-ms-client-request-id": [ "2cd53681-b8a1-4ea1-a7e5-ee9dee135f88" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "e390aa4c-242c-4c98-ad9b-326312ab6df1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1776,36 +1958,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "181e2df4-71ff-47bd-9dd2-eb93c562e7aa" ], + "x-ms-request-id": [ "f72423da-d485-44e7-a873-31a76572a09b" ], "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": [ "6778ff0b-e6d4-4a09-b5c1-c4295ca42b6a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112405Z:6778ff0b-e6d4-4a09-b5c1-c4295ca42b6a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "79605ed6-d0bf-48b3-a740-beded34161cc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012453Z:79605ed6-d0bf-48b3-a740-beded34161cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4541EACCABDE441E954CCFB66C77DEE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5B9B3055FB8467982FC09B2755247B1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "232" ], - "x-ms-client-request-id": [ "4a2d86cf-29fd-46d3-9ab8-c8fc9e97e850" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "46891853-d28c-4131-a09b-b25d2dd47631" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1821,36 +2003,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ecae044-2c9e-45d5-8613-8a4f0abab2e1" ], + "x-ms-request-id": [ "abd73abc-1f2d-4204-8668-d9d849026e5f" ], "X-AspNet-Version": [ "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/8f3666d2-32e1-4b32-8119-6a95b9bfb3bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/422adc7b-f97a-452c-8177-5b70e35c4874" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bdbaf39d-87e6-44fa-9b82-d87944db2068" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112406Z:bdbaf39d-87e6-44fa-9b82-d87944db2068" ], + "x-ms-correlation-request-id": [ "bed95784-b6b3-4e42-8eeb-9d8f182cda13" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012453Z:bed95784-b6b3-4e42-8eeb-9d8f182cda13" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFAB5CC0DD1947579DE0273B9359D50D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 018DA0E09A92415582BB7FE051289E38 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "4526760d-d246-4829-a81f-b67c9c71a0e0" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "fbd3447b-0f9d-4b05-8839-02c3383a4a21" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1865,38 +2047,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "ETag": [ "\"1DC55056781DBB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a0b4d9c-4f0f-4677-b0bd-c95590688898" ], + "x-ms-request-id": [ "d0c792c3-3be0-4a82-b35e-93262c0e4560" ], "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": [ "d7a6ea73-03fb-48c3-8f18-00adce2a4515" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112406Z:d7a6ea73-03fb-48c3-8f18-00adce2a4515" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "94b9283e-f7a2-4b7f-9794-044212d4e7ae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012454Z:94b9283e-f7a2-4b7f-9794-044212d4e7ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47CC1CCAD5464A09B9FE6981DF58356C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FE70E3716CA405A9C7A83BED285248D Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9476" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Node-112925\",\"repositorySiteName\":\"Functions-Flex-Node-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112925.azurewebsites.net\",\"functions-flex-node-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:23:33.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsflexnode112925-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-112925\",\"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-112925\\\\$Functions-Flex-Node-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-node-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "234" ], - "x-ms-client-request-id": [ "c4ad76b9-8369-452a-94f7-36c382d13179" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "ab71e28b-2012-49b5-9c57-2c99c2084a43" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1912,36 +2094,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a3c87ed-7c21-419a-8677-8c3626a38d73" ], + "x-ms-request-id": [ "7b8bcb53-799b-4f66-8905-344836e31338" ], "X-AspNet-Version": [ "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/b071deae-95bc-4510-a942-235c4672c274" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "efd6f0d8-2b4d-4da6-b598-60a589f93844" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112406Z:efd6f0d8-2b4d-4da6-b598-60a589f93844" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9f6e50db-8f0d-4249-a8d0-54b07a83f925" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f6441391-5824-41b0-8991-cf7281a2ee58" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012454Z:f6441391-5824-41b0-8991-cf7281a2ee58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67B15CD033FE43578291BF433EE31042 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C021BF8D3D44C0D888EB9A7C17009D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "235" ], - "x-ms-client-request-id": [ "c0060f1e-ffd1-4bbb-a961-a58e6e2355ea" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "7e23a444-fcc0-483b-9d63-259cd8dcfe19" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1957,39 +2139,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d9f0ec1-a5c2-42f1-9988-ec6244ea8ca4" ], + "x-ms-request-id": [ "99341080-0077-47d4-908c-5d2517e259be" ], "X-AspNet-Version": [ "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/0fa24f3a-e04c-4870-a780-7c32d75e3ac4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/04241e3e-4135-4903-b208-fb9105d536c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "113a5660-f6e9-4261-ab6b-7d3e88e5d021" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112407Z:113a5660-f6e9-4261-ab6b-7d3e88e5d021" ], + "x-ms-correlation-request-id": [ "c7d9fac0-ded4-402b-a6f3-e90447a914a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012454Z:c7d9fac0-ded4-402b-a6f3-e90447a914a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60F972AC3C3D4D2FA2B17E4E2E26AB58 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2883A2C65D4141DC9FE8789913D8F1E7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4155" ], + "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925/config/web\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web\",\"name\":\"Functions-Flex-Node-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Node-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "376e03b7-70fe-4471-b8f4-98e1fef64582" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "531a7261-ba5d-4783-8598-c4232352f086" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -2002,40 +2184,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C6C7E4DB8B\"" ], + "ETag": [ "\"1DC55056781DBB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44bb9ae5-0285-4a0f-8b98-fe70fdd39f02" ], + "x-ms-request-id": [ "11fe8634-a189-4515-86af-38a8f212e135" ], "X-AspNet-Version": [ "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/8456d800-76c8-4583-bbba-165401b0f0bd" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "49afe75d-9405-461e-83ed-cd28ae6f8ad0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112422Z:49afe75d-9405-461e-83ed-cd28ae6f8ad0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5a50c321-fd6e-4b15-a7b6-ef4d21c930c6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012455Z:5a50c321-fd6e-4b15-a7b6-ef4d21c930c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8274C2D805F438C9B651E24570E5DC1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:07Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24993A201778401D8EECBDAD753D8121 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:55 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9443" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "ed9dbf47-5233-441a-ab8b-fb1c7068f9c1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "65" ] } }, "Response": { @@ -2044,40 +2231,217 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10eed904-ca79-4f57-8641-f338732b9dc5" ], + "x-ms-request-id": [ "9c39bbac-77fd-4b77-a404-91cab627867b" ], "X-AspNet-Version": [ "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/0d7aef33-7fd9-4d51-9b1e-8e6a7a9a0923" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0249c0fc-1242-40cc-92eb-8fb84188047b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112423Z:0249c0fc-1242-40cc-92eb-8fb84188047b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6d4facee-6254-4077-b014-674797994875" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "da3f6bfa-72bb-4551-9cea-a7efd26dbca4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012455Z:da3f6bfa-72bb-4551-9cea-a7efd26dbca4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4152993506C74B27B300652D0E002C36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83456E2A0AFC47D6AFE990E2CFB94C9A Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] - } + "x-ms-unique-id": [ "247" ], + "x-ms-client-request-id": [ "c44c7b40-7251-4539-aa2e-96a926c60c51" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "eb9fd5b9-cbde-4004-8fe7-f247ccedd06f" ], + "X-AspNet-Version": [ "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/23813160-7fdd-4a20-b5c8-886e36c0de5e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "29d85f91-9e5b-4316-84ea-f67a247b1679" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012456Z:29d85f91-9e5b-4316-84ea-f67a247b1679" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 36B3CF5552694B0AA0A9469204F349D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4149" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web\",\"name\":\"Functions-Flex-Node-fqti\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "c7c263d3-6d06-4524-a61d-0bd54151d9bf" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "151af382-913c-42fe-83b4-dbddbec34101" ], + "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": [ "d955c85f-b420-432d-afe9-92b31d53feaf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012456Z:d955c85f-b420-432d-afe9-92b31d53feaf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 34898ACFF9124AE8B44ED819A301070E Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:24:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "c9297a30-0970-42df-9c3b-57dca6af14ee" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55056781DBB5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f4b507e6-a9e3-4f63-97d6-eb7600eeef61" ], + "X-AspNet-Version": [ "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/e5105de7-6133-4903-a219-47e84ff24a4c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "c0a4632e-a369-4f34-a870-a85e2830b3ee" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012513Z:c0a4632e-a369-4f34-a870-a85e2830b3ee" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F5916BAC630A485DA82E50BE843409D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:13 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-fqti\",\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": [ "5c977846-e1e9-4d27-9eb8-879c145258d2" ], + "X-AspNet-Version": [ "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/cd8bcabd-6634-4c32-b6bf-76c79cae618b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a6513e24-2e95-471e-bd3d-91fe193a22dd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012514Z:a6513e24-2e95-471e-bd3d-91fe193a22dd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 08A57D77320E4FC883A2EB8D4A6BEBB5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:13Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:14 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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, @@ -2085,38 +2449,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68467bf7-ee2f-4f76-a66d-9a457b3bf35b" ], + "x-ms-request-id": [ "008b8698-fd02-4a50-a798-16c61494a0c2" ], "X-AspNet-Version": [ "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/60e15a0b-f1fc-4bcd-be1c-18f2f3f1ec47" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/33bd5f43-5818-4f8b-8528-5625ae781815" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d78641e6-c278-4eb0-9328-9db615b7d6f2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112426Z:d78641e6-c278-4eb0-9328-9db615b7d6f2" ], + "x-ms-correlation-request-id": [ "9b9690db-5639-43cb-9e6d-c1e7872b63e5" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T012519Z:9b9690db-5639-43cb-9e6d-c1e7872b63e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B989333D21C945B8B07B776AB5C3930C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5FF0609E8BE4F4A97EAFCB45CBDEFFA Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:14Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"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-14T01:25:19.4533333\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "eb9ffabe-e1e0-4f68-817c-a528b795bbf4" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "9941c41e-2b61-4e34-98cb-8e6592b5e327" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2131,37 +2495,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8634e02-58d6-4adf-b08a-481f25567067" ], + "x-ms-request-id": [ "f722a3a4-b3cf-4a25-ab19-c196b2ab5170" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "48f1a77b-a407-402f-a710-be983956b7ff" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112457Z:48f1a77b-a407-402f-a710-be983956b7ff" ], + "x-ms-correlation-request-id": [ "d2d9d893-1930-4b88-9c3a-85482f7821f8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012550Z:d2d9d893-1930-4b88-9c3a-85482f7821f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16A89234A88E40529532A3460EBB97F8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F088640440DE4329A300AB8C6D99BE63 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "241" ], - "x-ms-client-request-id": [ "eb9ffabe-e1e0-4f68-817c-a528b795bbf4" ], + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "9941c41e-2b61-4e34-98cb-8e6592b5e327" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2176,24 +2540,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce7a19b3-721d-4bf4-8dc1-22bd41668247" ], + "x-ms-request-id": [ "f4275f89-abb1-47c7-83a4-d8532893c905" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fc715e40-5520-4361-ac57-356b155105b7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112457Z:fc715e40-5520-4361-ac57-356b155105b7" ], + "x-ms-correlation-request-id": [ "23e3da24-00b6-4c01-b32c-811684a3d871" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012550Z:23e3da24-00b6-4c01-b32c-811684a3d871" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 302383DFEB044A57BBAB1A86C47F1872 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C9C2B32FB73496FA82C59D798CB9598 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -2204,8 +2568,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "5b3f09e4-50e9-475c-bc28-856dd886732c" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "c3b1ed38-1e24-481b-9b1e-60c76d5308d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2220,36 +2584,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f367e15f-3494-459e-9533-d9b63fcba8d5", "f2d757e6-441e-40fd-bbae-e8a7d9bbe9ce" ], + "x-ms-original-request-ids": [ "40f971eb-0896-45f1-b523-81461f2275b8", "693a5308-eb54-48fd-bfc7-f3201de9f29e", "6f2d86ac-b07a-4854-a69b-57c9a626b8b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "cbccd7c6-0c46-4c82-8e7e-a8cc15e7a424" ], - "x-ms-correlation-request-id": [ "cbccd7c6-0c46-4c82-8e7e-a8cc15e7a424" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112458Z:cbccd7c6-0c46-4c82-8e7e-a8cc15e7a424" ], + "x-ms-request-id": [ "6c2ee2f5-1662-4248-b4a5-d86f28a3bd36" ], + "x-ms-correlation-request-id": [ "6c2ee2f5-1662-4248-b4a5-d86f28a3bd36" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012551Z:6c2ee2f5-1662-4248-b4a5-d86f28a3bd36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49859C4662E14906A996732B9CA47E3B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B94A6967F6024A5DA6C3B1E7ED5DE66F Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "72c3dead-e53b-4218-a326-d2057ec54219" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "ad23477f-e5b5-423b-80bf-8b6c408fe15e" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2264,31 +2628,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "92d5f8f5-1ca2-4f18-aa53-1216d571f80e" ], + "x-ms-request-id": [ "e4264a3a-7ec3-46db-97c0-cf07eb7458d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6da4c4b7-ce8d-4b4e-bfd7-706ec89b1765" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b7f85299-6b22-4e11-8df3-ab91e30f146d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a4969205-53c5-4b3e-9351-4710177e14b4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112458Z:a4969205-53c5-4b3e-9351-4710177e14b4" ], + "x-ms-correlation-request-id": [ "df7bf378-b864-4378-b070-55e1eeac7399" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012552Z:df7bf378-b864-4378-b070-55e1eeac7399" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4201970D062C4ECDBB1B967E9E3384F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 164868DB593C4FACA15557DC471F4510 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:177db427-101e-0011-50c6-5363b5000000\\nTime:2025-11-12T11:24:58.8962172Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9164d279-e01e-0038-5f05-55caeb000000\\nTime:2025-11-14T01:25:51.9804007Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -2303,25 +2667,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DE1D81195C\"" ], - "x-ms-request-id": [ "85381f0f-f421-4f68-bb66-bbaf3d5bde46" ], + "ETag": [ "\"0x8DE231CC0483088\"" ], + "x-ms-request-id": [ "1293b064-45cc-49f3-ac18-1a62e4f96d25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c62ac77e-913b-4c80-ae12-7105b8f83f5e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e4aed57c-a89d-4f95-b252-37670301c330" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "db75bbde-6c17-4fd1-85d7-d2a9bf84982b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112459Z:db75bbde-6c17-4fd1-85d7-d2a9bf84982b" ], + "x-ms-correlation-request-id": [ "b9cdcb80-a267-4c03-b58f-a56bbf0e1248" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012552Z:b9cdcb80-a267-4c03-b58f-a56bbf0e1248" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DFE76C00DD04D4787EAA66F6BDBD293 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F81734D5A32E40AEAAF641F247032EF1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "454" ], + "Content-Length": [ "446" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionsflexpython112925-0000000\",\"name\":\"app-package-functionsflexpython112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000\",\"name\":\"app-package-functionsflexpythonfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -2332,8 +2696,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "245" ], - "x-ms-client-request-id": [ "27c87d6c-c64c-4efe-94cd-11cf72ec72f9" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "d085ce5b-7546-4039-bbf9-b020f9b69507" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2348,36 +2712,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "25c1b5dd-ddea-4d5f-ba6a-fb056d5f1a39", "0af2a0b3-3d74-47d4-95a7-5444f2ec3d02" ], + "x-ms-original-request-ids": [ "d4835c29-9652-4939-9f5f-4362a4aeecd7", "88758d16-9a17-4bb2-a349-3ab95b5f2733", "08251899-a978-4a01-bb6d-021d32f3d78f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "7b1d44a7-f090-489f-badc-722d0bd678e5" ], - "x-ms-correlation-request-id": [ "7b1d44a7-f090-489f-badc-722d0bd678e5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112500Z:7b1d44a7-f090-489f-badc-722d0bd678e5" ], + "x-ms-request-id": [ "f6126b82-5008-491b-9b1d-106655184ff5" ], + "x-ms-correlation-request-id": [ "f6126b82-5008-491b-9b1d-106655184ff5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012553Z:f6126b82-5008-491b-9b1d-106655184ff5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 566BEFEA39D14C528B1325ED8DDF78B2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:24:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:24:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC6CA6A319FE4749858EA52A8294F3E3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "246" ], - "x-ms-client-request-id": [ "e2f25301-1ff7-48c5-b665-c9027f932a8e" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "b78e1461-4fef-422d-b3ad-e3cdc3f73660" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2392,23 +2756,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "51a1ad0a-c012-4a86-a421-9986aa146566" ], + "x-ms-request-id": [ "14ba06ed-11e4-47bb-bd87-6d4edf14c83e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/26f8a003-80fe-4b47-8f55-63d1d2ea3d06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3e459cac-d37f-4bf5-9b7d-a825d7ec264a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e4c7769f-c037-4875-8e69-d37cc4e821a8" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T112500Z:e4c7769f-c037-4875-8e69-d37cc4e821a8" ], + "x-ms-correlation-request-id": [ "44eaf3fc-ddd9-452e-acd7-f64c64a6c2c9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012554Z:44eaf3fc-ddd9-452e-acd7-f64c64a6c2c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FEBAF08B957465E952414FD91446E1C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:25:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FE658C231A644B28360582A50EABA4A Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -2419,8 +2783,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "4afb7976-23e9-4763-b310-221af72fa709" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "098285fc-74b4-4d07-ab6d-6032554e18d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2435,36 +2799,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6734fa6b-986c-4912-8cd2-8d50b7b945dd", "2a73a162-7d55-4089-982d-0604eb91a8df" ], + "x-ms-original-request-ids": [ "f2ff087d-8e67-4c87-ba8d-816611fc0bc1", "0b75c99f-9cf7-44a7-bac4-46d15c7e7df5", "bc1fd867-43e4-4035-a8f5-48343e0c35d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "09d8a612-336a-4ed9-8f1f-35776a150664" ], - "x-ms-correlation-request-id": [ "09d8a612-336a-4ed9-8f1f-35776a150664" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112501Z:09d8a612-336a-4ed9-8f1f-35776a150664" ], + "x-ms-request-id": [ "63dd0c18-b8b7-4d87-8afc-937a98d8cb20" ], + "x-ms-correlation-request-id": [ "63dd0c18-b8b7-4d87-8afc-937a98d8cb20" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012554Z:63dd0c18-b8b7-4d87-8afc-937a98d8cb20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED60D972DD724DD6B0C5D1016802930C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:25:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BD8EB6DBECC4395B4E230DA2A92049D Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "a2e72161-16f2-4a77-94c4-a7bcf28bd68f" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "70139c07-f0f7-4950-b529-d015d45bd83b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2479,30 +2843,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d9b58c54-bf18-4afe-a60c-7af675941a04" ], + "x-ms-request-id": [ "5ee3343e-68a0-4443-bdfa-a28eb2432794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f3ff39de-e8fb-4326-9c76-54d46ffeabb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9824273c-28a2-4a76-9cf7-44e9b96803e3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2f8ddc4d-0f9f-439c-a072-015a02dec7d3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112501Z:2f8ddc4d-0f9f-439c-a072-015a02dec7d3" ], + "x-ms-correlation-request-id": [ "f4445b0c-69ff-453f-9c8b-b7a5d890d0e2" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T012555Z:f4445b0c-69ff-453f-9c8b-b7a5d890d0e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDBB31EEFD5A44C4B0963167146FCD67 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:25:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCA3D46030064495A4CD08B1A0CAC593 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:25:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Python-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Python-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Python-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Python-fqti?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": { @@ -2522,36 +2886,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/eastasia/9746b90d-c066-47ca-ad09-0780b0403baa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d8ea0624-01c9-4d89-b14c-21984bedd83d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "3ce05b1f-f43d-484b-b672-4e61f1b1eb9e" ], - "x-ms-correlation-request-id": [ "3ce05b1f-f43d-484b-b672-4e61f1b1eb9e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112517Z:3ce05b1f-f43d-484b-b672-4e61f1b1eb9e" ], + "x-ms-request-id": [ "db7696d9-4704-4aa8-a718-97d46cd636bd" ], + "x-ms-correlation-request-id": [ "db7696d9-4704-4aa8-a718-97d46cd636bd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012606Z:db7696d9-4704-4aa8-a718-97d46cd636bd" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFD7D500386946098749E47B045F0304 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:25:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF84A903D70947F499B8D4E5DE9990A4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:26:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03d785-0000-0200-0000-69146e9c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Python-112925\",\r\n \"name\": \"Functions-Flex-Python-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-112925\",\r\n \"AppId\": \"d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0cce5e22-34fc-4579-82f2-611013da28fa\",\r\n \"ConnectionString\": \"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\r\n \"Name\": \"Functions-Flex-Python-112925\",\r\n \"CreationDate\": \"2025-11-12T11:25:04.1330297+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-112925_d33efadf-7035-40be-bcb8-42d8b5eeaa38_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-112925-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\": \"\\\"78033d7f-0000-0200-0000-6916852e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Python-fqti\",\r\n \"name\": \"Functions-Flex-Python-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-fqti\",\r\n \"AppId\": \"c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a897e4a4-c870-4a15-b6df-76a54fac74ca\",\r\n \"ConnectionString\": \"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\r\n \"Name\": \"Functions-Flex-Python-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:25:56.8152138+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-fqti_c8d3eeb1-cc4b-4546-ae45-fd80c21d286a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1989" ] + "Content-Length": [ "1977" ] } }, "Response": { @@ -2559,39 +2923,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7079561E0\"" ], + "ETag": [ "\"1DC5505A86081CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3cdf67d-6bea-4377-9dcf-a6258eae204f" ], + "x-ms-request-id": [ "605f0ddb-68a3-42c8-9553-a35cccbd65bb" ], "X-AspNet-Version": [ "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/a2a31d44-d3ad-4531-aefe-be188490d5db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/67f3bfa4-990b-48ac-8190-7be4b59a0ac1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "dbbec480-911c-4e5e-8e10-758ea7433652" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112542Z:dbbec480-911c-4e5e-8e10-758ea7433652" ], + "x-ms-correlation-request-id": [ "0f9cfe3a-ee9a-4469-97a0-2ff6f3d8a80f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012631Z:0f9cfe3a-ee9a-4469-97a0-2ff6f3d8a80f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D22F5C5896F4C749338AFF795515972 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:25:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:25:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DA10EB0DA734D18801DC9C87F9304A7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:26:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:26:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9530" ], + "Content-Length": [ "9490" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:19.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:09.01\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "251" ], - "x-ms-client-request-id": [ "944f49e3-2a03-4ba7-9013-76ac517fd8fb" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "d1df4abe-881f-44a7-a499-f4a17d945292" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2605,38 +2969,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C71459D0A0\"" ], + "ETag": [ "\"1DC5505B493FB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d420ccf8-239a-49af-bf4f-e64751ca2bac" ], + "x-ms-request-id": [ "88c2bf68-0b34-4e8d-8954-b3c60b6f865a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "813f888e-9866-4f85-bbb1-6366cc47d77c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112612Z:813f888e-9866-4f85-bbb1-6366cc47d77c" ], + "x-ms-correlation-request-id": [ "8a0537d1-ae7d-49a8-a588-70163000d1ef" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012701Z:8a0537d1-ae7d-49a8-a588-70163000d1ef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EDF8754AA0645ADB697090023F2258F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7ED06DDEB95A44DE9A33B2E7874098DB Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9507" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "252" ], - "x-ms-client-request-id": [ "a6fcaa9b-c88d-454c-929a-9d0d50ad380f" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "0f136532-ef04-490d-9489-304564bff212" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2651,38 +3015,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C71459D0A0\"" ], + "ETag": [ "\"1DC5505B493FB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "554bd881-8459-438e-9249-d534de493d78" ], + "x-ms-request-id": [ "2a61cb11-8994-445c-a360-053eb48cedec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "692c78de-a9c1-4ab5-a9f4-2c556d6c062c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112612Z:692c78de-a9c1-4ab5-a9f4-2c556d6c062c" ], + "x-ms-correlation-request-id": [ "4d709c21-4892-40c2-80c7-1b666191a68c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012701Z:4d709c21-4892-40c2-80c7-1b666191a68c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7E7740950AC43CBA0C96867D32625EB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14751E184AD140EC8746CF81D2A52D0C Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9507" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "a72f629b-643c-467a-9730-48a3934665df" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "954bd6d2-6584-4a48-819f-77532004e2b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2698,36 +3062,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11bd7b46-bcb6-4941-a040-acab5449950b" ], + "x-ms-request-id": [ "c18529b9-c8e5-41d5-b358-91538ca67781" ], "X-AspNet-Version": [ "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/e8766e68-035c-4ce4-9bd2-0f1b6428e405" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eb82d345-a623-4500-be95-9a1ca8ccf389" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "90374887-9386-4cd1-b216-88bd61ed3d97" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112613Z:90374887-9386-4cd1-b216-88bd61ed3d97" ], + "x-ms-correlation-request-id": [ "ef41515b-f49e-4477-909f-d26ff45f9fb1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012702Z:ef41515b-f49e-4477-909f-d26ff45f9fb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F07AD9638BCB4E4AA13ED0E360F41F9E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA92C78FDBEE40D9926BDE39A05BE57F Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1017" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "545d67cb-a209-40c3-a761-cc4680c47d3f" ], + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "e6ba4d2a-c2c9-492d-9a2f-eef8e7f1a7bb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2743,37 +3107,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19b562a5-12e5-491a-b0d4-a3cb9a6ca116" ], + "x-ms-request-id": [ "9abe103d-ce36-4056-896b-b0d8bc5c2935" ], "X-AspNet-Version": [ "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/214b4b74-3947-4672-8472-dd801ae42655" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d35620ac-5005-444a-ba06-27cb5b8c98bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e559c57c-f302-40e7-b5c8-333650769ef6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112613Z:e559c57c-f302-40e7-b5c8-333650769ef6" ], + "x-ms-correlation-request-id": [ "ed9fa742-9f4b-47fd-a562-3503c4752765" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012702Z:ed9fa742-9f4b-47fd-a562-3503c4752765" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7AE9DB6175346C5A6ACB3B2C790E070 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E062A945A45F4633983E6D6D48BC4D66 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4159" ], + "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web\",\"name\":\"Functions-Flex-Python-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "3dcc2840-4ae7-4019-8160-69b6280baca4" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "9c65ab48-a477-4dbb-976f-00955a3ff8e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2789,36 +3153,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "378ff9d3-3f92-4221-ab64-855a99566c18" ], + "x-ms-request-id": [ "187901a3-d2f1-4099-b49b-3ef2117dae91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7825d2b-1ccf-4d98-a8b6-84ded90098a5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112614Z:c7825d2b-1ccf-4d98-a8b6-84ded90098a5" ], + "x-ms-correlation-request-id": [ "aeb97143-3e1b-4da3-a8af-8850005afdb8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012703Z:aeb97143-3e1b-4da3-a8af-8850005afdb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 459CA81334A54D57B4DA3D7044B7C585 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A672B0227234961B8623E2AB9DE4BA6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "50c4f8e5-b0c5-49f1-8870-aee76dac68eb" ], + "x-ms-unique-id": [ "269" ], + "x-ms-client-request-id": [ "0153d294-8b71-4558-83a9-57a2b19fe2d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2834,36 +3198,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b68e913f-aa3c-4e19-8746-f81236edebe7" ], + "x-ms-request-id": [ "f201e7f6-a368-47bb-ba1d-1d4d1f90a0a5" ], "X-AspNet-Version": [ "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/c2c42028-39b9-4297-8967-5b50864a0c09" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/aa511b70-3162-4ae9-b7e8-5950d7b11cbd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1590e420-f733-4096-811c-99c2dde286bb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112614Z:1590e420-f733-4096-811c-99c2dde286bb" ], + "x-ms-correlation-request-id": [ "080fb464-74c2-40aa-80a1-1cf377bad06b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012703Z:080fb464-74c2-40aa-80a1-1cf377bad06b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 740B0C45E40841578BDF6221DB86F0F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40E32535226C461BA06E096231DAB326 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1017" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "257" ], - "x-ms-client-request-id": [ "fd575813-3d7d-4bb2-8459-cafdfc966606" ], + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "7d688d5f-617a-4bb2-be10-e8b6829f5ffd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2878,38 +3242,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C71459D0A0\"" ], + "ETag": [ "\"1DC5505B493FB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ee873d7-297a-42d8-8d8e-99e9fceeead0" ], + "x-ms-request-id": [ "7ad6f4b1-3e9e-41bb-8102-55816dc11dba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "986395a0-66ad-40b7-9e45-63b7508a2676" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112614Z:986395a0-66ad-40b7-9e45-63b7508a2676" ], + "x-ms-correlation-request-id": [ "9255975a-285a-4277-8550-0a3f5fe04eef" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012703Z:9255975a-285a-4277-8550-0a3f5fe04eef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47D0C03FBA314412B91473BE7C83580B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB1A2DA935FA4362B653427F839C9852 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9507" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Python-112925\",\"repositorySiteName\":\"Functions-Flex-Python-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112925.azurewebsites.net\",\"functions-flex-python-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:25:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionsflexpython112925-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-112925\",\"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-112925\\\\$Functions-Flex-Python-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-python-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "2e1947df-f11c-4318-b4ef-d35ddd1b8814" ], + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "b5b8e984-dc8a-4b85-a28e-e479cb5e5cbc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2925,36 +3289,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6630ab9-e895-4a47-bda1-1f62da0c4984" ], + "x-ms-request-id": [ "a3ded95c-0ad7-4c84-b5a4-85b928ae5f2e" ], "X-AspNet-Version": [ "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/3e4f7d26-d8eb-4de6-9e26-762905cbd58d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4aac1d20-47d1-4ff9-95e8-6f7e8c4e21bb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4f031b24-5986-4016-adcc-6c1a71f8cc85" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112615Z:4f031b24-5986-4016-adcc-6c1a71f8cc85" ], + "x-ms-correlation-request-id": [ "d892283b-a445-478d-805d-732024b30564" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012704Z:d892283b-a445-478d-805d-732024b30564" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD9A7C07D25740E08C7E1E14861169D8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B7156AAFF364D3BA02C93AB88CC76FF Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1017" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "a1c53051-28a3-42ba-a95e-bce683db133f" ], + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "726637f3-cc88-4e6d-a8a6-a994cc49afc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2970,39 +3334,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0587a308-f972-4a49-b46b-0f3086a68a98" ], + "x-ms-request-id": [ "cbc0734c-cc93-49ff-bda2-a3796c2c11ce" ], "X-AspNet-Version": [ "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/68d378fb-9bbb-4eb2-ae6c-b0ac1c3339bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7498dc60-44fa-4a55-a2b4-3a3ebf01c15d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3b9cc722-68d0-4c40-b13e-21c09463a40a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112615Z:3b9cc722-68d0-4c40-b13e-21c09463a40a" ], + "x-ms-correlation-request-id": [ "dcb87d70-5ccc-4301-9d06-136c6009700f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012704Z:dcb87d70-5ccc-4301-9d06-136c6009700f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5ECABF48F51E42B288873E6F2796664F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 491513C509094839ABA9430205E5C6CB Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4159" ], + "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925/config/web\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web\",\"name\":\"Functions-Flex-Python-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Python-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "260" ], - "x-ms-client-request-id": [ "991db32c-5879-4783-befa-d14d747032cf" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "c97293c3-5f6f-4c81-80dd-c6949073d18a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -3015,40 +3379,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C71459D0A0\"" ], + "ETag": [ "\"1DC5505B493FB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9e0b5bf-a05a-4910-bff5-6d56f1cf05e1" ], + "x-ms-request-id": [ "f47c435f-6017-44ec-a1ca-47383d27a7fd" ], "X-AspNet-Version": [ "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/b1b1ab84-7f44-4ba5-81c7-9178ea3827c5" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c26eaf92-b058-4829-a555-84f3262f0667" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112635Z:c26eaf92-b058-4829-a555-84f3262f0667" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "27e8eb19-ebf9-4643-a9b1-851fb232f878" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012705Z:27e8eb19-ebf9-4643-a9b1-851fb232f878" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA245099D9E142B19A99EF5E43FB8748 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B86CE8CCA9674D828047B863267E7629 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:04 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9472" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "84c0912e-a790-4cba-aba6-6d92937c30bf" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "63" ] } }, "Response": { @@ -3057,39 +3426,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e20620ff-cb33-445d-b148-1c47921b2a8d" ], + "x-ms-request-id": [ "52b2b104-640b-4068-84aa-d788e12b42cd" ], "X-AspNet-Version": [ "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/08efa884-6fdd-4a0f-b258-526601f1c946" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ea05173-dbee-4a69-ad88-1fff7843eba5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112636Z:3ea05173-dbee-4a69-ad88-1fff7843eba5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ed8ef8bd-66aa-44ca-a58d-9e4573139f42" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6acca077-c475-415b-8f05-33b2b24931a2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012705Z:6acca077-c475-415b-8f05-33b2b24931a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3335EE4921BC4073822382B5E8AC2E68 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1A02F001F3D420999F54B261736F016 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "7d198968-b7a3-4208-88af-9c02804bfb81" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -3098,42 +3471,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e03c9996-25f3-4966-9158-dd6b44327b87" ], + "x-ms-request-id": [ "cba8ba66-c575-4aae-b7c4-944172471e3d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9c687c7a-fab0-4d19-9d4e-e09c9e2b2e2c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a56a8d96-63fb-40b7-b633-003525895727" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T112640Z:a56a8d96-63fb-40b7-b633-003525895727" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/26ed3324-4a50-4a86-9b5b-7706f17c1fbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "25afaa00-eea8-4e2e-80d7-7c57aef66154" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012705Z:25afaa00-eea8-4e2e-80d7-7c57aef66154" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AB72A8DB9EE447EA565878AB1024C60 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:26:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:26:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBCD2873B50541198B165F9A3A6F41DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web\",\"name\":\"Functions-Flex-Python-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "3713827b-8e57-494f-a674-be8d4a7c4276" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "f5be04e8-035f-46b1-b22b-5a97c4e764b0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -3144,41 +3517,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9bcc04e-dc3b-40f0-b1b4-599bedf14135" ], + "x-ms-request-id": [ "4959b6fe-14ea-4bac-83c5-9810f95fe9a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fcf444f9-51cf-4dc7-b65b-70e7fd195830" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112710Z:fcf444f9-51cf-4dc7-b65b-70e7fd195830" ], + "x-ms-correlation-request-id": [ "5731a3d1-d283-4825-9bcb-2d7be7845444" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012706Z:5731a3d1-d283-4825-9bcb-2d7be7845444" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 195286AED7EC4611AB95A53440FEB781 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA53EEAB011D4F7CAA7EA7FB2B424E59 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "3713827b-8e57-494f-a674-be8d4a7c4276" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "277" ], + "x-ms-client-request-id": [ "52d1ce8d-0aa9-45ed-bc93-a96fa154a68b" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -3188,37 +3561,210 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5505B493FB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0eea3e2-e802-4626-ac22-2d4e56ec66bb" ], + "x-ms-request-id": [ "436abab4-0a1a-4c16-a0b7-27b0b5a38557" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bda0477b-f16e-4db2-9f1a-1c8a12c694cc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112711Z:bda0477b-f16e-4db2-9f1a-1c8a12c694cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c322b572-dff0-48b0-8f13-0fc3883a8568" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f4630bcb-4a50-414f-929c-82b4b7ffcc1e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012725Z:f4630bcb-4a50-414f-929c-82b4b7ffcc1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AC4572A67404552B5EC881DB9F1BB76 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0ADDC207EC1F4A3293EC57D2467E4893 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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-fqti\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "61" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "677e39c8-e005-42c7-b811-de4727308cf9" ], + "X-AspNet-Version": [ "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/889c735c-4c2f-4c4c-9213-eb39f8646d24" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aa89136b-610c-4cd5-8e0e-51a171b39981" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012726Z:aa89136b-610c-4cd5-8e0e-51a171b39981" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B4733F0AAAA4A069FD69D3FD73B746F Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:25 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "3ee8ef36-d3aa-4040-bcb2-fca7f4e6c34b" ], + "X-AspNet-Version": [ "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/b0379f62-4a81-47d7-b5c9-f0643e81dd3c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "279e13f2-74b5-4ef9-9663-9cc52add86b6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012731Z:279e13f2-74b5-4ef9-9663-9cc52add86b6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8C19800B87F94D95A587DB8230EE8276 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:27:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1902" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"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-14T01:27:30.68\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "c7208e77-f6b2-43f8-8e29-b2361580d588" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "31fb8793-8f3c-44d3-b426-9b7fa2ac3e16" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bed81fa3-d83d-4e17-84d1-05733a54d791" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012801Z:bed81fa3-d83d-4e17-84d1-05733a54d791" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D24E9FF98C1F493ABEFF32CEE1729017 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "c7208e77-f6b2-43f8-8e29-b2361580d588" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ebfd9cff-57c2-4e36-9eec-c9f798a6edda" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b84f15e-928a-4fb6-b0eb-8631bc1eb6ac" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012801Z:9b84f15e-928a-4fb6-b0eb-8631bc1eb6ac" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7532C6FC9B194264A614B89FDAD607D7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:01Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"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": [ "266" ], - "x-ms-client-request-id": [ "502dc9a8-08cd-4eaa-98eb-6e56928902d6" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "6c37feb1-0ff3-4bfb-9bfb-7c2b3ddfbb74" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3233,36 +3779,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d675d6b0-757b-4f2c-9436-e02e36054c9a", "c267fc13-1cbc-4392-a40f-be128aae35c4" ], + "x-ms-original-request-ids": [ "3d8bf146-ea2e-430a-bd18-638b9ff21077", "e0ee735d-7a86-44b6-a08f-a8331696a85d", "13fd6cc0-182b-47a4-b061-bf20ab4eaaa5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "8935abb2-9c0f-4cc8-b61a-434f136e6035" ], - "x-ms-correlation-request-id": [ "8935abb2-9c0f-4cc8-b61a-434f136e6035" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112711Z:8935abb2-9c0f-4cc8-b61a-434f136e6035" ], + "x-ms-request-id": [ "737117ce-d0eb-456d-9d47-5247ca9c61fd" ], + "x-ms-correlation-request-id": [ "737117ce-d0eb-456d-9d47-5247ca9c61fd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012802Z:737117ce-d0eb-456d-9d47-5247ca9c61fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 448A6645D2D644089D305D0EDE828499 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00B0BE0FAAD24AF7BB1899F5938A4622 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "44b4b473-b0e1-476a-a99e-ffb10402a871" ], + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "49c1ad7f-0c25-4027-8a94-c068cd08c3fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3277,31 +3823,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "821cca14-6f4f-4e7a-89e1-3c4ba56ec145" ], + "x-ms-request-id": [ "f598a00e-b8d3-4189-a209-2f2ef338c884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d81347c7-840a-40e1-a6f0-978d350807c8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/380d8f4e-2c4a-479a-bf5f-e15308d90f0d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "87ff776c-02fe-446f-a970-d67a7496edfe" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112712Z:87ff776c-02fe-446f-a970-d67a7496edfe" ], + "x-ms-correlation-request-id": [ "e1762434-ff2e-4fc0-ac0a-5e5524936ef2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012803Z:e1762434-ff2e-4fc0-ac0a-5e5524936ef2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8411178EA2664D8492DCC1EF257BB073 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2082324368EB4B6C800430C7E9461425 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2e3858c2-901e-0050-14c7-53ac7b000000\\nTime:2025-11-12T11:27:12.2377747Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:5d019dee-001e-0075-1505-550b85000000\\nTime:2025-11-14T01:28:03.2209036Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3316,25 +3862,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DE6CEB6CFC\"" ], - "x-ms-request-id": [ "d409dd1f-310b-4720-b2dc-e1de4184661e" ], + "ETag": [ "\"0x8DE231D0E8B02CA\"" ], + "x-ms-request-id": [ "b9f67098-fbeb-4b14-aaee-7e1bcec12f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4fe84847-90d0-4647-89d8-3d211f3f0cfb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c8280d89-9099-4f4e-acc7-86a1a3c8d4f4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c4422ccf-5f9d-480b-b084-2e73c666a485" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112712Z:c4422ccf-5f9d-480b-b084-2e73c666a485" ], + "x-ms-correlation-request-id": [ "8cf8fcf0-6243-4625-83b8-6c63c3b97ea5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012803Z:8cf8fcf0-6243-4625-83b8-6c63c3b97ea5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E85544EACB4B4279AB6AB53C25D65DA2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E5A2EDE8C6C466997D51296943015DD Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "448" ], + "Content-Length": [ "440" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsflexjava112925-0000000\",\"name\":\"app-package-functionsflexjava112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000\",\"name\":\"app-package-functionsflexjavafqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -3345,8 +3891,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "269" ], - "x-ms-client-request-id": [ "b91a144c-dad2-4a32-87ba-22befd896fde" ], + "x-ms-unique-id": [ "286" ], + "x-ms-client-request-id": [ "01591dfb-d4be-4b22-96d3-e94cd7c81c2d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3361,36 +3907,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "73c2418e-0052-462c-aa32-e5d46e99b950", "be316b28-d301-4e33-8cfb-13983eab63a0" ], + "x-ms-original-request-ids": [ "dd343258-1120-4d7f-b3a5-9b9303c43bbf", "3d6343c1-3466-48e3-b508-63b1dc6fa0b1", "8425801e-2241-4956-9438-a24c01b21b17" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c5b24e96-df21-48c0-a054-c0367352e651" ], - "x-ms-correlation-request-id": [ "c5b24e96-df21-48c0-a054-c0367352e651" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112713Z:c5b24e96-df21-48c0-a054-c0367352e651" ], + "x-ms-request-id": [ "31e319aa-ce6e-4c74-a830-dc48f5c7d73c" ], + "x-ms-correlation-request-id": [ "31e319aa-ce6e-4c74-a830-dc48f5c7d73c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012804Z:31e319aa-ce6e-4c74-a830-dc48f5c7d73c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15E3A710457D4E56A14725B0E081CBDA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AD649FC7BDE48E1A781FF9550CEADD7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "01d83e2e-d12c-4b2a-ac7a-98b1483a7734" ], + "x-ms-unique-id": [ "287" ], + "x-ms-client-request-id": [ "c5af2bfb-d057-4b2a-b5f0-ff468f1ab0c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3405,23 +3951,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "208c8b88-6e17-4a82-b104-c45d4f84c510" ], + "x-ms-request-id": [ "b9f83bd8-25a2-445c-800c-e2347d006ed2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/0446e42d-b00c-430b-bc73-d856b6cfa203" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/399932c1-8e98-4632-a390-9436c80e5dd7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3dfbf0e0-a3e7-41a2-adc9-f5e9e14a5a8c" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T112714Z:3dfbf0e0-a3e7-41a2-adc9-f5e9e14a5a8c" ], + "x-ms-correlation-request-id": [ "a4315166-ee1b-444b-871c-59073165ac5a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012805Z:a4315166-ee1b-444b-871c-59073165ac5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EEB2234F70C0488F8DBC9F0A5AC90672 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9677C1482A8A4C2BB205D216994EEC68 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -3432,8 +3978,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "527fb990-b4ae-45fc-b025-a79afef62d96" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "d0c1f69c-e3c7-4bf4-a248-7a39c98e36a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3448,36 +3994,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "033cce19-058b-4ba1-b55b-74673547fdee", "9172312e-f3a8-45e5-b396-e9a52d9a9640" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5602a1bf-19b6-44d7-a33d-48f6bac95cc4" ], - "x-ms-correlation-request-id": [ "5602a1bf-19b6-44d7-a33d-48f6bac95cc4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112715Z:5602a1bf-19b6-44d7-a33d-48f6bac95cc4" ], + "x-ms-original-request-ids": [ "7b9df682-d790-4592-888a-7b2df5a631ef", "740d1783-5749-47da-a7a4-de9eca3de9e7", "ab13eb86-984e-4abe-8d4b-957c70ea6a6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "f21586d7-1326-4ad6-a5fd-79ed8cf243b8" ], + "x-ms-correlation-request-id": [ "f21586d7-1326-4ad6-a5fd-79ed8cf243b8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012806Z:f21586d7-1326-4ad6-a5fd-79ed8cf243b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E6FBFF0B6DB4BBFAFE880FAB331C45B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3816CB834FD044169248B15FE170F9AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "9f5a7f74-9970-42dc-a323-f8978b9fef5e" ], + "x-ms-unique-id": [ "289" ], + "x-ms-client-request-id": [ "4758d9fc-cb19-442d-b807-ed361d9bcfc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3492,30 +4038,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d1d7c6ea-6399-4cdf-8fe9-a44e20b9cbd6" ], + "x-ms-request-id": [ "3d3c7c64-a353-491f-96a8-d885f8f4ae02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9158789e-ed52-4cb2-8d2a-49d0c692e714" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/48a1ab43-616d-4d32-b9b8-31c7cd5c3156" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "719a9a6a-e532-4b93-862b-ad080c35a88e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112715Z:719a9a6a-e532-4b93-862b-ad080c35a88e" ], + "x-ms-correlation-request-id": [ "bd161410-f69f-479e-8157-2ef464fdc070" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012807Z:bd161410-f69f-479e-8157-2ef464fdc070" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E72E937413374F2AA7C0272240A2AD22 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75847F3424C444AF9686E2D78A902785 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Java-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Java-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Java-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Java-fqti?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": { @@ -3535,36 +4081,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/eastasia/0c5cf6bd-abfd-4d87-afb0-ab2d4ee13bf2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/620bdefe-0da1-4cb8-9628-f8eb57ac278e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "65e6bb62-6bb5-4d84-a245-262c4ff8a62a" ], - "x-ms-correlation-request-id": [ "65e6bb62-6bb5-4d84-a245-262c4ff8a62a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112731Z:65e6bb62-6bb5-4d84-a245-262c4ff8a62a" ], + "x-ms-request-id": [ "ec74e4a2-89f1-4197-a639-5b945bee4351" ], + "x-ms-correlation-request-id": [ "ec74e4a2-89f1-4197-a639-5b945bee4351" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012819Z:ec74e4a2-89f1-4197-a639-5b945bee4351" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5690FA3D1B8247789A2861C33F891A7D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 197006D7E1B14F098B4B16518CA6144B Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1614" ], + "Content-Length": [ "1600" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e036188-0000-0200-0000-69146f220000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Java-112925\",\r\n \"name\": \"Functions-Flex-Java-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-112925\",\r\n \"AppId\": \"522e7f15-b24b-4f68-920f-130c48d314ea\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e653ce75-d374-49fd-a265-275d62e89fb1\",\r\n \"ConnectionString\": \"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\",\r\n \"Name\": \"Functions-Flex-Java-112925\",\r\n \"CreationDate\": \"2025-11-12T11:27:18.2695179+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-112925_522e7f15-b24b-4f68-920f-130c48d314ea_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-112925-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\": \"\\\"78030586-0000-0200-0000-691685b30000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Java-fqti\",\r\n \"name\": \"Functions-Flex-Java-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-fqti\",\r\n \"AppId\": \"506250a4-0ecc-4d16-8014-fb7524d4703c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5f545946-1221-4899-8409-2baa332ca728\",\r\n \"ConnectionString\": \"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\",\r\n \"Name\": \"Functions-Flex-Java-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:28:08.7465952+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-fqti_506250a4-0ecc-4d16-8014-fb7524d4703c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?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://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1977" ] + "Content-Length": [ "1965" ] } }, "Response": { @@ -3572,39 +4118,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C757158E20\"" ], + "ETag": [ "\"1DC5505F9CC034B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "abe14775-0732-4b83-8016-a9e34ac3a1cd" ], + "x-ms-request-id": [ "385f8dc9-0159-4cce-bde4-7c10d50533d1" ], "X-AspNet-Version": [ "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/4b95ec96-34ac-4691-9f48-337857ccba79" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7717e40e-8e0e-4350-9fcc-f5095361222a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "abd1e0c9-2500-49b1-a7e8-491a8c179555" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112755Z:abd1e0c9-2500-49b1-a7e8-491a8c179555" ], + "x-ms-correlation-request-id": [ "eb9cec73-a504-40ff-96b6-75f71c3eae91" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012848Z:eb9cec73-a504-40ff-96b6-75f71c3eae91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B426FEDC8BE498E9645D91708DAB113 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:27:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:27:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80813871DF954C52BA631C52EC0F8019 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:28:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9499" ], + "Content-Length": [ "9454" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:33.3966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:25.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "f721d911-d5a9-4e84-8b5e-319c54374418" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "2b2b1df3-ed7a-4099-be53-c4918351338c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3618,38 +4164,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C763EF59A0\"" ], + "ETag": [ "\"1DC550606346255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c69fb685-66e5-4ef2-a550-da0a1ac1cff8" ], + "x-ms-request-id": [ "36d25d5e-7ef1-4943-9239-84b12102ba7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68a91834-ecac-4f23-8c53-a9376e6e00ad" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112826Z:68a91834-ecac-4f23-8c53-a9376e6e00ad" ], + "x-ms-correlation-request-id": [ "b2c68491-8ebd-48d5-8a83-e0ae5aa1a8ec" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012918Z:b2c68491-8ebd-48d5-8a83-e0ae5aa1a8ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C1B5C7657D0426186C9F99E120EF63F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F6BB967D71C4494BB4FFC14E7489708 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9471" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "b19e9aaa-a679-4a8e-8ed9-5478671a8f7f" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "1ba7d520-8442-4712-89b8-6f9a4b26aa2b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3664,38 +4210,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C763EF59A0\"" ], + "ETag": [ "\"1DC550606346255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b359ade-feb0-47ee-a3ce-18f3b9c56701" ], + "x-ms-request-id": [ "933e1ce6-25ff-42e2-8ea4-8f5f4ce913a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68268253-daa7-418d-b748-cd5b5e8ba6c1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112826Z:68268253-daa7-418d-b748-cd5b5e8ba6c1" ], + "x-ms-correlation-request-id": [ "80aa1efd-887e-4c88-8123-dcdef47da30a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012918Z:80aa1efd-887e-4c88-8123-dcdef47da30a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40B5BE4164B4478FB705BF12150C79CF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2FAB67929E514BFA8391436EC15AFE78 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9471" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "8bb3fc2c-effa-41ee-9480-d2198e0111d7" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "86766083-ec17-42a8-a286-4245b20585f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3711,36 +4257,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40eac14d-08c7-46ea-b7de-3a15059e4b73" ], + "x-ms-request-id": [ "4847b85a-c19c-4f92-ad3f-ebadd154cbf9" ], "X-AspNet-Version": [ "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/9bb227d1-1558-4a00-9bc9-de995e2da31b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8ad5054d-ea79-4c85-be35-5cf232162b22" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "94b49612-9914-41e7-8db8-8f756ca6a75e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112826Z:94b49612-9914-41e7-8db8-8f756ca6a75e" ], + "x-ms-correlation-request-id": [ "40f20f34-6499-46d4-9c87-f3d9940ddc7a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012919Z:40f20f34-6499-46d4-9c87-f3d9940ddc7a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D4FD1BFF8D84262B59205CAC0EB35A4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26AD54431E424799ABECE8DC213C2B6F Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "bb6d7589-1917-4366-a1ee-862f4db59d20" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "ad760819-19a1-4657-b408-3679c229fce2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3756,37 +4302,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e38f86d3-9cbf-4e64-8325-002bfd02da92" ], + "x-ms-request-id": [ "10f7e096-ee65-4fbd-9704-42310c65e283" ], "X-AspNet-Version": [ "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/824d93c3-d005-409c-a843-f0b58aa43881" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3c9c885b-1360-4350-9062-df9f2b2c5766" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ee048778-635c-40f1-8b4e-65d8e97eebaa" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112827Z:ee048778-635c-40f1-8b4e-65d8e97eebaa" ], + "x-ms-correlation-request-id": [ "8abf6670-990b-409f-920d-7ff749bedaea" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012919Z:8abf6670-990b-409f-920d-7ff749bedaea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE0226229F7545598217B0ED7F6FF473 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 028C961C7F744A3CB4CF068B469CB0DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4155" ], + "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web\",\"name\":\"Functions-Flex-Java-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "279" ], - "x-ms-client-request-id": [ "1577f64f-e4fb-4b07-8031-ee110ca08e72" ], + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "e00df3e1-f6ea-497e-82e0-246f3b4074f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3802,36 +4348,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0666b0d4-9ea1-4ccb-8ea3-277ddf784367" ], + "x-ms-request-id": [ "78c32024-c9ba-4a26-a896-2670fa3d9c57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c3f80d2-a58f-4fc7-b8d5-4f67880835b4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112827Z:9c3f80d2-a58f-4fc7-b8d5-4f67880835b4" ], + "x-ms-correlation-request-id": [ "8afc2861-3e0a-4456-b0ee-23c850b9ce46" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012919Z:8afc2861-3e0a-4456-b0ee-23c850b9ce46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D19977FE84404D6D8E82AA597813ADDC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 940BABD464174391AAE366A54AB37D6C Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "280" ], - "x-ms-client-request-id": [ "831c44a1-64b6-4186-a027-91f8a0de9039" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "283da907-072b-459b-9576-41525c598b5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3847,36 +4393,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1862d797-02a2-4400-8917-447d1e680b61" ], + "x-ms-request-id": [ "ad170753-c884-4db1-b674-85c868747b76" ], "X-AspNet-Version": [ "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/03520a8a-5be1-41c9-812a-fc4646a1223d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/33bdc9ad-ba08-4f24-87a6-4c17aff3bf4a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "560523f8-fc28-40b4-aa18-cae0e0379b2b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112827Z:560523f8-fc28-40b4-aa18-cae0e0379b2b" ], + "x-ms-correlation-request-id": [ "7dc00107-8e81-49d5-86a8-eeae409eacd5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012920Z:7dc00107-8e81-49d5-86a8-eeae409eacd5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74D064F9158A40028D7D09BB04BABC88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 382773506087492F867B30F6AD21A81F Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "20fbb610-d280-4dc7-89c0-cace7ba36617" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "750f470f-1a73-4258-99d5-823dbfda5128" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3891,38 +4437,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C763EF59A0\"" ], + "ETag": [ "\"1DC550606346255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7afc645f-89e7-4df2-9300-2c237b5d12ce" ], + "x-ms-request-id": [ "93fe8f5e-6c6d-4205-b342-ab411ecd42a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e89e386d-77d2-4753-a4af-df2315f1b25c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112828Z:e89e386d-77d2-4753-a4af-df2315f1b25c" ], + "x-ms-correlation-request-id": [ "f7ce4567-492f-437c-bfcc-a5aca7514505" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012921Z:f7ce4567-492f-437c-bfcc-a5aca7514505" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AF5D6B4687FE4C80A8C7CC1EA9CD3573 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 942D3EF1B8024CB2BB8AB99E1E894281 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9471" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Java-112925\",\"repositorySiteName\":\"Functions-Flex-Java-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112925.azurewebsites.net\",\"functions-flex-java-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:27:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsflexjava112925-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-112925\",\"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-112925\\\\$Functions-Flex-Java-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-java-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "24b3f675-eba9-48aa-8870-ebb7037f539a" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "6fff651d-ffac-4631-b67d-eccb83fa388e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3938,36 +4484,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e892fce-9a59-4232-8d6d-b1c5a5cad276" ], + "x-ms-request-id": [ "6c3980eb-dbb8-4fcb-9b6a-8fbe48300371" ], "X-AspNet-Version": [ "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/2178cb08-d3db-4d93-b719-c9276c8c6285" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c251d2d8-18cf-4090-9f75-2dcf0c609ec5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "961495b8-8bdf-4326-9da7-e7b75883f669" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112828Z:961495b8-8bdf-4326-9da7-e7b75883f669" ], + "x-ms-correlation-request-id": [ "9102fa83-2b27-4ee8-a9b9-2ff1443698b1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012921Z:9102fa83-2b27-4ee8-a9b9-2ff1443698b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48076545E67845FAB0DF2E517BE9DB88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC39443BABD24B5EA8BDA4914DF32039 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "283" ], - "x-ms-client-request-id": [ "4510cec2-02d9-40fb-86f4-46a2f1936e53" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "29d75209-36ed-4d53-b95b-f32dabd8d957" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3983,39 +4529,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "845d6fee-ef80-4a14-be4c-33c5249c00dc" ], + "x-ms-request-id": [ "b858b919-f191-44c2-b95e-61f9173f951d" ], "X-AspNet-Version": [ "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/50e06bcc-ead8-4785-91fa-32fb1f3ec378" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "fa5e35c6-f754-405e-83ee-9853fec85f86" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112829Z:fa5e35c6-f754-405e-83ee-9853fec85f86" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8b3f7afc-d357-43a1-9a4d-2ebfc28ef1f5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "94071a69-ae2b-418d-8c3f-ea81d13b2bc0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012922Z:94071a69-ae2b-418d-8c3f-ea81d13b2bc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54967147E4EE4D0D96605E9C12CA3655 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C01D65E797154643BB4F2F0A43DB16CD Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4155" ], + "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925/config/web\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web\",\"name\":\"Functions-Flex-Java-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Java-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "2cba2d2a-5e0a-497a-acd0-93858f9cb077" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "8d83f287-5463-4dbc-825b-3a6130ee83ba" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -4028,40 +4574,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C763EF59A0\"" ], + "ETag": [ "\"1DC550606346255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f7b6d87-6cdd-4542-9006-d4c0ba4db3ab" ], + "x-ms-request-id": [ "1456890d-b33b-4f7f-be77-38725b066670" ], "X-AspNet-Version": [ "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/1ed4e340-8a39-4965-9713-ebc250b11c3e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "80f970a5-7026-4538-b0cc-0cb5de7905ce" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112843Z:80f970a5-7026-4538-b0cc-0cb5de7905ce" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e8a7fabb-eb14-4511-926d-2b381f09f708" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012922Z:e8a7fabb-eb14-4511-926d-2b381f09f708" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0181418F294B4EB087E843105BE7E97B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:29Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 776BE8B4B68D420E8FE70FEA3EE11E8D Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:22 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9436" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "597c9cc2-3b8e-4c72-8b11-7bfbe0da6ca6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] } }, "Response": { @@ -4070,39 +4621,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22f51e2e-7d2b-4dab-8f89-fe5c3de906ba" ], + "x-ms-request-id": [ "f6dcbe28-30b2-4adb-a999-8dc279945424" ], "X-AspNet-Version": [ "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/805fc3a2-1f7f-450b-a59d-8aed77716969" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d4b64ac4-f78d-476b-9b4d-0965f055aa37" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112844Z:d4b64ac4-f78d-476b-9b4d-0965f055aa37" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1c029d24-38a7-432b-ab62-e947995196bb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b8ac49a2-5894-4f21-8e61-5e360a587e99" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012923Z:b8ac49a2-5894-4f21-8e61-5e360a587e99" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7161606FA19E472984881316507830FC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:43Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C363C20A73A948DE81E9CB5EB472FD9D Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "303" ], + "x-ms-client-request-id": [ "a76ce128-0c20-4109-94d3-18074d520ccf" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -4111,42 +4666,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74b57ad0-b859-4848-83a6-9eedf1578708" ], + "x-ms-request-id": [ "818fb1d5-fba4-4273-9b89-b2528a29a1eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b1b745d6-1cb1-42b0-bef1-3614faa0bbad" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1fa4e502-0d45-4536-9c03-28a7adeffb5f" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T112848Z:1fa4e502-0d45-4536-9c03-28a7adeffb5f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1ac0be6f-098b-422d-a2bb-70ba0169ead9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9fa4d6a7-0e7f-4116-b807-f0c4561f59a6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012923Z:9fa4d6a7-0e7f-4116-b807-f0c4561f59a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF0648A950F24720843A1DB40B780C92 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:28:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:28:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48DF0CAD7AFF474E8EB0CB671890D062 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web\",\"name\":\"Functions-Flex-Java-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "6c24137a-65d2-415e-aaa4-78622bc4f027" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "304" ], + "x-ms-client-request-id": [ "8d5f6a91-d1d6-4502-b721-21ed27c62928" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -4157,41 +4712,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b42c811a-5ea5-406c-8a53-1993eb077469" ], + "x-ms-request-id": [ "67b75c44-5721-43b4-abc8-9d403c4768a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e7a6efaa-a01c-4bdc-a32c-65342d201d08" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112919Z:e7a6efaa-a01c-4bdc-a32c-65342d201d08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1a9aa4a7-8f5f-4955-ba7b-9b3d96140504" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012923Z:1a9aa4a7-8f5f-4955-ba7b-9b3d96140504" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92AE5419926548AF946FEE833EBAA422 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99DDB487FD1B4CE0B407B2A55BBF4DCE Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "289" ], - "x-ms-client-request-id": [ "6c24137a-65d2-415e-aaa4-78622bc4f027" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "9af87438-8371-4aa0-b225-0ef313e78012" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -4201,37 +4756,210 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550606346255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d03fdac9-b9fd-4275-8c2c-6b9ee3e8e6a2" ], + "x-ms-request-id": [ "7447b18f-c35e-42d1-9eea-8e5cd97b57cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "32e051d1-3307-4e46-8630-c8fccad41e95" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112919Z:32e051d1-3307-4e46-8630-c8fccad41e95" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/45183700-6f32-4777-b45b-20c8f9a4ea4b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "844c766e-e978-482d-94ba-2204c75efb72" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012943Z:844c766e-e978-482d-94ba-2204c75efb72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3795F8673D1B49EBA6602A0C0997323F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9D34BA467DE40FF9C7BE14A2110F383 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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-Flex-PowerShell-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "5daf9ad6-cb2a-44e0-963a-0194e7f16001" ], + }, + "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": [ "8e2ba006-83aa-4b04-85fb-078592791671" ], + "X-AspNet-Version": [ "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/964a3876-2d89-4c35-b760-6d09df79fc41" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1cc66e2e-7df0-4a57-b417-43c9a9db0a51" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T012944Z:1cc66e2e-7df0-4a57-b417-43c9a9db0a51" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 21D55BA35C964F70AE3B48F7D7762F50 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:44 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "9385f96a-0457-4253-872f-814837d2676a" ], + "X-AspNet-Version": [ "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/0920d994-8db1-4242-8e4f-9527149cd933" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "9ccb501b-a761-4e35-932f-cb85e8b4b597" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T012950Z:9ccb501b-a761-4e35-932f-cb85e8b4b597" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 48BAC3B94969435EBE227B7C2039A40E Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:29:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1907" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"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-14T01:29:50.0433333\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "3880a80e-5514-46aa-8824-0ee2c0c147c3" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f8166bf0-baa7-4972-b3fa-63d9cccc4303" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f7a79da9-3e8c-4d4c-831f-90c04be25d14" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013021Z:f7a79da9-3e8c-4d4c-831f-90c04be25d14" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B2996820DE842DD8D2BC5747BFC6AB1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "310" ], + "x-ms-client-request-id": [ "3880a80e-5514-46aa-8824-0ee2c0c147c3" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3def2cba-3e80-4e9a-9b80-b627d4849263" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9197f1dc-9819-43a9-b4e4-2b5d869f5195" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013021Z:9197f1dc-9819-43a9-b4e4-2b5d869f5195" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3B78E99B2BF34AFC9E434649A2FB03A4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"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": [ "311" ], + "x-ms-client-request-id": [ "027df46f-9cd0-44bc-9710-5dc335dac463" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4246,36 +4974,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0d46f7ae-3971-4c92-b115-14b03d1ce809", "71046f51-dc35-4279-9d00-cb92834b901e" ], + "x-ms-original-request-ids": [ "9a043812-46c2-40bb-8832-d4f027a0efb0", "4b3a00b1-97fd-4db4-bd05-f5bb181cd30e", "4a6d347d-64b1-48a6-81c8-2ba323528f48" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "8baaf80c-5b27-4adf-bdd3-99e009d3fd43" ], - "x-ms-correlation-request-id": [ "8baaf80c-5b27-4adf-bdd3-99e009d3fd43" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112920Z:8baaf80c-5b27-4adf-bdd3-99e009d3fd43" ], + "x-ms-request-id": [ "45c48076-a47c-4d97-9fce-3bd2dbd7ba79" ], + "x-ms-correlation-request-id": [ "45c48076-a47c-4d97-9fce-3bd2dbd7ba79" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013022Z:45c48076-a47c-4d97-9fce-3bd2dbd7ba79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B45F4F00B13B4AACA70D3B0826208700 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E23B60024FC741CB984D94D709DA65C9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "291" ], - "x-ms-client-request-id": [ "b5422ef2-98b2-4447-bdf2-02c1c07b1de9" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "1f6c8d3c-127a-4c69-a987-efdad68adc29" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4290,31 +5018,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3c85f68b-ba06-45d5-a2e4-69ebc1d98edf" ], + "x-ms-request-id": [ "cb0d67bb-e7d7-49e7-9a51-7ac7e9c8715a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/787b1ec1-656e-42f6-ac28-b80c32742061" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/299ca466-bdc2-45d3-a07e-f1191fb83c62" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c11a37c9-0124-469b-9459-b5abe6beb327" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T112921Z:c11a37c9-0124-469b-9459-b5abe6beb327" ], + "x-ms-correlation-request-id": [ "ae815717-9077-4881-b59c-d3f8fffa8466" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013023Z:ae815717-9077-4881-b59c-d3f8fffa8466" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 409BB73105584606B1AC7C742033C2C6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:20Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4649FDABA52A44F4912EF0EFD615A03F Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:cbf64c6b-201e-0000-19c7-53db28000000\\nTime:2025-11-12T11:29:20.9459673Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:91662b16-e01e-0038-4806-55caeb000000\\nTime:2025-11-14T01:30:23.0280190Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -4329,25 +5057,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DEB9BE6E8E\"" ], - "x-ms-request-id": [ "e05a7747-d52f-40be-9f39-ca1993da17cd" ], + "ETag": [ "\"0x8DE231D61F1934E\"" ], + "x-ms-request-id": [ "062fd228-bc6a-4c49-8a00-1c30ec045637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9cb7cadd-303e-477a-a9ef-5a6e8b8cba3e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2e2b99c1-8861-4e7f-aaff-8a0eef8f6fdb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a0e9f74b-b98e-4cf3-a6f5-4b1a83b6b1cf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112921Z:a0e9f74b-b98e-4cf3-a6f5-4b1a83b6b1cf" ], + "x-ms-correlation-request-id": [ "8d3f7e8b-4357-4c36-9266-d3ec9e7f97a2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013023Z:8d3f7e8b-4357-4c36-9266-d3ec9e7f97a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 731B095AC6B542A88BF5A96D3F0EA361 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3FD7573AAD7F42248B79B7AB7CA6369C Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "465" ], + "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionsflexpowershell112925-0000000\",\"name\":\"app-package-functionsflexpowershell112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000\",\"name\":\"app-package-functionsflexpowershellfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -4358,8 +5086,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "48019648-aa07-4a57-a9b4-7024ba7d1bd4" ], + "x-ms-unique-id": [ "314" ], + "x-ms-client-request-id": [ "d880d140-2740-4193-aaa0-bbd75571c00d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4374,36 +5102,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0b7747ef-6629-49f3-92de-60c93e966e52", "80eecbac-d845-4ca2-ac0b-d81e178075f7" ], + "x-ms-original-request-ids": [ "4b76abf0-751f-450f-b75f-d5459c1c53ac", "2a3616fa-efd7-4f3c-8e3c-fef297fcf2e1", "178f9b05-f25c-4442-a43a-8760e714c599" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6aae5d5d-ad46-4dc2-81aa-6428d6411083" ], - "x-ms-correlation-request-id": [ "6aae5d5d-ad46-4dc2-81aa-6428d6411083" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112922Z:6aae5d5d-ad46-4dc2-81aa-6428d6411083" ], + "x-ms-request-id": [ "a2b3995c-37e9-40c3-81be-0a8d65fe4e15" ], + "x-ms-correlation-request-id": [ "a2b3995c-37e9-40c3-81be-0a8d65fe4e15" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013024Z:a2b3995c-37e9-40c3-81be-0a8d65fe4e15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B0A5D8C13664B0F82453C88BA4BD31C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA3D71E28F274127AB3BEC407AF560FC Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "85f0df33-b0f7-4bfd-b1c7-00744e225ed8" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "5d368b09-d7cc-48f3-b43d-3aabda1a7afa" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4418,23 +5146,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cd11afdf-a7f9-4397-b782-a821f102c3d6" ], + "x-ms-request-id": [ "77f6cdb5-1e21-4ebc-8bb3-63e827fc57ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6db30402-9302-4825-8b81-59ebb87fcc0d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6e84f5c4-246e-47eb-88ea-279437d855ab" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f2ce24d4-f101-496e-847e-29ebc23776f1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112923Z:f2ce24d4-f101-496e-847e-29ebc23776f1" ], + "x-ms-correlation-request-id": [ "3c12ddda-89e6-4048-b1e0-1e86512c23b7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013025Z:3c12ddda-89e6-4048-b1e0-1e86512c23b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B484D662126148EA95B018AF80C8729F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 598B36D09ED54C179D656ACE81E67A47 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:24Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -4445,8 +5173,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "829afc6a-91c4-4129-bf20-00ec10799e97" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "ec510692-7443-483a-b12b-c2ae46658c42" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4461,36 +5189,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b14710eb-5274-4e20-89bc-d6ca6dbe2a50", "f3ed5752-1f9e-43a0-834b-53f1301360b4" ], + "x-ms-original-request-ids": [ "e608e429-e134-4be8-b803-05514666d6ad", "7700a4ec-5566-497b-8d03-d8460e8ca15e", "7a91a9dc-9de1-4ad0-b8b8-6ce6958279e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f432e8ed-ed14-45cf-ba0c-41cf3befc43f" ], - "x-ms-correlation-request-id": [ "f432e8ed-ed14-45cf-ba0c-41cf3befc43f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112924Z:f432e8ed-ed14-45cf-ba0c-41cf3befc43f" ], + "x-ms-request-id": [ "722b12ec-2a2e-4a2f-bff3-e561154f1ebf" ], + "x-ms-correlation-request-id": [ "722b12ec-2a2e-4a2f-bff3-e561154f1ebf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013025Z:722b12ec-2a2e-4a2f-bff3-e561154f1ebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FB523C4D2FB4E33B81DC77DFCFF8BF8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 757023E2449642E2A0DAA6461935D916 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "7cfbc563-ff50-4499-a9ca-405fdc9adcd1" ], + "x-ms-unique-id": [ "317" ], + "x-ms-client-request-id": [ "3d87b9fe-e0ca-483e-b075-109a76077d60" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4505,30 +5233,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b5ffd98b-9e89-4759-9ee5-35531639c1e9" ], + "x-ms-request-id": [ "f323744d-c101-4d50-956a-67bab60dd45b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/92569da7-8037-40ca-83d0-44d6ed67f6f2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cd1961be-1495-4183-9236-2bb944b9ce82" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e9e7e4db-f211-441f-b7cb-ea5dda793d44" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T112924Z:e9e7e4db-f211-441f-b7cb-ea5dda793d44" ], + "x-ms-correlation-request-id": [ "70a1de1a-93fa-456d-a0af-7235f11f2d6f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013026Z:70a1de1a-93fa-456d-a0af-7235f11f2d6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0A1FC69300A42AF85C1EB58489265B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 448726689D4D4ED6A4610A2749487211 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-fqti?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": { @@ -4548,36 +5276,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/eastasia/1dc21d5a-3a26-4857-acd2-53beb7c09044" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/60a210ca-c3ee-4225-9f66-1128c5d6b2ef" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "d1042ce7-1d06-42bc-8a30-b0dceff90e17" ], - "x-ms-correlation-request-id": [ "d1042ce7-1d06-42bc-8a30-b0dceff90e17" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T112942Z:d1042ce7-1d06-42bc-8a30-b0dceff90e17" ], + "x-ms-request-id": [ "79d4ee36-a571-4437-88b4-ecdf499870ba" ], + "x-ms-correlation-request-id": [ "79d4ee36-a571-4437-88b4-ecdf499870ba" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013039Z:79d4ee36-a571-4437-88b4-ecdf499870ba" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2C8CC24F1CB43D483199680C18CB42E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:29:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FE5C91A9FDE45F4A9F882C15330EDD8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:30:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1650" ], + "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03698b-0000-0200-0000-69146fa50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-PowerShell-112925\",\r\n \"name\": \"Functions-Flex-PowerShell-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-112925\",\r\n \"AppId\": \"7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8026b150-b89d-4d44-81af-aa397315fd16\",\r\n \"ConnectionString\": \"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\r\n \"Name\": \"Functions-Flex-PowerShell-112925\",\r\n \"CreationDate\": \"2025-11-12T11:29:26.9007368+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-112925_7ff6c5cf-b63f-4a5d-a007-50d204c8dae4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-112925-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\": \"\\\"78036d8f-0000-0200-0000-6916863e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-PowerShell-fqti\",\r\n \"name\": \"Functions-Flex-PowerShell-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-fqti\",\r\n \"AppId\": \"f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5e7b4cd9-73cb-403a-af0a-64ff32c02c12\",\r\n \"ConnectionString\": \"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\r\n \"Name\": \"Functions-Flex-PowerShell-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:30:28.5375832+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-fqti_f22e7b45-3b1f-44aa-bf06-d4dd323abd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2005" ] + "Content-Length": [ "1996" ] } }, "Response": { @@ -4585,39 +5313,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7A50B8AEB\"" ], + "ETag": [ "\"1DC55064A84FDAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9130a714-3f60-4d17-9e1c-7e3e4eeb7e17" ], + "x-ms-request-id": [ "ac0c848f-d372-4ae7-8e59-90daf2ae3535" ], "X-AspNet-Version": [ "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/38379bbe-69e8-458d-a9d6-ccabd0bbb902" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ecd413cf-f597-45bc-8915-3c89605a073c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "ba1f07ec-c969-457e-b9be-f16ceea9df69" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113006Z:ba1f07ec-c969-457e-b9be-f16ceea9df69" ], + "x-ms-correlation-request-id": [ "292a5a73-8464-4c39-9e59-309f59c3eceb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013103Z:292a5a73-8464-4c39-9e59-309f59c3eceb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A54FFE7EC90640F594505B0AE67E5828 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:29:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE8270B390964C7AA583AD2155F70AFE Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9596" ], + "Content-Length": [ "9562" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:29:44.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:30:41.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "e4aac6b7-f51f-4a6e-8d9a-05cae1f8dc9e" ], + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "5b671b2e-a57f-43b6-a915-ec9262df61d1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4631,38 +5359,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7B1A12E80\"" ], + "ETag": [ "\"1DC550656B15820\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16470c61-c7cb-432a-9dd2-f2d186790001" ], + "x-ms-request-id": [ "4928cd7d-318a-46f5-894e-34719cf42c48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c3469a9d-6829-466f-b166-b60e1e37dde7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113036Z:c3469a9d-6829-466f-b166-b60e1e37dde7" ], + "x-ms-correlation-request-id": [ "3876212b-056e-41c6-a0cc-60b33c4f81d4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013133Z:3876212b-056e-41c6-a0cc-60b33c4f81d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C22C00B3DEDE4746B38C5F0EFE35E228 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EED8A7A3BFB4F00A7531CA1476949C5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9572" ], + "Content-Length": [ "9534" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:30:05.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "a67af1d4-9c36-4b80-9c7f-decf7f520756" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "5f68519f-1d4c-4390-a1b7-f7546fadb97d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4677,38 +5405,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7B1A12E80\"" ], + "ETag": [ "\"1DC550656B15820\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e89734b-77dc-4025-8412-4c9c6a681907" ], + "x-ms-request-id": [ "10f25440-cf24-496f-9048-1fe14b05de6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "900b046c-8aa8-4487-914c-cf59a2b38599" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113036Z:900b046c-8aa8-4487-914c-cf59a2b38599" ], + "x-ms-correlation-request-id": [ "a752eda6-f734-419e-88fe-59213ef18320" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013134Z:a752eda6-f734-419e-88fe-59213ef18320" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B71FAD054FA548809C03AB61E6AB522B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0261831CDDB4F3AA4818D372C733D34 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9572" ], + "Content-Length": [ "9534" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:30:05.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "301" ], - "x-ms-client-request-id": [ "896f01a3-a91c-49df-8bd3-533bd0e9f452" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "8735abaa-3fc1-42fe-a0e8-95a60cdda817" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4724,36 +5452,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b622ead6-f2aa-484e-9b98-0b381238f43f" ], + "x-ms-request-id": [ "f4c5af65-3bb0-443e-bea2-77ec9dbb4865" ], "X-AspNet-Version": [ "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/823c263e-8f5a-4a0c-8d73-e936f22f523c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ea4764c2-0201-48c9-8a48-a941c18e3aee" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f5450555-5677-4d98-9116-8d464f9869fe" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113037Z:f5450555-5677-4d98-9116-8d464f9869fe" ], + "x-ms-correlation-request-id": [ "80b46bb2-59c4-4181-8a55-f00a3b01589c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013134Z:80b46bb2-59c4-4181-8a55-f00a3b01589c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8044BD99E4374964B034378EF865A105 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D96D1A996E447A3B78267E50B48A698 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1027" ], + "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "505343ef-2ed1-4c0d-b893-433828f00f11" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "92ca14db-72ec-4dc4-bd75-ba9b3e3f66db" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4769,37 +5497,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcf74470-21a5-49ed-943a-1de6cab670b5" ], + "x-ms-request-id": [ "892742aa-44bd-4e7a-9e7f-909bb418ef3d" ], "X-AspNet-Version": [ "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/1807a281-37f2-4abe-a903-e209b8b7e1e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f62d72ee-09f3-4053-97c5-1fb599100c0d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "94ec6ed6-ce18-4e2e-8ca0-77484a63ce9c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113037Z:94ec6ed6-ce18-4e2e-8ca0-77484a63ce9c" ], + "x-ms-correlation-request-id": [ "a9daeb2e-c8dd-419a-882d-8771a5c65f05" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013134Z:a9daeb2e-c8dd-419a-882d-8771a5c65f05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DDDF2827AA14028A154951FE7FFFC32 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04E0F4F07FDA487DBC0105CFBC71D6F0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4167" ], + "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "303" ], - "x-ms-client-request-id": [ "7ef92e45-4729-462f-9db6-8b07d8494b6d" ], + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "0c21aa43-d3e1-4948-8491-c0bf3ae0f80d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4815,36 +5543,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43837490-7383-470d-8868-c961926445ff" ], + "x-ms-request-id": [ "32f4d6dc-0664-486a-b0cc-238b6189b6ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "10a73cd8-d4b9-46b1-ae27-c35b0312abd8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113038Z:10a73cd8-d4b9-46b1-ae27-c35b0312abd8" ], + "x-ms-correlation-request-id": [ "f24416cc-399b-4606-86ae-5abe71ad4839" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013135Z:f24416cc-399b-4606-86ae-5abe71ad4839" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4834F9D5B864B76886452076EB0FA57 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAFE0534DD9F4103AA2C9C7B76B6F729 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "304" ], - "x-ms-client-request-id": [ "2681d8a5-b486-4913-a52a-05b64ddaf273" ], + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "44f7386f-88f0-4173-9486-5a7d734019ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4860,36 +5588,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45b7c298-f6b2-4314-b757-b6e0c36de5b9" ], + "x-ms-request-id": [ "2da03ac5-9aec-4a8a-8993-6c39a9294fc8" ], "X-AspNet-Version": [ "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/5628f496-9d84-4cef-a45d-85e4c86c88a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2785931d-187d-4ef5-9ce4-2d2d9e6dec32" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e63d7880-c7b0-4eee-a01a-a512bcccbd9f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113038Z:e63d7880-c7b0-4eee-a01a-a512bcccbd9f" ], + "x-ms-correlation-request-id": [ "aa349a3f-d895-4bf9-9f7c-ed3049d7899b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013135Z:aa349a3f-d895-4bf9-9f7c-ed3049d7899b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 000BB2CEC1FE451B9C771D85BC956240 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF9A9B17F2024D37B49E6FBA766DF1EF Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1027" ], + "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "305" ], - "x-ms-client-request-id": [ "9dce33ce-bb0a-451d-a842-463d62656dec" ], + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "58df56a5-41c7-459e-9234-ad1b9d595f97" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4904,38 +5632,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7B1A12E80\"" ], + "ETag": [ "\"1DC550656B15820\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ee4f825-e2ff-4161-8e17-f737846d8dd0" ], + "x-ms-request-id": [ "59a63504-731b-44cf-a8a2-d1672c3ebb4c" ], "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": [ "b867559c-704d-427d-8d7e-3debf68eefe3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113039Z:b867559c-704d-427d-8d7e-3debf68eefe3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c0354bd9-7fe4-461c-8c7f-79bdd3c8b1d5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013137Z:c0354bd9-7fe4-461c-8c7f-79bdd3c8b1d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C37AB29F468F4AF3A8CCC162EA418414 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81C8E0E0E27F47B9A90CF02E89BB490A Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9572" ], + "Content-Length": [ "9534" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-PowerShell-112925\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112925.azurewebsites.net\",\"functions-flex-powershell-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:30:05.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionsflexpowershell112925-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-112925\",\"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-112925\\\\$Functions-Flex-PowerShell-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-powershell-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "306" ], - "x-ms-client-request-id": [ "a56b24d6-ad4b-446d-b31e-bdae20010447" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "c4b032cc-fc51-4fdf-b628-bed12679f9cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4951,36 +5679,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cfe7a640-edba-4131-a747-ac25647c49c0" ], + "x-ms-request-id": [ "dd2edf4a-ca5c-4a4a-a546-39168309c73f" ], "X-AspNet-Version": [ "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/be145e3d-256e-40b7-9041-53af058ca354" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f05f5052-0354-4cba-a7bd-147c08955988" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "579107ee-5d22-448d-81d9-88eefe16be1e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113039Z:579107ee-5d22-448d-81d9-88eefe16be1e" ], + "x-ms-correlation-request-id": [ "4ad2fb12-06c8-43c7-8c98-21a60040338a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013137Z:4ad2fb12-06c8-43c7-8c98-21a60040338a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D280C55574B42A5BBF551D7F6ADDD98 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5501BE0306E4D648D4615E11DF48DAF Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:37Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1027" ], + "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "307" ], - "x-ms-client-request-id": [ "f86f5863-90ce-4841-a0f7-f41407810525" ], + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "13922e99-271c-4141-86e2-5becf6a8c6d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4996,39 +5724,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e140e8b-c511-4cbc-8256-402f4347c16b" ], + "x-ms-request-id": [ "aee29a1a-bc75-42b9-898e-a24f4324f589" ], "X-AspNet-Version": [ "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/e947e90c-36bf-47e3-9528-e3bcdc0eba61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a9ac2f2d-46dc-41f6-86b0-a6f9544b1c3d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "73b515e8-d552-4979-9e83-d1bb0253caa7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113039Z:73b515e8-d552-4979-9e83-d1bb0253caa7" ], + "x-ms-correlation-request-id": [ "af3693b1-e21d-4f67-99fe-4e032a4cdbca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013137Z:af3693b1-e21d-4f67-99fe-4e032a4cdbca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA56DA2EEA784912931F3FF17650D537 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A659A98C5F3448C8D01549EB4D733E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:37Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4167" ], + "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925/config/web\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "21922765-0aab-42e0-b9d4-5031664d71f8" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "329" ], + "x-ms-client-request-id": [ "966bf4c9-bdf0-4452-8a62-c404826d34f2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -5041,40 +5769,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7B1A12E80\"" ], + "ETag": [ "\"1DC550656B15820\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ca7d462d-c311-453a-898f-0afd8886b1b7" ], + "x-ms-request-id": [ "a7213def-c531-4ca2-a367-17829922cb3f" ], "X-AspNet-Version": [ "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/a8494a07-8fe7-4a0d-8cae-3f5f22f29474" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f3157f19-7a44-4e03-91a9-5df3131ff19a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113053Z:f3157f19-7a44-4e03-91a9-5df3131ff19a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7d64eb45-1f75-462b-aeec-b517172b044d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013138Z:7d64eb45-1f75-462b-aeec-b517172b044d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DD0937E236C41178108BE92B97F7E0F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:30:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75B3E5C19BCD4E5785C86FEE13DC9DFF Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:37 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9534" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "23229ed7-b988-439a-aebe-bec3e487a416" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "65" ] } }, "Response": { @@ -5083,39 +5816,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e4547de-b957-4dc2-b6cb-2ed5b624f205" ], + "x-ms-request-id": [ "0d730cda-6299-4451-b068-0c385398b4b3" ], "X-AspNet-Version": [ "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/f31b18f4-0e1d-4a17-b124-e96090cad98b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], - "x-ms-correlation-request-id": [ "1739df85-196c-47c1-b2d9-299ad1754623" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113109Z:1739df85-196c-47c1-b2d9-299ad1754623" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c7cdb41a-8476-4cd7-bc40-3582dfa277c5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9c6678d9-ac19-4b5c-ab7f-eea3b5ffe26b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013138Z:9c6678d9-ac19-4b5c-ab7f-eea3b5ffe26b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 990C92CB162243FFBEF5E15C592FB6AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:30:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB567A90469F46BC9740C0B197A5C7A6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "d31f3dd0-878c-4890-b30b-15b0ace6ddb1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -5124,42 +5861,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "154dc257-3792-4317-aab9-aacaf9fabf62" ], + "x-ms-request-id": [ "e1db2efa-983b-46a2-8e9a-b6e744fdf253" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b2743635-034f-4c14-bba2-708559f81825" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ac230631-6674-4ed8-a5a7-b2786d4685ef" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T113113Z:ac230631-6674-4ed8-a5a7-b2786d4685ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8bc95640-e9dc-4f14-8c27-77a8623a3080" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1024298d-d4a6-4f51-b87e-ddc5d0b9eed9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013138Z:1024298d-d4a6-4f51-b87e-ddc5d0b9eed9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F7DE0EFE41584BC3AEF9AC27FDC78D7D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81C02A215E4640B4BCB9CC51B2D78B1B Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "f2d9a6e8-1046-43fd-9711-52eb09ef83d5" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "1267a1fb-2c3c-4180-ad23-8c971a7e640c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -5170,41 +5907,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffc31734-8c81-46ef-9d02-f48d8a336132" ], + "x-ms-request-id": [ "c0333ecd-18a6-46e6-818f-37e79e1ec5c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "53866dcd-1e27-44c6-9ea4-498e7813b601" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113143Z:53866dcd-1e27-44c6-9ea4-498e7813b601" ], + "x-ms-correlation-request-id": [ "e06a5317-bced-400a-ad8f-ead637a17a3d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013139Z:e06a5317-bced-400a-ad8f-ead637a17a3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64AC407C38684FD29246ECDEDEEF8A6C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:43Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A69B338E1F0463A8DA1CCF78A66DAE2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "313" ], - "x-ms-client-request-id": [ "f2d9a6e8-1046-43fd-9711-52eb09ef83d5" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "d53f0cb6-59f6-4c89-81e1-88778a5d60c1" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -5214,40 +5951,213 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550656B15820\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17bb5b18-d557-41e5-976f-aaf5ba18a8f6" ], + "x-ms-request-id": [ "0e8d0a2c-2681-4f85-9dc6-bdfc9d1cecc8" ], "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": [ "28b0cec8-1aef-4acf-93ec-2ef11dd6ea8c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113143Z:28b0cec8-1aef-4acf-93ec-2ef11dd6ea8c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3002d768-d137-4c9f-ae74-dfa11e01d7be" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "8cebc7ef-d2b0-48cf-9478-a82a00da032e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013156Z:8cebc7ef-d2b0-48cf-9478-a82a00da032e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4233D6DD6AC044B18B84BA2C4B0EF594 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:43Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7DF5C579CB84BD8A930368DCCD1AB4F Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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-Flex-Custom-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "314" ], - "x-ms-client-request-id": [ "1102be4a-95f3-4184-af2c-d0dc3464e49e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], + }, + "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": [ "3f4983a5-da00-4b6d-91a6-081645b283fa" ], + "X-AspNet-Version": [ "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/52c2ddbe-e980-441c-8a2e-eadb05d32ad4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "82d3f5f9-7fa6-4d39-8b0e-bf1692d81079" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013157Z:82d3f5f9-7fa6-4d39-8b0e-bf1692d81079" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5FC24A9E4A424E4EAD9BEAAA8AB39F8E Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:31:56 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "cba58c1f-6920-4b6d-866d-989f963611b0" ], + "X-AspNet-Version": [ "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/17e6341a-15ff-49b0-bc4e-8dc3db5bcf58" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "869c43a3-2804-4024-b267-27e64f92a633" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013202Z:869c43a3-2804-4024-b267-27e64f92a633" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B0BCE5214C644A11A66985660ADE039C Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1907" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"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-14T01:32:02.0033333\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "745c8fb4-546b-4e2a-b58c-1812685e3264" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "995d2d78-63fd-435c-8d8a-3dad68aadf8f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "060add06-bd62-4f29-88ea-89107a5bf8d4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013232Z:060add06-bd62-4f29-88ea-89107a5bf8d4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 01CCC7BA167E49BB8D8F40A00878DF15 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "338" ], + "x-ms-client-request-id": [ "745c8fb4-546b-4e2a-b58c-1812685e3264" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "377e9e1f-9cd7-4656-968b-7d7d321f7d71" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "33460bb7-fa43-4cb6-a687-0d20ed4c516a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013233Z:33460bb7-fa43-4cb6-a687-0d20ed4c516a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0210A466328C44B4BA884440C4B1D743 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"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": [ "339" ], + "x-ms-client-request-id": [ "e6ef485b-1a95-4152-b3ab-68fcb515514f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, @@ -5259,36 +6169,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1e8a3add-baad-45ba-971a-fc0a816e373f", "36bb6d28-6f2e-4f54-9c6d-3dafdfed31b0" ], + "x-ms-original-request-ids": [ "0c2a7cc9-7456-402e-bcd9-a1326450b225", "550237ba-55dd-4289-935a-585b938ae3e3", "fca8b49b-0b9e-44ba-a459-c3edac7d7162" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1bfb2550-cdd8-4b36-8a06-f69077419179" ], - "x-ms-correlation-request-id": [ "1bfb2550-cdd8-4b36-8a06-f69077419179" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113144Z:1bfb2550-cdd8-4b36-8a06-f69077419179" ], + "x-ms-request-id": [ "3858192a-0f37-44b2-8ac6-85b64710da4b" ], + "x-ms-correlation-request-id": [ "3858192a-0f37-44b2-8ac6-85b64710da4b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013234Z:3858192a-0f37-44b2-8ac6-85b64710da4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32FB4B88BBFC443E9F887AD8BE14A4EA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:44Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88BC3922785440B78F7F0EA153EF49F0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "f4c97f4d-674f-483a-bdcb-1736fec0ddbc" ], + "x-ms-unique-id": [ "340" ], + "x-ms-client-request-id": [ "5beb3dea-9b28-497c-9a72-3376adbd70d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5303,31 +6213,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6eee7c26-a63b-47d7-9f33-39c623f41551" ], + "x-ms-request-id": [ "294908e9-f602-45da-be4d-e4d928f70847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4349ba7e-096a-472b-bfbb-593fa5051d8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/49b2deac-f363-4bc6-a486-f539fdea20df" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e8015aa3-eaed-44c6-b3fb-5be0bf4ad875" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T113145Z:e8015aa3-eaed-44c6-b3fb-5be0bf4ad875" ], + "x-ms-correlation-request-id": [ "7b2c4367-124c-414e-bfb4-044ccfde4e22" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013234Z:7b2c4367-124c-414e-bfb4-044ccfde4e22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1582695AE5D54837BB55E39F3FD4B288 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:44Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0B9C7528BC249FC80F317DAF8B5092B Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:0d4bdbde-801e-0036-7dc7-53edd9000000\\nTime:2025-11-12T11:31:45.0572860Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:8b39dec2-801e-0025-6d06-558c1c000000\\nTime:2025-11-14T01:32:34.4904403Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -5342,25 +6252,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DF0F882F79\"" ], - "x-ms-request-id": [ "5c211412-35be-4d3d-92f2-22f69479f3cf" ], + "ETag": [ "\"0x8DE231DB040F333\"" ], + "x-ms-request-id": [ "52811d52-7328-4754-ba8b-4570b9e616e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/264be014-931f-4859-9713-b8a822602575" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a5265ca5-80eb-45e0-8e8a-ac043621f921" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b322f288-a0a2-40ea-a7d6-9994adbab41d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113145Z:b322f288-a0a2-40ea-a7d6-9994adbab41d" ], + "x-ms-correlation-request-id": [ "7b7fcf6b-2761-44a6-999b-512d555eebe6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013235Z:7b7fcf6b-2761-44a6-999b-512d555eebe6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 519C1D07B7C64EF7ACF6A3D0317482BA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E397CA2655C74522BFCA10B9C6ADC43A Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "454" ], + "Content-Length": [ "446" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/blobServices/default/containers/app-package-functionsflexcustom112925-0000000\",\"name\":\"app-package-functionsflexcustom112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000\",\"name\":\"app-package-functionsflexcustomfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -5371,8 +6281,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "25981a50-27b6-4e7a-956c-296cb25c4302" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "b8fa2f10-5c63-4318-87e1-07720b7ba2e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5387,36 +6297,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "15715ac8-4fcd-4f9a-b031-602d4b90b7f1", "4046033e-59e2-480d-b102-c85433ab3ba6" ], + "x-ms-original-request-ids": [ "577bc1d8-5c1f-4b35-91e1-80aa130556b1", "afdab66e-ae82-4dc4-a4e5-8a1ced11d248", "098266ab-3c3d-4ddf-92a7-bb8f460ebd62" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4d91b77d-bd4d-4a4d-aaaf-67b601d64a1d" ], - "x-ms-correlation-request-id": [ "4d91b77d-bd4d-4a4d-aaaf-67b601d64a1d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113146Z:4d91b77d-bd4d-4a4d-aaaf-67b601d64a1d" ], + "x-ms-request-id": [ "7e0b5a51-8eb3-41f0-a59f-938518100e4a" ], + "x-ms-correlation-request-id": [ "7e0b5a51-8eb3-41f0-a59f-938518100e4a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013235Z:7e0b5a51-8eb3-41f0-a59f-938518100e4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EE660AB55604FA79EC499940F65D8F0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD6C4C2554C2476FA42BD638E7319644 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "318" ], - "x-ms-client-request-id": [ "5099c25c-ba7f-4f7c-a3dc-b672ffbebdcc" ], + "x-ms-unique-id": [ "343" ], + "x-ms-client-request-id": [ "67d0f225-3860-4a31-834e-afbe43c80890" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5431,23 +6341,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "464a7f31-7572-4601-9e07-68d2c8f59f55" ], + "x-ms-request-id": [ "4a9b52e6-8361-4546-8b20-7b9b5561d876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/ca8f0a9b-3f78-4ba0-816d-69f79dd2fff1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f4e0a9f9-4d18-412b-b5ee-fc61e1399003" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "de346e7b-75db-486d-be1e-8eafcfbddf6e" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T113147Z:de346e7b-75db-486d-be1e-8eafcfbddf6e" ], + "x-ms-correlation-request-id": [ "72091d43-d33e-4eb6-b880-2359167d9e62" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013236Z:72091d43-d33e-4eb6-b880-2359167d9e62" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78F8B39C8B0A4945B0E9152F62728FBB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:46Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE49EE75DD964BD0B41190C5416ED597 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"a1zLYLIOmWrzqHlD5m9253sY038BvCpPscldP6iRIWUT5O5MXS7irD2ezpNFhBrYjsQAtk8xlOWP+AStf1YXkg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"o11yY6odr4yw28kn8yWUD4Nq6Cad6xrdgiNL86RFHySwe48WN8FpbjEYHuniOHWoMFZaMnOE2tMC+AStd2KeHg==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -5458,8 +6368,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "319" ], - "x-ms-client-request-id": [ "15649056-df07-44fd-959d-11c4242540f4" ], + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "ecfcb33f-10f7-4d24-a20d-db24edef4c09" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5474,36 +6384,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f4b6621d-8f62-43f3-9960-ea82dbdd1297", "59e9c394-c869-48ca-af4e-8c949bf54ab7" ], + "x-ms-original-request-ids": [ "9e742c4f-18b4-44b1-be38-c4ec813d44d4", "f7bfc610-62db-47ff-9002-77a35e8c2141", "47657bad-4b1a-4f93-9816-da690dff7cec" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f64c10a8-47b1-4a92-909d-142029d07bc7" ], - "x-ms-correlation-request-id": [ "f64c10a8-47b1-4a92-909d-142029d07bc7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113148Z:f64c10a8-47b1-4a92-909d-142029d07bc7" ], + "x-ms-request-id": [ "cc4f0dbc-ee4e-4a4f-8120-d64dc7ff7ec0" ], + "x-ms-correlation-request-id": [ "cc4f0dbc-ee4e-4a4f-8120-d64dc7ff7ec0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013237Z:cc4f0dbc-ee4e-4a4f-8120-d64dc7ff7ec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DA6E25C317B461181EBB595DF203873 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDF8ADE6AAB1470184AF83C8334DE1B8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "320" ], - "x-ms-client-request-id": [ "2dea7e6e-5499-40de-98e5-3bfd7025f961" ], + "x-ms-unique-id": [ "345" ], + "x-ms-client-request-id": [ "112824f3-3629-4227-be5d-8cdf7b3ebad0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5518,30 +6428,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3c4e6eab-b3ae-4d67-a516-618b3a8abf02" ], + "x-ms-request-id": [ "64297064-2e3b-4a3d-a951-46102df89b5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e45b6ee4-8905-4939-8d66-bd1b76c47f9e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f4461260-57ad-4274-b723-1985f3bd9b07" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "39803d09-7d3b-4215-96eb-e7d6d3a32523" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T113148Z:39803d09-7d3b-4215-96eb-e7d6d3a32523" ], + "x-ms-correlation-request-id": [ "7e78da71-fae6-4649-aa53-0c36bde3be38" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013237Z:7e78da71-fae6-4649-aa53-0c36bde3be38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C230337227E47968AA4A1A6D90DD25C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:31:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBA3552FE26342B3B3CD28FDD632711F Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:37Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"a1zLYLIOmWrzqHlD5m9253sY038BvCpPscldP6iRIWUT5O5MXS7irD2ezpNFhBrYjsQAtk8xlOWP+AStf1YXkg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"o11yY6odr4yw28kn8yWUD4Nq6Cad6xrdgiNL86RFHySwe48WN8FpbjEYHuniOHWoMFZaMnOE2tMC+AStd2KeHg==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Flex-Custom-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Custom-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Flex-Custom-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Custom-fqti?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": { @@ -5561,36 +6471,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/eastasia/1b2a290f-0276-412a-9311-096a43018297" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bf7159ba-ebde-4221-a9a5-a0820bdc9e0f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "879ac728-6e97-4f05-81e0-e21f9d4905ce" ], - "x-ms-correlation-request-id": [ "879ac728-6e97-4f05-81e0-e21f9d4905ce" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113203Z:879ac728-6e97-4f05-81e0-e21f9d4905ce" ], + "x-ms-request-id": [ "322ea298-0923-4083-a496-48e548f2b0d9" ], + "x-ms-correlation-request-id": [ "322ea298-0923-4083-a496-48e548f2b0d9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013249Z:322ea298-0923-4083-a496-48e548f2b0d9" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55C421D71E864A929C6EDC2874591560 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:31:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD76D125ED7047BB974D67949F25D816 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:37Z" ], + "Date": [ "Fri, 14 Nov 2025 01:32:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1611" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03f58f-0000-0200-0000-691470310000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Custom-112925\",\r\n \"name\": \"Functions-Flex-Custom-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-112925\",\r\n \"AppId\": \"3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f6f831aa-5e80-4794-9339-96325a999025\",\r\n \"ConnectionString\": \"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\r\n \"Name\": \"Functions-Flex-Custom-112925\",\r\n \"CreationDate\": \"2025-11-12T11:31:50.9829727+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-112925_3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-112925-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\": \"\\\"78035797-0000-0200-0000-691686c10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Custom-fqti\",\r\n \"name\": \"Functions-Flex-Custom-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-fqti\",\r\n \"AppId\": \"14dddbd1-fcb1-48dc-995c-951171fe2050\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"143ef9ce-b044-489b-a861-98f08c756b79\",\r\n \"ConnectionString\": \"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\",\r\n \"Name\": \"Functions-Flex-Custom-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:32:39.371848+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-fqti_14dddbd1-fcb1-48dc-995c-951171fe2050_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1988" ] + "Content-Length": [ "1976" ] } }, "Response": { @@ -5598,39 +6508,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C7F9367A8B\"" ], + "ETag": [ "\"1DC5506985E7ECB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba8cf823-b00f-47ac-8a71-495ac0f1b436" ], + "x-ms-request-id": [ "d9aeddcd-69f2-4dba-94ab-d1bbb82dd7ae" ], "X-AspNet-Version": [ "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/2e63e04d-d609-4419-a036-b4d0c46b6d2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8032c4d9-070e-449a-95af-f41a945faf56" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "6441f0eb-9148-45a4-9172-df59075527da" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113227Z:6441f0eb-9148-45a4-9172-df59075527da" ], + "x-ms-correlation-request-id": [ "d87cb8e9-a17b-42ec-94a5-247259494d92" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013313Z:d87cb8e9-a17b-42ec-94a5-247259494d92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E2B2A1902FC4D4E890E5FC12F5651A7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:03Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7F00D4F25B647F0BED182C662F0AD13 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:49Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9494" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:05.4566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:32:52.1533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "d77e79c6-7ff1-4282-9c40-36ac62adc83d" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "5b048985-0d05-47ae-8ed1-9af3f86cf189" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5644,38 +6554,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C805C5816B\"" ], + "ETag": [ "\"1DC5506A49A1B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de6081df-af5d-4748-a1b9-227b4ed907e7" ], + "x-ms-request-id": [ "75caec56-fe60-444e-becb-b2b9d8490079" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1432251f-93ca-4242-aaf4-fe7d51297c43" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113257Z:1432251f-93ca-4242-aaf4-fe7d51297c43" ], + "x-ms-correlation-request-id": [ "432e42b6-f6e9-4d8b-8b91-c0e72118da21" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013344Z:432e42b6-f6e9-4d8b-8b91-c0e72118da21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D560913786147529142A958601BBBE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 647BBC10D4494CECB02169CBF615B54B Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9511" ], + "Content-Length": [ "9465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:26.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "0a917279-0cf3-4340-aa5d-0ce1bf1422f4" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "6945fdf2-64d0-4f6a-bbc8-68959ae1c6f5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5690,38 +6600,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C805C5816B\"" ], + "ETag": [ "\"1DC5506A49A1B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba15696c-4922-4d5e-ba2c-29e2fcb4cba5" ], + "x-ms-request-id": [ "d707178e-9bf8-4c06-b436-ecd28892a58d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "388a13b3-f21c-43b8-ad62-7ffb72ce6556" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113258Z:388a13b3-f21c-43b8-ad62-7ffb72ce6556" ], + "x-ms-correlation-request-id": [ "e9eb4948-816a-4340-9a28-a8141061da49" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013344Z:e9eb4948-816a-4340-9a28-a8141061da49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 895046EE59B34273906962DF171AF61A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2AEC8F2109CF42058A14E6B6F9CA1A3B Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9511" ], + "Content-Length": [ "9465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:26.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "9ed53b22-fec6-4144-8876-4255303d2932" ], + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "c302721f-03ac-4256-b3eb-da8241f677dc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5737,36 +6647,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "655e7fec-611b-47fc-b7e6-92bafe222d89" ], + "x-ms-request-id": [ "dfb5c85c-c09b-4294-a45a-afd329d9f32c" ], "X-AspNet-Version": [ "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/74c69519-1702-42cf-aed9-adb0b4bba611" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6b62574f-a0b0-4987-a1c2-97a96b1a8109" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ac2f9649-b6d5-464e-a1dd-a2ec1e7994b8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113258Z:ac2f9649-b6d5-464e-a1dd-a2ec1e7994b8" ], + "x-ms-correlation-request-id": [ "045d5b8a-652b-434a-a801-b463472c3d03" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013346Z:045d5b8a-652b-434a-a801-b463472c3d03" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F45098A250D4603A1E8ABCE57A307AE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 315635A01AF7481EB200829DCEE1370C Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1017" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "ad32a1b8-0889-4273-a586-6a801fec3825" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "bd16fde5-0cd9-4cf9-9dbb-8831a57bb722" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5782,37 +6692,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59575f33-1cb7-465a-a7ef-5b6f3cc3d8c1" ], + "x-ms-request-id": [ "62d32c4c-4f12-4a60-b5cf-c6a62bb8e18a" ], "X-AspNet-Version": [ "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/6e2f9928-a4ba-4b4f-bb39-36d66e97f0dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/878e7398-0f9c-4981-a509-acc701de4c6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1de3ad5b-5a32-4abb-938f-48408ab371d5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113258Z:1de3ad5b-5a32-4abb-938f-48408ab371d5" ], + "x-ms-correlation-request-id": [ "29e48462-4096-4c36-bbef-7df96e5fd2e3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013346Z:29e48462-4096-4c36-bbef-7df96e5fd2e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FA3B7122B444C1E86D17E60704DC557 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62D22E3B00F14AC096E686D60B3CCE0D Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4159" ], + "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web\",\"name\":\"Functions-Flex-Custom-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "5c2444c5-c36e-4358-9b47-08e7b7758492" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "a0ec6ca1-ee84-4b34-9b23-993d03241f71" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5828,36 +6738,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11d46fed-ef71-4948-b92c-f631798b7cc8" ], + "x-ms-request-id": [ "34c01f18-acd9-4a5b-9e65-2b7361d6805e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c610d5b-1964-4d9f-9b7f-d5ca2b273c22" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113259Z:9c610d5b-1964-4d9f-9b7f-d5ca2b273c22" ], + "x-ms-correlation-request-id": [ "e03d8e20-67af-4419-99ac-2e6c4182bd45" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013346Z:e03d8e20-67af-4419-99ac-2e6c4182bd45" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1C04F47C8EE4F72847210D162A1AD90 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D45347581F54157B7DAEF087B47E803 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "107e3688-1c05-4525-a574-b24427043b5a" ], + "x-ms-unique-id": [ "353" ], + "x-ms-client-request-id": [ "283e2e39-1eb3-4dcb-b125-6d1fa9d70145" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5873,36 +6783,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9dfff3bc-ee7c-44a7-8984-0fde82322506" ], + "x-ms-request-id": [ "12aefe01-43e1-40f6-a3da-811d38a3766d" ], "X-AspNet-Version": [ "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/88202caf-7914-4d67-99c0-3e8b992da286" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/38e62c03-45c8-42a2-a8f4-4a9dc4042ab0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "805ef4bf-5cd2-4d4d-a2c6-2474ed3cd701" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113259Z:805ef4bf-5cd2-4d4d-a2c6-2474ed3cd701" ], + "x-ms-correlation-request-id": [ "04fefc0a-59ca-4ca2-befa-6fed7d8dd827" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013347Z:04fefc0a-59ca-4ca2-befa-6fed7d8dd827" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC064FF5DF974F9CB6C79275628A9F41 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5EB1300274F4E6EB00F58EF3AA18DBF Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1017" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "329" ], - "x-ms-client-request-id": [ "18e6edb5-e453-47a6-9aa0-4236df8de826" ], + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "2ba660e4-b243-4946-91ae-eb244556a782" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5917,38 +6827,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C805C5816B\"" ], + "ETag": [ "\"1DC5506A49A1B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a878a1f-47d9-47a8-b5a9-9153921708ba" ], + "x-ms-request-id": [ "28c375b8-7188-4af9-bf72-80b73eb5d8e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "737452fa-3971-4525-8500-c4c3dfaf02ff" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113300Z:737452fa-3971-4525-8500-c4c3dfaf02ff" ], + "x-ms-correlation-request-id": [ "45a7063a-af61-4a68-9fa8-03410605f4ab" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013347Z:45a7063a-af61-4a68-9fa8-03410605f4ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75CEC238A20343849A9DF8A679E7137C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:32:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62AC2425ECEE4F8AB71069EA443EE4A4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:47Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9511" ], + "Content-Length": [ "9465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Flex-Custom-112925\",\"repositorySiteName\":\"Functions-Flex-Custom-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112925.azurewebsites.net\",\"functions-flex-custom-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:32:26.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsa112925.blob.core.windows.net/app-package-functionsflexcustom112925-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-112925\",\"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-112925\\\\$Functions-Flex-Custom-112925\",\"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-112925\",\"defaultHostName\":\"functions-flex-custom-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "2eb93986-0751-47ff-ad4d-bae8e2870d23" ], + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "07337678-ee46-4cab-ae66-590f838c2c9c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5964,36 +6874,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe5f96d5-bc7c-4bbb-9e78-b1b1395c875a" ], + "x-ms-request-id": [ "b59fb9fc-974d-45f9-b74d-ef6b86ea865b" ], "X-AspNet-Version": [ "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/592a59b1-a1aa-4be6-8047-d880850d8787" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/900655f7-3b36-4833-846f-b56e0fabb4b5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "becbb085-91aa-4d10-8d76-7304cf58fb85" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113300Z:becbb085-91aa-4d10-8d76-7304cf58fb85" ], + "x-ms-correlation-request-id": [ "b9740f9e-94e7-4192-8097-9d96ade85fc8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013347Z:b9740f9e-94e7-4192-8097-9d96ade85fc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC2EF6498D1547E38234CEB4DDB5CF21 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:32:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE8B53A76CC54478AE78352525D91A24 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:47Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1017" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa112925;AccountKey=InLOU5R8+1x81V8Kysj/7pDoL3N3Zn4ffdVvIXsxf1PbG4LaWz7hxAYTzezogmJj5f9euHHTuWO1+ASt8kkyCg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "331" ], - "x-ms-client-request-id": [ "263528f5-df7d-4d5c-95c8-c8fad7c9d615" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "1959d5ab-a9b3-4a94-9b44-56722fca846a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6009,39 +6919,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "21fe50b4-48ce-43f3-b25a-95f8c41d165c" ], + "x-ms-request-id": [ "e4da1a56-c0fc-479c-8adb-481142f44422" ], "X-AspNet-Version": [ "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/6b4d2c15-615d-405e-a0e0-20be8c195e77" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/11c65b25-6b12-4c40-b2c6-ba30a5fd61ec" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "329b4576-b488-4fbe-8399-f23d0652ac33" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113300Z:329b4576-b488-4fbe-8399-f23d0652ac33" ], + "x-ms-correlation-request-id": [ "0fcb3644-040f-4967-9b81-e9de74066018" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013348Z:0fcb3644-040f-4967-9b81-e9de74066018" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7151C720D79046E895071E2F497E653A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CDC4349593F490B84E38B6B9849E68E Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4159" ], + "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925/config/web\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web\",\"name\":\"Functions-Flex-Custom-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Flex-Custom-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "cbb0db85-cbcd-46dd-af23-c0d8922852d2" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "357" ], + "x-ms-client-request-id": [ "c2529fe0-3079-4227-8c6e-52adc7918d2e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6054,40 +6964,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C805C5816B\"" ], + "ETag": [ "\"1DC5506A49A1B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2289d16-aac4-4138-935a-6693d2e7b327" ], + "x-ms-request-id": [ "93f4c872-0e7a-4e58-8924-7ac59e7ce416" ], "X-AspNet-Version": [ "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/2caa0ade-9490-435e-8723-32090132d560" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "7824ec46-f110-4542-a403-231279b47c48" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113315Z:7824ec46-f110-4542-a403-231279b47c48" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d9b54398-b845-42da-a718-b13907cc9ad2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013348Z:d9b54398-b845-42da-a718-b13907cc9ad2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C69C1A0FC3A74A1B88AFF33EF36B9464 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA53DD1DA73D4A9BACCAFBD003874298 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:48 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9465" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "358" ], + "x-ms-client-request-id": [ "1f937cbc-9358-4574-a6ee-bd78aae15136" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "73" ] } }, "Response": { @@ -6096,39 +7011,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e4a6d0e4-2e28-4a0c-ac82-6d8b7bacbaea" ], + "x-ms-request-id": [ "f5955f60-f701-4e1b-9423-4cbb63a1f246" ], "X-AspNet-Version": [ "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/f655ddd4-8653-405f-b934-e4fea3b3a69d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3c9a4bf0-7926-4e89-9ebc-b3141b5f82f9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113315Z:3c9a4bf0-7926-4e89-9ebc-b3141b5f82f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f32d72ac-dd83-4009-82f3-bd108753ee2d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e3f74bfb-5f23-481d-bbe9-41ec00c34087" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013349Z:e3f74bfb-5f23-481d-bbe9-41ec00c34087" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53458F5EB91D4677918CB3FC17EC11DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 066627852CD24451AA8953FBDBA65D0E Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "fbd9d6f2-132e-4be9-bee8-39593d5c3c43" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -6137,42 +7056,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8612f835-c0b5-4439-adbc-b63389e5e522" ], + "x-ms-request-id": [ "6ac24c59-138e-47d2-b69d-00d529d4aa54" ], "X-AspNet-Version": [ "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/8c47749d-4345-4e0e-bd53-134f9703280d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f7a952ad-6b86-4061-82a1-c0f55957673b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T113319Z:f7a952ad-6b86-4061-82a1-c0f55957673b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/39f145e1-422b-45ff-9d16-9b2a1ac5c294" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "001c36b8-e353-4cbb-994c-45613296c1cd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013349Z:001c36b8-e353-4cbb-994c-45613296c1cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85DC2F4368C341ECA7FE65B26DCB4DD8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1FEB8B903E584488944A14F539BF4E47 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:49Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web\",\"name\":\"Functions-Flex-Custom-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "336" ], - "x-ms-client-request-id": [ "830c75a3-4620-4a71-aba8-39aeed046e47" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "d2c5fd8d-6ba0-4e65-a6da-31d2bfffdc79" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -6183,41 +7102,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "702f6f22-6418-4141-acc0-cb4c0f0fd15e" ], + "x-ms-request-id": [ "5ec3275e-62ad-4bc3-9dea-c09b5931263f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "04a18bfa-2de5-4665-b903-151464c00308" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113349Z:04a18bfa-2de5-4665-b903-151464c00308" ], + "x-ms-correlation-request-id": [ "856fda86-8978-4460-9c35-3514f2228ebc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013350Z:856fda86-8978-4460-9c35-3514f2228ebc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 29062A0ED1354E63BECA9CA743965105 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1F3D90F44304D3183BDC84A939498B0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:49Z" ], + "Date": [ "Fri, 14 Nov 2025 01:33:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "830c75a3-4620-4a71-aba8-39aeed046e47" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "3937a9fd-53b6-4d15-95e1-45da69615c0e" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -6227,42 +7146,215 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5506A49A1B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d1c95b5-d198-409d-9e08-cdf6b14b8d2c" ], + "x-ms-request-id": [ "566396df-482a-4fd1-abfb-79943825a5bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "26e2d3b1-69f7-4361-bab4-158d88e0aded" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113350Z:26e2d3b1-69f7-4361-bab4-158d88e0aded" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1e3d194a-fff3-4e0e-ac17-74ca11c95aed" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "14b1ac2b-7a1e-4577-8c58-b17a0acfc3b3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013407Z:14b1ac2b-7a1e-4577-8c58-b17a0acfc3b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B8788C8B44B4D7380A13256F19C517D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56380515F00748508A55CAF00F4877AC Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": 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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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-Python-Flex-Scaling-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "908c0ade-3dcf-4eed-8607-14fa937f81f9" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "71" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "23d37116-569e-4fef-a21d-6db9711f404c" ], + "X-AspNet-Version": [ "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/85a65840-cafd-414e-a96e-3f99667633df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7d2260e4-bde4-45a1-bd3f-b813c7db91bf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013407Z:7d2260e4-bde4-45a1-bd3f-b813c7db91bf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5728FDF4CEBA40AD90C3D5099441BA90 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:07 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "472b3130-c841-4fb9-bf9d-699c1acbf00f" ], + "X-AspNet-Version": [ "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/f66be9ac-3851-4a0c-8945-47bfaac26698" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "2f344bb3-eb75-48f8-bae9-825ffa17bf77" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013412Z:2f344bb3-eb75-48f8-bae9-825ffa17bf77" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BDE386FE417D45D5AD63B8397ADF30D9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1907" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"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-14T01:34:12.5366667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "365" ], + "x-ms-client-request-id": [ "e720b656-1e7f-4b1d-9840-67b5bb4625ba" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1325ab8e-984e-431f-810c-09dff8c191c5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aefe51fe-0dfa-484d-a73c-da365c5d9f5c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013443Z:aefe51fe-0dfa-484d-a73c-da365c5d9f5c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 192CC3132A934122A630B775E75834B1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "e720b656-1e7f-4b1d-9840-67b5bb4625ba" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5f3b7b91-0e67-4f53-b2ca-b5d84258af2e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1907eea4-ab92-486b-9077-7f205fa5e4f2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013443Z:1907eea4-ab92-486b-9077-7f205fa5e4f2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6695E184E5C1475FA5329B920A04B342 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"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": [ "367" ], + "x-ms-client-request-id": [ "94a6b954-a412-4dff-9071-4d9d33ac3101" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -6272,36 +7364,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "fc1b2386-c213-47dd-a8eb-40f5713b0ab7", "8e8706e1-9c63-4c11-bf93-83a998183ae0" ], + "x-ms-original-request-ids": [ "4c35d52e-30e6-412e-ad27-4cbaf4b3f4d2", "8709833c-2dc9-4eb1-b2bb-c754ef660a8d", "d2f2e07c-964f-47de-b745-d41b07666175" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "993186ac-27da-4f45-ba86-a9436c86a2a2" ], - "x-ms-correlation-request-id": [ "993186ac-27da-4f45-ba86-a9436c86a2a2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113351Z:993186ac-27da-4f45-ba86-a9436c86a2a2" ], + "x-ms-request-id": [ "2daae323-77fe-419d-81c1-8bbf0bedbab9" ], + "x-ms-correlation-request-id": [ "2daae323-77fe-419d-81c1-8bbf0bedbab9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013444Z:2daae323-77fe-419d-81c1-8bbf0bedbab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A7A1F458A440467EA394766E426C2E6E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12D66FB9E31844A7899441634CD6DDA5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "15fd55b8-3316-43ed-b2a6-7d9721bb2d48" ], + "x-ms-unique-id": [ "368" ], + "x-ms-client-request-id": [ "88ec13df-3990-4cce-80f9-d252aa3dc471" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6316,31 +7408,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ece144dd-6641-49fe-94a4-f36b4b768244" ], + "x-ms-request-id": [ "f87ee814-45bc-4c3b-9a7d-db8ea3b3be27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28a4e6fc-647b-4505-aaec-38fcf540716a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/74d9d7a9-09ef-4202-a080-7e031c3e03c4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "459feb32-cddc-4942-a869-edb5c9fe2b03" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T113351Z:459feb32-cddc-4942-a869-edb5c9fe2b03" ], + "x-ms-correlation-request-id": [ "7feb3d74-49a8-43fe-b283-18462b3a1955" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013445Z:7feb3d74-49a8-43fe-b283-18462b3a1955" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9742F37FFD240499805AF113665BBD0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:51Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8433F1E84F8E4C46BBBD71F2290B5EDE Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:038972cc-801e-0071-50c8-531f2a000000\\nTime:2025-11-12T11:33:51.7637098Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:91674896-e01e-0038-2506-55caeb000000\\nTime:2025-11-14T01:34:45.0549815Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -6355,25 +7447,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DF5B79E7A5\"" ], - "x-ms-request-id": [ "03fb67b6-bd85-4afd-948c-5fc24bbbc7c0" ], + "ETag": [ "\"0x8DE231DFE0E1EE8\"" ], + "x-ms-request-id": [ "8f96bcb0-927d-4e79-bc37-fb52a76bcbf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ed1809ac-836b-4fe9-8b8d-f18acb81f79f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b1165a9b-53ca-4f6f-8b06-3b0fb896d9a5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4e18dd28-a442-47c4-bfd6-ca83e481bc84" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113353Z:4e18dd28-a442-47c4-bfd6-ca83e481bc84" ], + "x-ms-correlation-request-id": [ "9a649c30-8809-45ca-a0de-fec723994338" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013445Z:9a649c30-8809-45ca-a0de-fec723994338" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34A3FB3726C745498054A22976E5DC7F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:51Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43E5B28822E9431A880C035C31C1FAED Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "468" ], + "Content-Length": [ "460" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/blobServices/default/containers/app-package-functionspythonflexscaling112925-0000000\",\"name\":\"app-package-functionspythonflexscaling112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000\",\"name\":\"app-package-functionspythonflexscalingfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -6384,8 +7476,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "341" ], - "x-ms-client-request-id": [ "4c74528f-292b-49a1-836e-c0630604cd21" ], + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "cea2531b-9b23-4cda-aca5-029a176064f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6400,36 +7492,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b1dd08ec-9fa8-4703-b95e-cd9bf5bc94cf", "fd5e5e29-1362-4b03-8edb-78862b05850f" ], + "x-ms-original-request-ids": [ "e824ea99-8d7e-44d4-b855-ddd201340065", "d6249734-3ec6-4b72-afec-a4e9b1424375", "c8734daa-a275-4343-9fa6-a79f291cd0e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "583a28fd-b04b-46f2-a2ca-b8169607ee25" ], - "x-ms-correlation-request-id": [ "583a28fd-b04b-46f2-a2ca-b8169607ee25" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113353Z:583a28fd-b04b-46f2-a2ca-b8169607ee25" ], + "x-ms-request-id": [ "4c08448e-72f5-4e81-aece-7ec85e2cf07d" ], + "x-ms-correlation-request-id": [ "4c08448e-72f5-4e81-aece-7ec85e2cf07d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013446Z:4c08448e-72f5-4e81-aece-7ec85e2cf07d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3313E7BE7ACA4D62B761EC5D9480BDF5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9ADE519CAA2A41D9997B532FD4FB6B34 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "7c3bf269-2cf7-45c2-8795-c2b09f4188d4" ], + "x-ms-unique-id": [ "371" ], + "x-ms-client-request-id": [ "f93ef0ee-b1c6-4285-ad7a-87458acc6d3f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6444,23 +7536,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bd274e9e-fbba-4153-947d-345a2d8f5970" ], + "x-ms-request-id": [ "63d2849d-4b80-48eb-b020-bc418b7f001a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c482ec61-d7cb-497e-a039-53be86d925d0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f2e05da3-62a2-4aff-a173-d2eceebc9369" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ea455ffa-8ccd-46f2-9b60-0a96612bbd76" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T113354Z:ea455ffa-8ccd-46f2-9b60-0a96612bbd76" ], + "x-ms-correlation-request-id": [ "53b57912-f681-40b3-b5e7-030c1f278723" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013447Z:53b57912-f681-40b3-b5e7-030c1f278723" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8519DDD0BE68429E978D40A643B647AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97D1E57878CB4DA7A350B83038E0B3BC Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -6471,8 +7563,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "343" ], - "x-ms-client-request-id": [ "f9ecca4f-2711-4173-bb71-d2b49b275a2a" ], + "x-ms-unique-id": [ "372" ], + "x-ms-client-request-id": [ "0920a9e8-ad17-4bbb-9a39-514790dee66c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6487,36 +7579,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1e5d40ed-71fd-4084-ac76-96ec6e14e590", "0c5c869b-cd7b-4f70-8125-4ea751e9d858" ], + "x-ms-original-request-ids": [ "8c52e296-0d2a-4174-94e5-1634c985d04b", "c67271a9-41f2-4ede-808c-11f8881a0c2c", "4e1d93d8-85aa-4ecb-a4f6-e7e05e01b5b1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1a5bddaa-fe5f-4a0f-a7fd-f3148f4a4105" ], - "x-ms-correlation-request-id": [ "1a5bddaa-fe5f-4a0f-a7fd-f3148f4a4105" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113354Z:1a5bddaa-fe5f-4a0f-a7fd-f3148f4a4105" ], + "x-ms-request-id": [ "fda5377e-f57c-4f87-8563-2a3e3019d126" ], + "x-ms-correlation-request-id": [ "fda5377e-f57c-4f87-8563-2a3e3019d126" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013448Z:fda5377e-f57c-4f87-8563-2a3e3019d126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C8730A285554134BBFF4CC63CE596B0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3BDBD99DECF44549209D1E9AECFBFCC Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:47Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "344" ], - "x-ms-client-request-id": [ "8c8e927d-b456-41e9-acb4-11a2c12023c0" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "8055a47b-f6cc-469b-8e91-dfe0fe8afadc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6531,30 +7623,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d81eab21-32ca-41a5-8497-1163f73fd110" ], + "x-ms-request-id": [ "dbea0999-5493-495d-ab55-a22e27e53a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/f89b699a-75d0-4897-a6ab-2312770dab18" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f56a5ae-a6a4-4a20-a8c7-8fd4fa2d605a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "30115b25-5f27-48bc-b927-e6862ef21182" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T113355Z:30115b25-5f27-48bc-b927-e6862ef21182" ], + "x-ms-correlation-request-id": [ "d588911c-0394-4fd4-a020-f08302a0c1a9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013448Z:d588911c-0394-4fd4-a020-f08302a0c1a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE5DB7E5619E48378227225823E8559F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:33:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFA2A5C543504DDE90BF0705E160001E Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ulrAy2v9DR6+axYSFvjhOtb0gioBMTIW/GuMWZvhitrkx94pMXK7DyvqgLGHxD/XlVSH/EzTAwOi+ASt2ao8Wg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-fqti?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": { @@ -6574,36 +7666,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/eastasia/f73c6335-d65a-470c-92ea-26ddf3461aca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6078df23-eb5c-4aa2-b81b-8ae0f7e89273" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "acc89d20-f2b5-421f-b4a1-5441f36de740" ], - "x-ms-correlation-request-id": [ "acc89d20-f2b5-421f-b4a1-5441f36de740" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113414Z:acc89d20-f2b5-421f-b4a1-5441f36de740" ], + "x-ms-request-id": [ "bc79956a-c35c-41a1-8e6d-75a115498da2" ], + "x-ms-correlation-request-id": [ "bc79956a-c35c-41a1-8e6d-75a115498da2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013500Z:bc79956a-c35c-41a1-8e6d-75a115498da2" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AF201E551214526ACAD4C7C22584A2F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:33:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:34:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFFF4A32243E49A8AE6F113E20FDD685 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:34:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1674" ], + "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e031b94-0000-0200-0000-691470b50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-112925\",\r\n \"name\": \"Functions-Python-Flex-Scaling-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-112925\",\r\n \"AppId\": \"6c98ccd8-e53a-451d-a19f-554753026e85\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dfc253e3-77b0-4844-94e1-32dcd5882a3f\",\r\n \"ConnectionString\": \"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-112925\",\r\n \"CreationDate\": \"2025-11-12T11:33:57.6896087+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-112925_6c98ccd8-e53a-451d-a19f-554753026e85_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-112925-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\": \"\\\"7803b09f-0000-0200-0000-691687430000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-fqti\",\r\n \"name\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"AppId\": \"f5571936-d55e-4e8c-8611-251a7ef7afc0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bd21d36f-2dc5-44b2-9972-cf28dac8d726\",\r\n \"ConnectionString\": \"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:34:50.0402919+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-fqti_f5571936-d55e-4e8c-8611-251a7ef7afc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2232" ] + "Content-Length": [ "2220" ] } }, "Response": { @@ -6611,39 +7703,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C847FA75B5\"" ], + "ETag": [ "\"1DC5506E6115815\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5271bff-3fcb-430b-8ccb-e7b1c9392fdd" ], + "x-ms-request-id": [ "3fb22aca-a2d8-4ba0-8195-a91efdfe34f1" ], "X-AspNet-Version": [ "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/f23c2379-f772-4bf3-971f-7d2db49f7b92" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6f1ed281-f3d2-472b-b4bb-13d402fbcb66" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "34cc09cd-58f3-4114-8c85-400d056b355c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113439Z:34cc09cd-58f3-4114-8c85-400d056b355c" ], + "x-ms-correlation-request-id": [ "60c20749-b895-451f-8d88-ef6ed0b475b1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013524Z:60c20749-b895-451f-8d88-ef6ed0b475b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8090867DD3BD4C17B934F70B96739A8A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:34:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:34:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4AD6176884C404BA07CCC1E5BC10CF5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:00Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9719" ], + "Content-Length": [ "9679" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:17.2133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:02.4933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "347" ], - "x-ms-client-request-id": [ "e5b1bf8d-cc4f-4274-a151-eb5f49a14207" ], + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "d24fe16c-180c-42a1-9054-720330762f3d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6657,38 +7749,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8544F80D5\"" ], + "ETag": [ "\"1DC5506F25CB940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3b3b727-736f-4e11-bf60-a95219b2a3f0" ], + "x-ms-request-id": [ "59498c32-b36f-4f5b-8e6a-b9517e860daf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7fc0d9d-8674-42f1-9559-b3ae74d1c06c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113509Z:c7fc0d9d-8674-42f1-9559-b3ae74d1c06c" ], + "x-ms-correlation-request-id": [ "aae4723c-c8e9-4943-ae9f-0acad0dd1d2e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013554Z:aae4723c-c8e9-4943-ae9f-0acad0dd1d2e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74FB4B05E6324E9B86D870C5AFEB004C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58A50265C4F54958AAD75B5A5C9D1863 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9696" ], + "Content-Length": [ "9651" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:38.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "348" ], - "x-ms-client-request-id": [ "9c6a5bef-2a6b-4f7d-923e-19fb13270f93" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "85eb37c3-41da-4ba1-bac7-ca8479fe6f56" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6703,38 +7795,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8544F80D5\"" ], + "ETag": [ "\"1DC5506F25CB940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a86a0162-1aa3-49df-a589-cf5bd078af76" ], + "x-ms-request-id": [ "3b2a95cb-4621-4e0e-8ab1-33c3be600d98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1cfb3386-f8fc-4b07-b49a-0f761f45759c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113510Z:1cfb3386-f8fc-4b07-b49a-0f761f45759c" ], + "x-ms-correlation-request-id": [ "05061d1c-d925-4579-b077-bc49f232ac62" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013555Z:05061d1c-d925-4579-b077-bc49f232ac62" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A61A57CB1024942979B36DDE4447995 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 213F331D541D43FF95C14198C28BC95A Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9696" ], + "Content-Length": [ "9651" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:38.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "349" ], - "x-ms-client-request-id": [ "49559fd6-d387-4832-b0d0-4e2f07fe16e5" ], + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "8430ca0c-da4a-487d-a246-f9bbe6343c1f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6750,36 +7842,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "460659ab-5105-416c-8e54-e5463aeaa3f7" ], + "x-ms-request-id": [ "1e195b9d-bddd-457f-b397-a555a3f51437" ], "X-AspNet-Version": [ "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/06b24b6c-7f4f-48fb-87db-f35d5990ae21" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/63e9401f-6627-4ccf-9660-ed2f4c1ffbde" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "27bafcbc-5d4f-4264-8380-550ebae945b7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113510Z:27bafcbc-5d4f-4264-8380-550ebae945b7" ], + "x-ms-correlation-request-id": [ "e68e516a-e541-42d3-961e-fe83526ddd68" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013555Z:e68e516a-e541-42d3-961e-fe83526ddd68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A5419FF753F4256BDDEC532231121CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 471F8F7EF91D4FA5B86EF94E75C37948 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1025" ], + "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "350" ], - "x-ms-client-request-id": [ "a58eab17-3704-4407-bcca-8f7059858431" ], + "x-ms-unique-id": [ "379" ], + "x-ms-client-request-id": [ "2522f279-710e-4b79-bc97-6e845aeeeef5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6795,37 +7887,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53611c1f-c6e8-4f7d-9501-e73dcba0e496" ], + "x-ms-request-id": [ "f9e609bc-fd1b-4728-b86e-119922b20536" ], "X-AspNet-Version": [ "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/0d6b2e75-93f9-4731-acdb-5acfeab39b9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0192f36f-dbc8-46d2-a1a9-a70ab34f2bcd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2a6afa4-eb86-4fc8-b8c6-de5c71ca1413" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113510Z:b2a6afa4-eb86-4fc8-b8c6-de5c71ca1413" ], + "x-ms-correlation-request-id": [ "c0393568-1097-4198-9678-14ef57c9fbcc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013556Z:c0393568-1097-4198-9678-14ef57c9fbcc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C44278C145F48C5B898555DCB8F44C1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B02E27112FF4F048C3E5E52E79723FB Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4175" ], + "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "351" ], - "x-ms-client-request-id": [ "e7b70bcb-bdf8-4093-8ab0-dfc320ef71f4" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "9d44f00f-ab6d-43dd-9227-7b9c8b59e98d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6841,36 +7933,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3cec71a-6565-4503-833b-76cd0492858c" ], + "x-ms-request-id": [ "54588e4b-f1ad-4d51-964b-05f893fd3c8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9d1df2d8-335d-4327-904a-9a928d9c1892" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113511Z:9d1df2d8-335d-4327-904a-9a928d9c1892" ], + "x-ms-correlation-request-id": [ "6176265d-8958-40d5-b229-d144841763fc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013556Z:6176265d-8958-40d5-b229-d144841763fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D100CE74D5D8415F917864D45DE1FCFA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BBA80DD3C02B43D6AC7F84885FF890F0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "352" ], - "x-ms-client-request-id": [ "a44ed233-370c-44c6-8423-c7131a959004" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "c225e038-4cda-4ed2-bba8-92098654cbdc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6886,36 +7978,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a31ff10f-c620-4675-be50-c6151c2bf53f" ], + "x-ms-request-id": [ "a8969aee-73fd-4737-876b-6038122ccb3c" ], "X-AspNet-Version": [ "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/8051811d-3c32-458a-b13b-8e27bd492a39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c6bacaf5-5eec-4894-afa4-109f7a53579f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "98ff976b-707d-4405-8d27-7693b0e709ba" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113511Z:98ff976b-707d-4405-8d27-7693b0e709ba" ], + "x-ms-correlation-request-id": [ "6066d703-c896-4039-b15e-86a36dfe07ae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013556Z:6066d703-c896-4039-b15e-86a36dfe07ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30D3E9A7DE004AD78119395C13C8839F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15FC054272B54412A9B6EC426A6ACF6E Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1025" ], + "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "353" ], - "x-ms-client-request-id": [ "d9e72752-7c86-4f1b-9cde-74ac5ea57c1b" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "abde3d6f-f83d-4d81-a398-c967e5ccbc30" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6930,38 +8022,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8544F80D5\"" ], + "ETag": [ "\"1DC5506F25CB940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1a469ae-3c15-4787-ab6d-5f66b8e76ead" ], + "x-ms-request-id": [ "7b896fbf-68ad-4b5f-a720-2ccb605ca7f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "923530d5-8b5b-4bf5-9a76-99029b3e9287" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113512Z:923530d5-8b5b-4bf5-9a76-99029b3e9287" ], + "x-ms-correlation-request-id": [ "440ed52c-e0f0-4e3a-8da4-0c96b8d6989f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013557Z:440ed52c-e0f0-4e3a-8da4-0c96b8d6989f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 564E236B2277428A94440BDE74781DB4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 59872565686E441688D2588C430378C1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9696" ], + "Content-Length": [ "9651" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Python-Flex-Scaling-112925\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112925.azurewebsites.net\",\"functions-python-flex-scaling-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:34:38.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa112925.blob.core.windows.net/app-package-functionspythonflexscaling112925-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-112925\",\"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-112925\\\\$Functions-Python-Flex-Scaling-112925\",\"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-112925\",\"defaultHostName\":\"functions-python-flex-scaling-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "354" ], - "x-ms-client-request-id": [ "63c910a0-e4dc-411e-b6c0-ed4c7e6a9415" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "810fcb20-7731-4cda-bbaa-77903408a259" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6977,36 +8069,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7ea102c-ffd5-48ad-bd25-cee0c7125915" ], + "x-ms-request-id": [ "c5d33ddc-b52d-4dcb-9000-865a5d972076" ], "X-AspNet-Version": [ "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/b5da67f2-eb68-4fd1-93a0-f0fc3b37e925" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "9fd4a21d-56ae-49dd-840e-048c96b091f3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113512Z:9fd4a21d-56ae-49dd-840e-048c96b091f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1651ed0c-5245-47d3-ab4f-79e57793676a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "44c06dfa-f69d-41eb-be4e-a3b094198cb0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013557Z:44c06dfa-f69d-41eb-be4e-a3b094198cb0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C2019B159D34CD4865E2637C3300F97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A7DB2F4A5B4E41BD94C77F3AB01ABB12 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1025" ], + "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa112925;AccountKey=jDRI7fdUkz6o+EhOuyNOSoUQphywXAqB+W892igyHbIrV7oDyttfkhiLFn1oyGqd/y6qnz4vVQgR+ASti8sRnQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "355" ], - "x-ms-client-request-id": [ "32d6edb1-f7aa-4263-bf52-b1b3c20f203a" ], + "x-ms-unique-id": [ "384" ], + "x-ms-client-request-id": [ "43907254-4f6f-4651-8f6f-05773a47b1a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7022,39 +8114,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f37774a4-d568-4e4c-bbbb-b137d54e84bd" ], + "x-ms-request-id": [ "024007d5-6519-4db5-afb2-1d3cc921c7a0" ], "X-AspNet-Version": [ "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/9e598c5b-577f-4377-bad3-b262f7938871" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c25e7c01-746e-4911-b868-c3366d3e8f06" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113512Z:c25e7c01-746e-4911-b868-c3366d3e8f06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bfc9d033-670a-4440-b6c3-2022d2db014f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b569f49-55d3-4ba0-8b8f-825faa7cd48e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013558Z:9b569f49-55d3-4ba0-8b8f-825faa7cd48e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFF12813A56A4753BDE1073E37B831CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 111AD4A763F54347ACCC4872C725820F Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4175" ], + "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925/config/web\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "67897528-4a33-4be2-b9b3-f0db3dbaf314" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "0a571b80-3d5a-4124-bba8-8dd068036bdd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -7067,40 +8159,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8544F80D5\"" ], + "ETag": [ "\"1DC5506F25CB940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b559e3aa-f62c-46a8-914a-8f822b3986c5" ], + "x-ms-request-id": [ "2c89d62e-0b89-40c9-9fe5-59129c3434b1" ], "X-AspNet-Version": [ "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/794fe1e6-32cc-427c-862b-6839cb5b5a48" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "61d62180-9fdd-4edf-826a-e34824c49f3c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113530Z:61d62180-9fdd-4edf-826a-e34824c49f3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a7c7f26b-4577-45a2-a2c4-d3f78a77b1f8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013558Z:a7c7f26b-4577-45a2-a2c4-d3f78a77b1f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08C29B9AD9724E2D8BB1B030E838BF1E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2899B7929144730A31596E09533B4CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:57 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9651" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "386" ], + "x-ms-client-request-id": [ "07f81bd1-1e26-49d2-841d-f78609a6ccfb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "73" ] } }, "Response": { @@ -7109,39 +8206,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e934532-dce7-4566-af00-075197a2e7f7" ], + "x-ms-request-id": [ "f235ee6b-b094-480f-9d06-f0a5241e4e9d" ], "X-AspNet-Version": [ "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/ca7d531d-0584-4e14-b770-65253bebae84" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fc1682ff-5156-4f76-9d95-481e7e250f2d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113531Z:fc1682ff-5156-4f76-9d95-481e7e250f2d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4fc0fe0a-d079-42c8-8f4c-a059ad6b50fa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1e2876aa-c0c4-4f99-82c7-dd7c72cf8106" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013559Z:1e2876aa-c0c4-4f99-82c7-dd7c72cf8106" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5676BB5507EF44659A4E2AEB532460B0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:30Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A487DA3DCB264204879FD8E78063D29F Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "d76738d5-609b-47e6-b15a-845c47d3fd6b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "260" ] } }, "Response": { @@ -7150,42 +8251,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be073d7b-c1db-4822-859e-2b00dbe1912c" ], + "x-ms-request-id": [ "1860aac3-68fe-458e-9b87-17ddda9d67db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a6cb417-d986-45b5-a83a-7e04d5d93e20" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "64deb0e8-d687-47ec-a92e-7996b76506eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T113536Z:64deb0e8-d687-47ec-a92e-7996b76506eb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ae3ff2d6-8e51-4308-ae65-edb4fbd46342" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "38fd3706-f03d-441b-bc1c-bf2a2e94393d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013559Z:38fd3706-f03d-441b-bc1c-bf2a2e94393d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15D13DF3F33E4D1D8903679822A2FF89 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:35:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:35:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE1BBBD451BB4752BF488D3AF6403E35 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:59Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1908" ], + "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"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 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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "8c8c17ae-d7b6-4f3d-9261-ce0f0d4aa601" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "d1fbed1f-b2b4-42ac-ae71-e6477e70ed65" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -7196,41 +8297,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2acd2a9-c88f-452f-889b-25fe6a0fd0a6" ], + "x-ms-request-id": [ "5f5978c8-438a-4e20-93e9-a0421f1cbcb7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ceb35cd1-cc76-480e-9217-d87c2989b112" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113606Z:ceb35cd1-cc76-480e-9217-d87c2989b112" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "6eb1ddb8-c18c-4fd6-b6a9-5ccf557a4ce4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013559Z:6eb1ddb8-c18c-4fd6-b6a9-5ccf557a4ce4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EE14623463A47308E17D8C6391A819A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 078AC077A29A434DBB291675FEBC6E8B Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:59Z" ], + "Date": [ "Fri, 14 Nov 2025 01:35:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "361" ], - "x-ms-client-request-id": [ "8c8c17ae-d7b6-4f3d-9261-ce0f0d4aa601" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "389" ], + "x-ms-client-request-id": [ "ec27308b-62f6-4f2f-8c0a-ea84bbbf6b23" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -7240,37 +8341,210 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5506F25CB940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0625641d-9f87-4fbb-abae-3d75b771b81a" ], + "x-ms-request-id": [ "0cca534b-1581-422f-b1bc-f549598d8908" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08f6f86d-8613-4388-aa04-97c5862a788d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113606Z:08f6f86d-8613-4388-aa04-97c5862a788d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1c61991b-bb09-4fd4-b8a0-139e31ff375c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "9263bb73-17ad-41b3-805c-aaa152c1da84" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013618Z:9263bb73-17ad-41b3-805c-aaa152c1da84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B2B3CC3C80A45C7BDAA374C3D8D3C58 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEC82C1A346345F6B7D9852A8713D4DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:00Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": null, "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": { + "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-fqti\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "71" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a71acf3d-c772-46b0-953f-f809013a0705" ], + "X-AspNet-Version": [ "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/08ae8d5a-f763-479d-99fc-10b9951e7d24" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5ccddd59-1a0a-433e-bb2f-3d7d34c32184" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013618Z:5ccddd59-1a0a-433e-bb2f-3d7d34c32184" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EE361D9123634085812EC21B013F2E1E Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:18 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "ef3fde37-8fa1-409d-ace9-78c77b3adaf0" ], + "X-AspNet-Version": [ "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/ee038b6f-f2f1-44e4-a367-fdec7ef49ebb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "964eedca-6b39-46cf-b97d-8e6a67ebcb0c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013623Z:964eedca-6b39-46cf-b97d-8e6a67ebcb0c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AC7E10B9B82948A9B55F2E7812685EA1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1901" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-14T01:36:23.45\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "9a06323c-6277-41d5-ba8a-34943013af25" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1317e012-bc84-4833-8af1-ed041c1f903d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "07973cbb-571b-444d-acf9-ed10d1bfad6c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013654Z:07973cbb-571b-444d-acf9-ed10d1bfad6c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 10EF3998A9DE4D5DBCC6A1FA6A3271E3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "9a06323c-6277-41d5-ba8a-34943013af25" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b7bc5dfd-67c3-4e37-a2cb-9b613db8090f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "96256bf7-8459-4c22-8b74-a5338daf9dd4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013654Z:96256bf7-8459-4c22-8b74-a5338daf9dd4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED65DCF03B714EF59F9CB1F1DA92A58C Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"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": [ "362" ], - "x-ms-client-request-id": [ "5f130f87-d099-4e00-b51d-e7550a85e492" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "915186d2-3ebb-4607-9fca-076649f91684" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7285,36 +8559,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "792a3514-8ab0-4658-9a90-96108a96e8f8", "86455b94-0383-499d-a0c4-e58bda61c388" ], + "x-ms-original-request-ids": [ "31019884-7fe0-4a98-8d1d-32c49b3564ad", "b22c71f3-4f12-4afc-8ea5-7ee3f1d7db6d", "fb36a78b-eea7-4e8a-9eb2-a4b3492ba422" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4b4653e5-57f9-4eda-9836-25457f327f8c" ], - "x-ms-correlation-request-id": [ "4b4653e5-57f9-4eda-9836-25457f327f8c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113607Z:4b4653e5-57f9-4eda-9836-25457f327f8c" ], + "x-ms-request-id": [ "73db5d71-9ca1-4292-8871-0ce4053aeee3" ], + "x-ms-correlation-request-id": [ "73db5d71-9ca1-4292-8871-0ce4053aeee3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013655Z:73db5d71-9ca1-4292-8871-0ce4053aeee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0ABCA997B59F4972AA5079F361419212 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:07Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA93ABCD31D740DBBBA472731AD00A1F Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "363" ], - "x-ms-client-request-id": [ "2d157073-0e86-40de-aa0c-91a3e186cde7" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "f906fe2c-7aa8-44ff-9918-14470e1a3290" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7329,31 +8603,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1f216d3c-dab3-4ff7-ac3f-8096b0bea239" ], + "x-ms-request-id": [ "403efc67-7072-4a54-83c7-c089b5847401" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4700c1ff-b01f-4dff-8a4d-04be49adbf8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/db06a19b-efe2-445c-a43f-e33a5236bd9c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b5c25ea1-0507-48bc-b838-7905eb44631d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T113608Z:b5c25ea1-0507-48bc-b838-7905eb44631d" ], + "x-ms-correlation-request-id": [ "95dc2b21-e7e6-408e-9b81-5570f24020cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013656Z:95dc2b21-e7e6-408e-9b81-5570f24020cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3ACEC0A1613346128D247102E214FB80 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 996D1AFD3EDC439FB36CC20416B2E36E Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:82762403-501e-0084-28c8-531c2a000000\\nTime:2025-11-12T11:36:08.8008686Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:5e2d74ec-201e-0047-5c07-55925a000000\\nTime:2025-11-14T01:36:56.3623031Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -7368,25 +8642,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DFACD7B36C\"" ], - "x-ms-request-id": [ "00df87be-ce05-412f-b3fe-583f50942462" ], + "ETag": [ "\"0x8DE231E4C626BEC\"" ], + "x-ms-request-id": [ "611d92c5-ba82-4d1c-8971-a2a583ad277c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6b3d0e66-957c-4162-a5f4-a04161594955" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/640b8009-84b7-43a7-bb8c-fea3c1c7a3ea" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e52f174b-9f2d-4eb9-a458-fa9df911c3d9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113609Z:e52f174b-9f2d-4eb9-a458-fa9df911c3d9" ], + "x-ms-correlation-request-id": [ "789bca4f-d5fe-41f8-a660-6a0f77eac9b6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013657Z:789bca4f-d5fe-41f8-a660-6a0f77eac9b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E237C1D199F4F4CBCD6C011255D69B5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 30D95E939ACD42E099A44E3E3392C4AB Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "Content-Length": [ "460" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/blobServices/default/containers/app-package-functionsnodesystemidentity11292-0000000\",\"name\":\"app-package-functionsnodesystemidentity11292-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000\",\"name\":\"app-package-functionsnodesystemidentityfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -7397,8 +8671,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "365" ], - "x-ms-client-request-id": [ "698be997-b201-450b-85cd-deab533f3b86" ], + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "5603eb3e-f037-4b33-ac70-7780480e0af2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7413,36 +8687,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "bbac105e-8337-4e53-835f-ab25438b8862", "e9490599-18e9-48a7-b40e-13ec8311794e" ], + "x-ms-original-request-ids": [ "17f49201-d8df-4c96-8460-95afe1c32dd3", "177dda49-e7b3-4c0c-a179-b2bb3d6802df", "dbbe66f0-4031-4124-b116-96eb95847af5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f6be81af-4726-46cf-b6da-be7cfb274de7" ], - "x-ms-correlation-request-id": [ "f6be81af-4726-46cf-b6da-be7cfb274de7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113610Z:f6be81af-4726-46cf-b6da-be7cfb274de7" ], + "x-ms-request-id": [ "adab1313-ab70-4f85-946d-69369c03ff9b" ], + "x-ms-correlation-request-id": [ "adab1313-ab70-4f85-946d-69369c03ff9b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013658Z:adab1313-ab70-4f85-946d-69369c03ff9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BF179926F494F038E735A20A93FFB00 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99641BED7067466AB061718E61C16A32 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "366" ], - "x-ms-client-request-id": [ "69d7e228-6f4b-4e30-818d-d3ab7301b7b2" ], + "x-ms-unique-id": [ "399" ], + "x-ms-client-request-id": [ "bc3b5dc9-0b49-472b-9a1e-06f66b0e4738" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7457,30 +8731,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "62eaa06b-d377-496c-ab68-99dc260fdb77" ], + "x-ms-request-id": [ "32e2bd53-0e7d-42f1-af63-5ac6b9584fed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bcd28a20-c1fe-49e7-a73f-d4406df74edb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e9324b32-095f-45de-a564-ac52b64ba294" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "692c670b-309b-447d-bce5-5b625e55e771" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T113611Z:692c670b-309b-447d-bce5-5b625e55e771" ], + "x-ms-correlation-request-id": [ "27c3f3fc-16f4-4830-bf96-6c6a6c552fec" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013658Z:27c3f3fc-16f4-4830-bf96-6c6a6c552fec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40491FCB68754FEC88E05A17575AA248 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75F55458504B4C6BB1E4CC019C6DDAB2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:36:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"Ky2pxrgAJq6uFQNVPM7Rse3XEdAssBbQssUYKn03uJG1lER0qpRRjF7CRMAYfLI8IFlvffKrsbtN+AStHah/eQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"pSHOojsFN8q+Tack0Fyxk5X3kWIJdkDnZL3UplBajtACJ9TH98k15kf8peL/uAMEC2CVnaF8FTeG+AStB2gFug==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-112925?api-version=2015-05-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-fqti?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-fqti?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": { @@ -7500,36 +8774,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/eastasia/b512ff74-b2d1-47c3-aafe-bcf1ccb86dbc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/aaf3bb0c-89ab-4791-b9a2-f1ffbdf4cc69" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "08d3d86d-e380-4337-929f-282f26fa0d62" ], - "x-ms-correlation-request-id": [ "08d3d86d-e380-4337-929f-282f26fa0d62" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113625Z:08d3d86d-e380-4337-929f-282f26fa0d62" ], + "x-ms-request-id": [ "91841e29-a9af-485a-90bc-cc860467e065" ], + "x-ms-correlation-request-id": [ "91841e29-a9af-485a-90bc-cc860467e065" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013711Z:91841e29-a9af-485a-90bc-cc860467e065" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E6226F4AB9A45039516686A4A3966D4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07488BEBD2224D518691F565B724D87D Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:37:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1674" ], + "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e032497-0000-0200-0000-691471380000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Node-SystemIdentity-112925\",\r\n \"name\": \"Functions-Node-SystemIdentity-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-112925\",\r\n \"AppId\": \"6a33d57a-89ba-47c9-822f-a404ba432ebb\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d94d8d1d-e341-455d-bf5e-6d34b12c1ee6\",\r\n \"ConnectionString\": \"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\",\r\n \"Name\": \"Functions-Node-SystemIdentity-112925\",\r\n \"CreationDate\": \"2025-11-12T11:36:13.5609158+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-112925_6a33d57a-89ba-47c9-822f-a404ba432ebb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-112925-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\": \"\\\"78031fa7-0000-0200-0000-691687c70000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Node-SystemIdentity-fqti\",\r\n \"name\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"AppId\": \"269d91da-c89b-4f48-ae9b-b80601d7c805\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a1b15bef-4df1-46f5-8ef7-d8e8f302abca\",\r\n \"ConnectionString\": \"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\",\r\n \"Name\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:37:01.0199716+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-fqti_269d91da-c89b-4f48-ae9b-b80601d7c805_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"\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": [ "1641" ] + "Content-Length": [ "1632" ] } }, "Response": { @@ -7537,39 +8811,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C896A2F9A0\"" ], + "ETag": [ "\"1DC550735C0D1B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5725d06-03be-4643-803d-d96603514ab8" ], + "x-ms-request-id": [ "5bafb3a9-5c4c-468d-ac97-f993abe2eaad" ], "X-AspNet-Version": [ "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/87460ac1-9f21-457a-90cd-a3834e74d2ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/55ab2d77-92d5-4d86-808c-906abd12f3e5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e25a085d-3550-48e3-ba8b-91ca2ec402f0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113650Z:e25a085d-3550-48e3-ba8b-91ca2ec402f0" ], + "x-ms-correlation-request-id": [ "47365367-4d0b-47d4-b988-1da2094acab7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013737Z:47365367-4d0b-47d4-b988-1da2094acab7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE3B1961F3BE472890BBEFDA376EF8C5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:36:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:36:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21AECDCEB93B408184DCA2EE41BBC253 Ref B: MWH011020806052 Ref C: 2025-11-14T01:37:11Z" ], + "Date": [ "Fri, 14 Nov 2025 01:37:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9746" ], + "Content-Length": [ "9709" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:29.5933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:16.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "969dd141-418f-4b55-a2dc-c7f55c176113" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "0677798c-8a66-40b1-8906-252ebe9ff446" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7583,38 +8857,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8A2E225CB\"" ], + "ETag": [ "\"1DC550741B5BB75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ea5fcd3-fd34-4f8b-a1cb-f8252bf09a77" ], + "x-ms-request-id": [ "b331b179-d568-4e31-ba5a-9c890694b9be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1146ccc5-9ba3-4c80-9311-fa1e07422004" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113721Z:1146ccc5-9ba3-4c80-9311-fa1e07422004" ], + "x-ms-correlation-request-id": [ "33370161-9ea3-4941-8acd-e7c28dbeb4e1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013807Z:33370161-9ea3-4941-8acd-e7c28dbeb4e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B98F8A19BFEC4DE082B76A402B0F8AD3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E53F853EEA3548D8816E2339C5CF37DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9723" ], + "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:50.5566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "ce764cb5-bf6d-4e19-a15a-b90374700ade" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "f2676eb9-cb92-4900-af27-fcd73145e9e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7629,38 +8903,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8A2E225CB\"" ], + "ETag": [ "\"1DC550741B5BB75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ec0cc8b-0d59-4a73-81fc-20eb46957c7e" ], + "x-ms-request-id": [ "3825911d-648b-4342-8e4a-98329ee52e72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d724f5c9-06df-45f5-b245-ec44677399f3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113721Z:d724f5c9-06df-45f5-b245-ec44677399f3" ], + "x-ms-correlation-request-id": [ "797a9936-f0ef-4436-9705-6f9601ec44b7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013808Z:797a9936-f0ef-4436-9705-6f9601ec44b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2548E21C3994A1FBC9C356AC3EEDBB7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 862F4605418F47A8887F12DE9AC6083F Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9723" ], + "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:50.5566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "371" ], - "x-ms-client-request-id": [ "ad30e52c-c7a3-421b-9c14-266f3f973621" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "7a069502-8f86-4688-8a9e-2de346364aab" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7676,36 +8950,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08dfe1f7-1494-48b6-8444-08246dd1239e" ], + "x-ms-request-id": [ "8a6d7aa5-30d2-4a40-9593-9f1b3f219da5" ], "X-AspNet-Version": [ "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/02d02d32-05fc-409a-acfa-281565b5d122" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1c330f1b-8a74-47bd-aad3-325df136fdeb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9218e0f5-83ef-404b-869f-2d185799f40c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113722Z:9218e0f5-83ef-404b-869f-2d185799f40c" ], + "x-ms-correlation-request-id": [ "f5be1586-8671-4fc4-bc5a-87cf0f0bd7a3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013808Z:f5be1586-8671-4fc4-bc5a-87cf0f0bd7a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19D0D175EC8A470F9402FCB8F4DB25E3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B6426E03BEA45FAAB27EEE611F793BC Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "785" ], + "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "372" ], - "x-ms-client-request-id": [ "aff87ab5-483f-4808-b3dd-8531cca5a7f0" ], + "x-ms-unique-id": [ "405" ], + "x-ms-client-request-id": [ "b4222885-35a8-4aa2-a0c0-94cedc5a665f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7721,37 +8995,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf7d21b1-ade7-4081-b0c4-e82884843e9d" ], + "x-ms-request-id": [ "4a10a5bd-fdf7-48b5-8e54-77772f7b5475" ], "X-AspNet-Version": [ "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/923de47c-791d-475e-93a7-1d169b789bed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2cbc97c2-f0f0-41c2-a111-ad54f997ea7e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "72fff29b-5a30-4f8c-a776-43fe23c54401" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113722Z:72fff29b-5a30-4f8c-a776-43fe23c54401" ], + "x-ms-correlation-request-id": [ "246bdd15-b3cd-4d86-aa74-b1e50dcc96a5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013808Z:246bdd15-b3cd-4d86-aa74-b1e50dcc96a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FDB6D62C5324152BE49B28CF2016D30 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BB7544A61FC4996A8EE942B45B44FA9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4176" ], + "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"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\":33494,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"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\":39201,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "373" ], - "x-ms-client-request-id": [ "cc6d2302-d6eb-42dc-b905-0d28139b95ec" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "620e0675-64bf-4957-8ef0-c24c99c1abe4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7767,36 +9041,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b5764f7-79ba-4c6a-b948-c68d383adf26" ], + "x-ms-request-id": [ "717b4772-2410-4299-b6c4-4dbe73963d8c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "029c2eb1-7d59-4a84-bb9a-1b5a2f853274" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113723Z:029c2eb1-7d59-4a84-bb9a-1b5a2f853274" ], + "x-ms-correlation-request-id": [ "9cf68621-bb0c-4b83-b8be-852f818f372a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013809Z:9cf68621-bb0c-4b83-b8be-852f818f372a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9ED7B3B62EE64BBEA907620823CF3257 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 545C73D00896492894CB2113C6D9B939 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "374" ], - "x-ms-client-request-id": [ "2a3ed97c-fb85-43c4-92f8-d34f602fcc36" ], + "x-ms-unique-id": [ "407" ], + "x-ms-client-request-id": [ "cbbe3b6a-b16d-41c6-9711-cfab78b3f5ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7812,36 +9086,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d200dfe-2bab-4d40-b1f3-05c9054af28b" ], + "x-ms-request-id": [ "04bc1596-16ec-4771-b7e0-db0f450b7948" ], "X-AspNet-Version": [ "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/db747efe-8a79-4835-942e-a6bbfbca0816" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/91c3750c-1d86-4601-9136-650f6eb8ecc4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "535ec668-feac-4476-b15d-8f346d217565" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113723Z:535ec668-feac-4476-b15d-8f346d217565" ], + "x-ms-correlation-request-id": [ "678ec9e5-3f52-4e5d-a506-b846709ae40b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013809Z:678ec9e5-3f52-4e5d-a506-b846709ae40b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B8869937252425385DB04B05E587CB1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF90128CAE3342AF98F126F285C4A160 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "785" ], + "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "375" ], - "x-ms-client-request-id": [ "e63db21a-60d6-4018-ac03-6a935ffc5b6b" ], + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "5acd5931-bb51-495f-8b10-ee862d683927" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7856,38 +9130,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8A2E225CB\"" ], + "ETag": [ "\"1DC550741B5BB75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91aecb22-f8cd-4fff-915a-a31bce7f8f9b" ], + "x-ms-request-id": [ "e1e74463-b7ac-45bb-865a-9639f51843b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92444012-4aa0-4c6d-a9f5-4f1413c228b5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113723Z:92444012-4aa0-4c6d-a9f5-4f1413c228b5" ], + "x-ms-correlation-request-id": [ "c1a457dd-2525-4a85-82c9-7b7f0df5e533" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013810Z:c1a457dd-2525-4a85-82c9-7b7f0df5e533" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D83BCC4991C4D39A868AE5BD5DFF70C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6695072A172E437B892AA1A191E264E8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9723" ], + "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Node-SystemIdentity-112925\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112925.azurewebsites.net\",\"functions-node-systemidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:36:50.5566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa112925.blob.core.windows.net/app-package-functionsnodesystemidentity11292-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-112925\",\"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-112925\\\\$Functions-Node-SystemIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-node-systemidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"7622c093-6984-4d7c-b251-1e3990033632\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "376" ], - "x-ms-client-request-id": [ "8a6d4bbf-f0a2-45ab-a151-e04652a07a40" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "b4e189cd-e9dc-4d03-945a-e774789abb42" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7903,36 +9177,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "136ecee3-859b-452d-9d2f-287347c56a6b" ], + "x-ms-request-id": [ "489f28dc-e8c9-4035-8d47-5eb5b0bd4320" ], "X-AspNet-Version": [ "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/e9c409a9-974f-4431-9bb3-7e0359366bfd" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "d9800f68-c02c-45aa-bae8-bd2238f88ec7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113724Z:d9800f68-c02c-45aa-bae8-bd2238f88ec7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2ae2237c-f5f6-4bb4-90b9-3d27f00677f3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "eda80619-09ac-48da-9952-4b173feddbe1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013810Z:eda80619-09ac-48da-9952-4b173feddbe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3421B7514969439C9D5039D26A3508C4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76C51C55262D43DBB070F27064413169 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "785" ], + "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa112925;AccountKey=gGNAphQMLd1R2lHbcSvgHUuCGasqNETKlCBOuRTguY1T2BbzQmXAonimGHhCOwfTtwo+QsfTur7g+AStEGcaHg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "377" ], - "x-ms-client-request-id": [ "103bb993-4d27-4b4c-b44e-edf3c47127c2" ], + "x-ms-unique-id": [ "410" ], + "x-ms-client-request-id": [ "a9bce7be-57f2-438c-8156-98325c5c4175" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7948,39 +9222,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a336973-67af-4cad-9235-c1d3bee8593e" ], + "x-ms-request-id": [ "32b100cf-408b-4aaa-b1a3-b7bcb1eb8283" ], "X-AspNet-Version": [ "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/14db9db8-9430-40d1-8cca-5f0c4fb14930" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9cd4fdef-0c45-4ed3-b93b-5aca6058f99e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113724Z:9cd4fdef-0c45-4ed3-b93b-5aca6058f99e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3055745a-e36c-41c1-aa1a-1fe30b5bab78" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bc8e5ffe-72c8-46eb-87ae-36e50756db88" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013811Z:bc8e5ffe-72c8-46eb-87ae-36e50756db88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F86BDB578E1B423F8FF825CD30F4AB4A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C3E107B513B42958B9FA4E7A09EBCC2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4176" ], + "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925/config/web\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"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\":33494,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"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\":39201,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+21": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "4d52adf6-1fb9-4968-a320-2b8b63553fa3" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "b8bd273b-2541-48d4-912e-b62d8859cb4f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -7993,40 +9267,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8A2E225CB\"" ], + "ETag": [ "\"1DC550741B5BB75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4b51635-9654-435a-be8a-9b963cb13e56" ], + "x-ms-request-id": [ "2df6fc67-6c2e-4ef4-9fca-260f4f0cf4af" ], "X-AspNet-Version": [ "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/e166eba2-19e4-4cb8-b97c-a915b3271690" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "13768b72-4225-4a56-a402-b420d0e584f4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113746Z:13768b72-4225-4a56-a402-b420d0e584f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d2ea383a-e9d2-4c19-bddb-3d39881855fa" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013811Z:d2ea383a-e9d2-4c19-bddb-3d39881855fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A45C3283099E41558BDAE893AD58FA6A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE9113F5DC6746C8BFAF89A70EE012FA Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:11Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:10 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9691" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", "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": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01+22": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "9ba7eb0f-766a-4576-a2c5-5f5109091f58" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "79" ] } }, "Response": { @@ -8035,39 +9314,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6853e9b4-bc0d-477e-a5f9-e4c49e4a8a30" ], + "x-ms-request-id": [ "627a0e5b-ee83-477a-9f29-da6a460e01b4" ], "X-AspNet-Version": [ "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/62b9259e-67bf-45c9-b1fe-459a564ef1e3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "42a60aaf-b8a3-43a8-bcd8-da915bb6e359" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113747Z:42a60aaf-b8a3-43a8-bcd8-da915bb6e359" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4baa6c1e-f4be-4149-9563-78ff01953251" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c2d6249b-c91b-47e9-9e42-ca79673e4827" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013811Z:c2d6249b-c91b-47e9-9e42-ca79673e4827" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D4E46F5ACF844C8BD09F7026EB1224D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:46Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB7030C0738448B39C2453A3806132BB Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:11Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01+23": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "1f477b8b-a89a-4f26-a3ee-7f0ce67f3361" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -8076,42 +9359,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e24ede74-9f33-4ace-b49a-4531d315c647" ], + "x-ms-request-id": [ "1327cd4c-ae26-4425-a5a4-864ded74835e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5127a546-6291-4f74-a74f-1156c31c473c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "86d4c811-c4ab-4504-8b76-afb34eba85e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T113751Z:86d4c811-c4ab-4504-8b76-afb34eba85e1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/82c2601a-bc8f-4fb6-8c1a-f27a8dff85d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "29038fd0-2769-47f0-8738-8f4b6cec3e39" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013812Z:29038fd0-2769-47f0-8738-8f4b6cec3e39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38B409499E9A4F41BDC882BA3662C4E1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:37:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:37:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1780070C353840A4A5872F01BA9B4329 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:12Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1908" ], + "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"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\":39201,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "382" ], - "x-ms-client-request-id": [ "8b8fd9a6-d439-4cd4-a587-5fbdaefd91cd" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "414" ], + "x-ms-client-request-id": [ "fbdb15f5-f50b-4d4c-8148-458cf44f5943" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -8122,41 +9405,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14b65762-0621-4b8e-9be0-7c2591069ecf" ], + "x-ms-request-id": [ "dc99f662-919a-42e9-bb7f-41075c40a3e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "69c74840-9ba0-4f81-828b-3e26860fcd10" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113822Z:69c74840-9ba0-4f81-828b-3e26860fcd10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "60d61264-0585-4f9d-bd7d-e67f7e759376" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013812Z:60d61264-0585-4f9d-bd7d-e67f7e759376" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58A96C01A4A84D118370F3317D37F340 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 173E1C6864D645F48B31637A4AA3F47B Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:12Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+25": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "8b8fd9a6-d439-4cd4-a587-5fbdaefd91cd" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "415" ], + "x-ms-client-request-id": [ "2e4e126c-1ff1-4866-85a0-b37a019b199e" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -8166,44 +9449,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550741B5BB75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "557d93a2-dee1-456a-ba28-56bffbc82e7b" ], + "x-ms-request-id": [ "6af957a9-c794-4058-8295-b86944efca39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7f761fd5-8da0-4d3f-8de9-81f6fc57f2ca" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113822Z:7f761fd5-8da0-4d3f-8de9-81f6fc57f2ca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3a558e68-6acb-4321-9b99-1dcd8b0c0921" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "85386ce9-8374-4856-8564-aef806b20980" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013827Z:85386ce9-8374-4856-8564-aef806b20980" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E313E3A3B0D94CCB9F8FE96A5851C1E2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8D27120D28644159D2B2524471C363B Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:12Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": null, "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": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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-Pwsh-UserAssignedIdentity-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "384" ], - "x-ms-client-request-id": [ "4629d387-9b21-4af8-b32c-4708c4deabf4" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "77" ] } }, "Response": { @@ -8211,36 +9490,213 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3a8b941c-7308-42cf-b805-fc1e8f71bd64", "e5093fd6-af65-44fe-9c4f-655fe4757cb6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "fb1341ef-b7e8-4974-9aad-3c42bc45802e" ], - "x-ms-correlation-request-id": [ "fb1341ef-b7e8-4974-9aad-3c42bc45802e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113823Z:fb1341ef-b7e8-4974-9aad-3c42bc45802e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2fb0314a-bc05-4ce5-8573-04bf22faea3e" ], + "X-AspNet-Version": [ "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/bd125045-36f2-4d96-b0cb-2d771dc4c72a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c18adf24-fdf0-4edb-a5ef-4a26046c8f48" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013828Z:c18adf24-fdf0-4edb-a5ef-4a26046c8f48" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AB1A3D13E3AF4AC3834D1254684747C6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:27 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "400e09ba-cc2c-49db-a688-69d3610227ef" ], + "X-AspNet-Version": [ "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/48423e2b-e03f-4366-bd1b-570dd903c471" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "0e46d89b-8545-4398-a54d-88f5bbb8d6e7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013833Z:0e46d89b-8545-4398-a54d-88f5bbb8d6e7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0573B1F5B5D14569BD7D834047642877 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:38:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1901" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"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-14T01:38:33.3\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "419" ], + "x-ms-client-request-id": [ "8847fe45-f982-4792-b4f5-43eb60ede3e1" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "30bbdb8b-69e0-43e2-894f-0d0032555cf9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f28b0759-fcc2-4610-87c9-23622a65b416" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013904Z:f28b0759-fcc2-4610-87c9-23622a65b416" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9E5BE74F182A4DD4BAA3B6EFE886141B Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "8847fe45-f982-4792-b4f5-43eb60ede3e1" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ce34daa0-3ec3-4d76-acc1-9f3a15a92b1e" ], + "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": [ "d03d3d12-317b-433e-8a4a-a999fd59004a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013904Z:d03d3d12-317b-433e-8a4a-a999fd59004a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 695C56682E964E45A286010464B13E78 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"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": [ "421" ], + "x-ms-client-request-id": [ "13a508fd-cd86-47c4-9e27-6ca19ee8128f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "4de9ce12-aff7-4cb9-85f2-da7c3cd459f4", "8006b9b9-92c5-4260-b75b-826aafeebb8e", "41630d67-5830-4579-a47a-fcf788e97101" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5ad1dd6b-7642-4420-a717-19452f4ba313" ], + "x-ms-correlation-request-id": [ "5ad1dd6b-7642-4420-a717-19452f4ba313" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013905Z:5ad1dd6b-7642-4420-a717-19452f4ba313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AAACDAEFD1F4AFB8C149F384931D2A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B249C218D4B64F3281C64F2F07BD2D6B Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:04Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "385" ], - "x-ms-client-request-id": [ "8df5388b-e598-4b6f-b1a7-b55bdb2700c7" ], + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "ce60d2c7-6e8b-4cf4-913f-b1a3da33659f" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8255,31 +9711,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fd77c511-b52e-4ac2-88b1-65a58bb61529" ], + "x-ms-request-id": [ "53d90fd8-56b7-4b42-b01c-3d0faed5f1f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/a8b5734a-ada3-41b9-9c73-5e537a1e5d09" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e5d64ec6-79b7-47c6-a4e2-5c03a39fce7f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a44e177b-a5da-41a0-b6e8-18b71f41d25d" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T113824Z:a44e177b-a5da-41a0-b6e8-18b71f41d25d" ], + "x-ms-correlation-request-id": [ "4bd1034c-7b55-4ce6-9244-884d8ce09378" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013905Z:4bd1034c-7b55-4ce6-9244-884d8ce09378" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A297C9DD0E44D9DBAF9C6A2F4A9B06A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C820B1BB1044D9F99ED80711ED57D48 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:5a80c971-201e-003f-1cc8-53138b000000\\nTime:2025-11-12T11:38:24.2629858Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:b1cd3289-301e-0066-5107-55210b000000\\nTime:2025-11-14T01:39:05.6559098Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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": { @@ -8294,37 +9750,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21DFFD8C159B\"" ], - "x-ms-request-id": [ "55bf1d3f-4c0a-482b-8f80-e811b930d93b" ], + "ETag": [ "\"0x8DE231E99751E2A\"" ], + "x-ms-request-id": [ "c5b50143-38fe-4b88-8fe8-db91236e7a59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a9150321-a1e6-463e-b4a1-3cf5ecb198e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8ec26aba-764b-4a04-b141-a25c13ad55fc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "141d4e13-d004-44d9-bded-3b90218c8209" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113824Z:141d4e13-d004-44d9-bded-3b90218c8209" ], + "x-ms-correlation-request-id": [ "3071491c-6459-42d7-ae08-5f024fe8bd8e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013906Z:3071491c-6459-42d7-ae08-5f024fe8bd8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F49EDFAEA9F344D593C121E40FB44E38 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4320E9D6D7C84F259588D31C27E11D12 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:05Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "471" ], + "Content-Length": [ "468" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000\",\"name\":\"app-package-functionspwshuserassignedidentit-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925?api-version=2018-11-30+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti?api-version=2018-11-30+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925?api-version=2018-11-30", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti?api-version=2018-11-30", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "c76384b6-6b24-4140-ba02-379ca95d112a" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "5adf3727-6337-4b8e-bf28-3a6769bdce53" ], "CommandName": [ "Az.Functions.internal\\Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8342,20 +9798,20 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "26b7d855-55b7-42c3-8491-064e04f5f187" ], - "x-ms-correlation-request-id": [ "26b7d855-55b7-42c3-8491-064e04f5f187" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113825Z:26b7d855-55b7-42c3-8491-064e04f5f187" ], + "x-ms-request-id": [ "e44706f1-b32a-4828-bc5b-b1e47b48274a" ], + "x-ms-correlation-request-id": [ "e44706f1-b32a-4828-bc5b-b1e47b48274a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013906Z:e44706f1-b32a-4828-bc5b-b1e47b48274a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 582C52DE7C9C42FD8CA6F8E3ED7EFBF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9616EB16FFF49AF875085082DABE889 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "Content-Length": [ "466" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"name\":\"my-flex-app-uai-112925\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}", + "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"name\":\"my-flex-app-uai-fqti\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}", "isContentBase64": false } }, @@ -8366,8 +9822,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "4bd3ccc2-6054-4f84-be2b-5cd0ffdbdd67" ], + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "001238c8-f51c-4bf8-a8bb-44f351216d0e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8382,36 +9838,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "928dcdb3-8f81-4067-83c0-16f096aa55c6", "8dd6cb2a-1317-43da-a9ae-08b5edf05067" ], + "x-ms-original-request-ids": [ "7d7522ad-7123-4ad8-a184-aa0b7d854cec", "1f164fc1-1b08-4c34-995d-1b737ae2970c", "27464a37-dd72-4879-9de7-599f72bae75e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c853d660-e91e-427f-8522-7aa26e0d52a5" ], - "x-ms-correlation-request-id": [ "c853d660-e91e-427f-8522-7aa26e0d52a5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113825Z:c853d660-e91e-427f-8522-7aa26e0d52a5" ], + "x-ms-request-id": [ "4cb5ea4e-0e94-4101-9349-aec0e3e0ea82" ], + "x-ms-correlation-request-id": [ "4cb5ea4e-0e94-4101-9349-aec0e3e0ea82" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013907Z:4cb5ea4e-0e94-4101-9349-aec0e3e0ea82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 932249F2E01F4C7DB0B89807DDB93724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5AEC079796E4B9E93369AA406CCCD3F Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "ba26d0ee-711d-4973-b2fa-a0f96d95347f" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "d73c03a8-2b10-4350-bfd0-f043f7e5ac7a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8426,30 +9882,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "39bfc460-1a7c-453a-a89d-e8856500be38" ], + "x-ms-request-id": [ "ac7d1ee0-77fd-4189-a4a5-54a7fd291070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8043d095-892b-40eb-9ddb-9db377c5a598" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5191ec04-a1e2-47c3-85df-a35bfbaf623d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c995772a-5564-491a-9bb5-c796f01d2f8b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T113826Z:c995772a-5564-491a-9bb5-c796f01d2f8b" ], + "x-ms-correlation-request-id": [ "b25f56ee-4145-448a-bb10-3e1d92826c25" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T013907Z:b25f56ee-4145-448a-bb10-3e1d92826c25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B84E836CD0D44EF9BFF588232C3C848 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17670B3401B34D47B193C38278918039 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"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-112925/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2015-05-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-fqti?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": { @@ -8469,36 +9925,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/eastasia/05b72e53-5093-48ee-8938-a6a6cadd36b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/36bb0163-3bce-4cef-99d4-f8c0b8e5479d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "66868887-54f8-499d-a9ca-9a8716335904" ], - "x-ms-correlation-request-id": [ "66868887-54f8-499d-a9ca-9a8716335904" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113838Z:66868887-54f8-499d-a9ca-9a8716335904" ], + "x-ms-request-id": [ "a7a6f823-15f9-4399-8361-4af72f516a67" ], + "x-ms-correlation-request-id": [ "a7a6f823-15f9-4399-8361-4af72f516a67" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013920Z:a7a6f823-15f9-4399-8361-4af72f516a67" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA1B41A0FDD14F148812B839B6F07819 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:38:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCB3283567A34785BD7F6D1B2D1AF03A Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1708" ], + "Content-Length": [ "1696" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03a29a-0000-0200-0000-691471be0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"AppId\": \"b67d6d86-8122-4475-8e21-d77b809defdc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ccecbaee-8cab-45d3-be5b-5192664369ea\",\r\n \"ConnectionString\": \"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-112925\",\r\n \"CreationDate\": \"2025-11-12T11:38:27.6901102+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-1129_b67d6d86-8122-4475-8e21-d77b809defdc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-112925-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\": \"\\\"780384ae-0000-0200-0000-691688480000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"AppId\": \"4eae3893-4654-43e2-94cf-9c61db1775ec\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c59dec64-225e-4f2a-9c2b-65004cec61ca\",\r\n \"ConnectionString\": \"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:39:10.2457191+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-fqti_4eae3893-4654-43e2-94cf-9c61db1775ec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-fqti-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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa11292.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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"\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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsafqti.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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"\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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2114" ] + "Content-Length": [ "2100" ] } }, "Response": { @@ -8506,39 +9962,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8E58D9CA0\"" ], + "ETag": [ "\"1DC550781B59A4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01a251c7-a7eb-462d-82dc-af14e3c2660b" ], + "x-ms-request-id": [ "111e727e-1d2a-4abc-9d83-a9691436a18e" ], "X-AspNet-Version": [ "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/8ccac54c-6313-4523-bcfb-b5d9a2fb0cb4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fa925d70-d9b1-4377-8b0c-c4fd72fb7e67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "dc7d30b1-9e09-4489-bf04-614732267d80" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113903Z:dc7d30b1-9e09-4489-bf04-614732267d80" ], + "x-ms-correlation-request-id": [ "61e41a57-806d-482a-ad16-edc2de2e56b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T013947Z:61e41a57-806d-482a-ad16-edc2de2e56b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60EC7D811A15421BB88F2195A7901631 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:38:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B04EC478553466B85AA6BE7AB551322 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:39:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10214" ], + "Content-Length": [ "10171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:38:41.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:23.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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "392" ], - "x-ms-client-request-id": [ "286ad32e-71b1-4424-9eb1-c91e3f16943e" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "4fe47dcb-d644-44ed-b604-7aa79f774579" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8552,38 +10008,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8F1E12120\"" ], + "ETag": [ "\"1DC55078F1E5255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc5776ef-ef0a-4925-bebb-b8073574f95b" ], + "x-ms-request-id": [ "84062b76-6d61-4967-bd7e-85b0d379c784" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "528ae4d8-dd94-4ba8-afa9-ef66a5d8a909" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113933Z:528ae4d8-dd94-4ba8-afa9-ef66a5d8a909" ], + "x-ms-correlation-request-id": [ "b7c3d854-1387-4f91-82a2-9becc6bd3607" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014017Z:b7c3d854-1387-4f91-82a2-9becc6bd3607" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D87D911A54B1457BAE37D9A4FE86593B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3FDF98C9783D4EB496980E4DAD386160 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:17Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10186" ], + "Content-Length": [ "10153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:39:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "393" ], - "x-ms-client-request-id": [ "4d097ee0-f92e-4ca8-a15a-f284b357fcd1" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "889a156d-7fa6-446c-8c94-6089b9a28083" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8598,38 +10054,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8F1E12120\"" ], + "ETag": [ "\"1DC55078F1E5255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d80b4f80-e2e9-4142-a908-bc4e43e691eb" ], + "x-ms-request-id": [ "8dabcd4c-2c32-41f6-9243-908422322018" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "788c3c0b-4b73-4eea-8949-cf92b624a213" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113934Z:788c3c0b-4b73-4eea-8949-cf92b624a213" ], + "x-ms-correlation-request-id": [ "e194751e-f5e1-4bc7-aea7-531f7502757e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014017Z:e194751e-f5e1-4bc7-aea7-531f7502757e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21D57BEA14DE43B9882D92F62A556BCB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09C7C1D24FF446C2B2337B49E15AEBE0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:17Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10186" ], + "Content-Length": [ "10153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:39:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "f9523d21-4537-4940-93b5-21cb80e3e8be" ], + "x-ms-unique-id": [ "431" ], + "x-ms-client-request-id": [ "5cfd11f1-87a7-472f-8c09-392a8ffb1abf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8645,36 +10101,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "959d38cd-8468-4c55-b3f1-442eb3f60c4b" ], + "x-ms-request-id": [ "65d20bc5-7139-49aa-b767-524b923f75e2" ], "X-AspNet-Version": [ "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/24fb4a02-476f-473f-a798-cf7f3e941e64" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/09c8e150-797a-4d71-8c88-be96dc2ccc36" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "add4ed19-8aff-40cd-b080-c66d20323090" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113934Z:add4ed19-8aff-40cd-b080-c66d20323090" ], + "x-ms-correlation-request-id": [ "fd977d97-1886-43ea-aac0-baf52a8bf9b4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014018Z:fd977d97-1886-43ea-aac0-baf52a8bf9b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 922A460BDF414845BAF54DA3B1FDA346 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F825C06E8F604A999CCCD740D7CE2BF7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "796" ], + "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "395" ], - "x-ms-client-request-id": [ "b3119ab0-0b55-458b-9cbe-e182b5f69135" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "6682827f-a350-486b-98a6-5e70b5b4286e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8690,37 +10146,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64f8de3b-44e3-4b3a-afa3-cdf47cf46503" ], + "x-ms-request-id": [ "0ddf0177-248f-4cea-95cc-980b080231e3" ], "X-AspNet-Version": [ "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/58a93bda-cc2b-4ebf-a4b9-5d004888d160" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0da5e2dc-f836-4204-af00-5173c0ff99e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "83a18b72-c847-4514-a32f-f3301f9f9d0d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113934Z:83a18b72-c847-4514-a32f-f3301f9f9d0d" ], + "x-ms-correlation-request-id": [ "7eec5441-7ad7-4863-bc88-0b3110b8c174" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014018Z:7eec5441-7ad7-4863-bc88-0b3110b8c174" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA964AC1EEAF426BAD2FEA81D0BF3AF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 215E563EC2E64144BA613B5A8EA633D0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"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\":33495,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"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\":39202,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "396" ], - "x-ms-client-request-id": [ "d22d37ae-e403-4e18-a8db-32b399cc2d83" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "4e3615fa-a382-426e-b3f4-b1a90d05f34a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8736,36 +10192,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1d2aebc-4757-4cf5-98d2-16b847f99a20" ], + "x-ms-request-id": [ "5bb5528b-e123-413d-9417-38310de2c487" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "39dbfc37-0dfe-4bb0-ae76-3f4c45f6a72f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113935Z:39dbfc37-0dfe-4bb0-ae76-3f4c45f6a72f" ], + "x-ms-correlation-request-id": [ "9c933eaf-b479-49bc-916f-d71b79096613" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014019Z:9c933eaf-b479-49bc-916f-d71b79096613" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86334DB63AB248DB9001762666258228 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56A33B1964D947458B3C3C779E811451 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "397" ], - "x-ms-client-request-id": [ "c909918c-de0d-4e1b-8d83-ad449166ee5b" ], + "x-ms-unique-id": [ "434" ], + "x-ms-client-request-id": [ "b7446353-886c-4460-884f-e94b2259910e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8781,36 +10237,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90f3d5d5-8841-4ca4-af87-0a7dc2d5c507" ], + "x-ms-request-id": [ "b184d90c-1e94-4b28-961d-a06b0ef66a50" ], "X-AspNet-Version": [ "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/21754a68-0825-4d3f-a0e5-9524fda17fa8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/59d08525-8dda-4f8e-9938-392ef2c27889" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "441b6735-6937-4f4f-9775-71522829f920" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113937Z:441b6735-6937-4f4f-9775-71522829f920" ], + "x-ms-correlation-request-id": [ "a0a37136-30d6-47bd-b462-63eee192181b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014019Z:a0a37136-30d6-47bd-b462-63eee192181b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44CCEBC6CBC24D0B8ABCA104DDDBB2CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E36BF1DAFD7348D88E80D37EE6627DD3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "796" ], + "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "4730ac0a-71aa-4a60-b54e-3887e74bdc90" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "23714fe9-33c5-4f89-8aa6-fd44b7dfe2e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8825,38 +10281,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8F1E12120\"" ], + "ETag": [ "\"1DC55078F1E5255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45879194-d52b-45d0-947b-0109c49bf4d0" ], + "x-ms-request-id": [ "0278344d-634b-4643-b4d3-925d87bf706b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8f0481c6-98c7-4529-a7bb-aacb70b948e0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113937Z:8f0481c6-98c7-4529-a7bb-aacb70b948e0" ], + "x-ms-correlation-request-id": [ "2811027e-ca07-48c2-8050-6743071de07f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014020Z:2811027e-ca07-48c2-8050-6743071de07f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7BE1670E4CD549A09462D519756CE15B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D36F0E823644B58B10BE6EEC13F90E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10186" ], + "Content-Length": [ "10153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112925\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:39:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\",\"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-112925\",\"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-112925\\\\$Functions-Pwsh-UserAssignedIdentity-112925\",\"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-112925\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925\":{\"principalId\":\"3f8376fb-b747-4ef3-b5a7-2249978a1f9c\",\"clientId\":\"e76d6800-ea07-432f-b8ef-88057ad63ff7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "af17c833-0946-4610-8b57-233cf9f0631b" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "504e7389-6f66-4b08-a6a5-ece4529b08b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8872,36 +10328,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e139871a-5fca-43ba-851c-dbb4133ef106" ], + "x-ms-request-id": [ "d4c5c7b3-09c7-4750-a631-13769214f47d" ], "X-AspNet-Version": [ "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/c0db0e7e-a134-4ef1-98a4-14c891b6bebe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/456127d3-44e8-4dca-b526-563b58361b48" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "588e3089-c137-4edf-859a-0ef08ea21c46" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113941Z:588e3089-c137-4edf-859a-0ef08ea21c46" ], + "x-ms-correlation-request-id": [ "df68674d-a190-49ed-8f96-e27f10eb7264" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014020Z:df68674d-a190-49ed-8f96-e27f10eb7264" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C655FF3D6DDA4AEAA3D5D043D9A3BB52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1219244B9E09482D86F0EB65713A413A Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "796" ], + "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", "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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "400" ], - "x-ms-client-request-id": [ "ea0491b9-839d-4d61-86c3-92c33eeb3f7a" ], + "x-ms-unique-id": [ "437" ], + "x-ms-client-request-id": [ "e460b023-1c45-4737-aafa-272366102357" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8917,39 +10373,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1fab4d5-bb86-4d63-85e8-4ebfe22f756a" ], + "x-ms-request-id": [ "02e7a296-a0ef-4f96-893e-63f277087263" ], "X-AspNet-Version": [ "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/fd73c2ec-6db3-4bd7-84b3-789b1b4b0ff9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4726059f-6f23-433c-a99c-2de05b356fd5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113942Z:4726059f-6f23-433c-a99c-2de05b356fd5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/031eeac1-d416-404d-b2e9-2ce6d31ec605" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "286a8d2f-9790-4b36-ae9a-32315fa9f0ec" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014020Z:286a8d2f-9790-4b36-ae9a-32315fa9f0ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF0FE1C710364E518EB06CC8467A3587 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 679824FD498D4F4B81D2FF31A63CE08D Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"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\":33495,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"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\":39202,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+22": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "401" ], - "x-ms-client-request-id": [ "255b3721-d31b-42c8-bbe9-d29c1eaf4121" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "cf138c90-d44a-41cb-b09c-60515383b95c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -8962,40 +10418,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C8F1E12120\"" ], + "ETag": [ "\"1DC55078F1E5255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad776ea0-5e19-45c6-bc17-24ada3b2a800" ], + "x-ms-request-id": [ "954b45b6-b0e4-4309-a25a-0e9262b20026" ], "X-AspNet-Version": [ "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/ab92d657-77ef-412c-965d-8365c9c47e7d" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "a03aa24b-7346-48d1-a4e2-1403b5c6db2f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T113957Z:a03aa24b-7346-48d1-a4e2-1403b5c6db2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4a6cc922-6eee-490b-b20e-b22ff911f2d8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014021Z:4a6cc922-6eee-490b-b20e-b22ff911f2d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC4C3277D0D847889367A00FFD9E12DB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:39:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C56587284B14A209CF9F1CEC5D68C4E Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:20 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "10153" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", "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": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01+23": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "4aed9a20-a008-4de9-9927-c8e3175866cb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] } }, "Response": { @@ -9004,39 +10465,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb07fdfa-54ce-452f-9a09-5afc2fb06b8e" ], + "x-ms-request-id": [ "c04eade4-f6ae-4618-a536-4aca54f804eb" ], "X-AspNet-Version": [ "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/737a17ae-7f4c-49ca-a9ec-a2ba51712740" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b3483a40-bac4-413a-b251-27604cf7dd01" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114001Z:b3483a40-bac4-413a-b251-27604cf7dd01" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f8ec339e-8e16-40b2-a984-aca9a9cc6786" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bd6a28ec-e908-425a-a805-0033e94a6cae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014021Z:bd6a28ec-e908-425a-a805-0033e94a6cae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6C81B0C3A024E988300A7C7D895D271 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:39:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98716D4320DD4148ACDAF08C61C6A367 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01+24": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "2492be2e-a556-40ba-a199-f98aaa5a64e5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -9045,42 +10510,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01cb969a-39e9-48e2-9f4e-641b212610a2" ], + "x-ms-request-id": [ "acaf9d7d-89c5-4bf0-9593-2c617029ee51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/3fb253fb-0426-43b9-b832-c8a3868f5098" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-correlation-request-id": [ "a4fc0bcf-a4ea-4857-898c-bb9f9ef54e24" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114009Z:a4fc0bcf-a4ea-4857-898c-bb9f9ef54e24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ae965505-b6bb-4030-af71-567c0b5695a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2358c6f9-4b3f-41bb-817d-f24aecd107b2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014022Z:2358c6f9-4b3f-41bb-817d-f24aecd107b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFD675182E1B4B1390F24AF8D5CB33AD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:02Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FF2B46048DF492EA3D70CBA4A917623 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1908" ], + "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"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\":39202,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "405" ], - "x-ms-client-request-id": [ "2ad05347-4544-4bdb-96fd-7f13d71c7638" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "6b880cc5-40cf-46ea-90b4-693a1a9265c2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -9091,41 +10556,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6a3ed80-08e1-47b9-8dd9-03e49eaaf8ad" ], + "x-ms-request-id": [ "b2ce21a7-b988-437c-8897-55bf4bd6ca6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "22952656-29ea-4d32-bf17-d038d9498397" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114039Z:22952656-29ea-4d32-bf17-d038d9498397" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "206f12d4-9f70-4d17-87b5-1c443d56de1a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014022Z:206f12d4-9f70-4d17-87b5-1c443d56de1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DC4231955F84D7193B699F7A319ED3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F88EEBE2AD344BA5A6BE2A3E39374153 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "406" ], - "x-ms-client-request-id": [ "2ad05347-4544-4bdb-96fd-7f13d71c7638" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "11d78a74-2ca0-46ea-ad80-ca5b31633d8f" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -9135,37 +10600,210 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55078F1E5255\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28137166-5c12-4a5a-977c-964e82db9ba8" ], + "x-ms-request-id": [ "1457f33d-4faf-4dd5-b8a9-e803d73fc026" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "712d039e-c080-49df-9559-e937189ba6a9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114039Z:712d039e-c080-49df-9559-e937189ba6a9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0eff27b5-781d-46e3-9bcb-b509e5c621e2" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "85c0c094-f6c0-4306-94d8-a45d569898eb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014041Z:85c0c094-f6c0-4306-94d8-a45d569898eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 614FBAE9831942CDA6EED0BB86F3CF3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD2E1E2B28084A2C940649043A2E04D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": 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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": "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, + "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-fqti\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "407" ], - "x-ms-client-request-id": [ "6895f6ee-c943-4d9d-abed-9b726e1f1619" ], + }, + "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": [ "56f93e2b-f762-48c8-9110-fb6d13c945b5" ], + "X-AspNet-Version": [ "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/f353c4ea-4147-42a0-8f35-bd5aed2fe946" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0a824fa2-43e5-4512-89a8-c43c1b942eaf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014042Z:0a824fa2-43e5-4512-89a8-c43c1b942eaf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 953B526D86A64B2E946A0F015D8E4288 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:41 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "4ca8fbd7-1c3a-4bc0-9707-497ae97dd1a8" ], + "X-AspNet-Version": [ "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/0ce5605c-aafb-451b-a7a9-f7ab532b0fb8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "ffb628e1-6829-4f48-af2d-2dfef939f306" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014047Z:ffb628e1-6829-4f48-af2d-2dfef939f306" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 458774BCEC2C487DB25431033D1EB9FF Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:40:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1902" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "59273587-d23e-481a-a310-7477279f11d2" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f205a497-2dc7-49d2-8f25-89f0dd07a7e2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5cc892ad-7916-4b50-afe8-e84088df2574" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014117Z:5cc892ad-7916-4b50-afe8-e84088df2574" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 59A69C4E275C4BB7B550156104593B5C Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:17Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create 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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "59273587-d23e-481a-a310-7477279f11d2" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "801da4b3-81f9-4eca-9f85-82ad6be9f09a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "681b99d0-4623-4f45-bbe2-086c1dc6f030" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014118Z:681b99d0-4623-4f45-bbe2-086c1dc6f030" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5DBFA40A5E9A474C95F91DC28E59D980 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:17Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create 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": [ "448" ], + "x-ms-client-request-id": [ "eb8c3551-739c-48c5-95f3-27b06d74982e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9180,36 +10818,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "85970363-1d6a-43eb-832d-c31c889a79d1", "1753d22f-704d-4264-8e0b-1a356bdc6975" ], + "x-ms-original-request-ids": [ "8035182a-ec18-4407-b9ba-45c58b0a365d", "1b54e9e0-c467-4d65-ace0-db78f97ab962", "b1833f5e-9df5-47cb-ba59-c030f0d6e022" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "954770bf-6cb5-4967-8406-3b159277437a" ], - "x-ms-correlation-request-id": [ "954770bf-6cb5-4967-8406-3b159277437a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114040Z:954770bf-6cb5-4967-8406-3b159277437a" ], + "x-ms-request-id": [ "86a6cadc-fde0-403a-901a-8afd69e7aaad" ], + "x-ms-correlation-request-id": [ "86a6cadc-fde0-403a-901a-8afd69e7aaad" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014119Z:86a6cadc-fde0-403a-901a-8afd69e7aaad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 718A478F675A41F2A425E692C844506E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2ABD7DE6C6C745B08ADBA56A0C45D48C Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:18Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "408" ], - "x-ms-client-request-id": [ "08759d56-6b1f-4a30-856f-83e125b7e0b5" ], + "x-ms-unique-id": [ "449" ], + "x-ms-client-request-id": [ "82889005-b79e-44be-9adc-428321f84ebc" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9224,31 +10862,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "33d0d04f-d278-4235-b369-4e042c10382f" ], + "x-ms-request-id": [ "07cdea1a-c9e6-47cc-bbf8-48df1aae3452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69c51324-a431-4abe-a570-a70431f3b55d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ed4a1bc0-fffa-4448-96c3-15061890f779" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ac878443-886c-44ff-99ea-7ecdf8c4d5e9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114041Z:ac878443-886c-44ff-99ea-7ecdf8c4d5e9" ], + "x-ms-correlation-request-id": [ "374c856b-6db5-428d-b045-ba41728ef6c1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014119Z:374c856b-6db5-428d-b045-ba41728ef6c1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66480F10E7CD46799FC34D4B5291E7AC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFAB7957F5C745299E532D6906B0FBD1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9e53e490-b01e-0060-54c9-53a7b7000000\\nTime:2025-11-12T11:40:41.3466683Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095e3af2-601e-0026-7e07-552633000000\\nTime:2025-11-14T01:41:19.5814311Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -9263,25 +10901,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21E04F4D5053\"" ], - "x-ms-request-id": [ "124832ed-547b-480f-a421-1ce8d9877e39" ], + "ETag": [ "\"0x8DE231EE93BE2E3\"" ], + "x-ms-request-id": [ "ddbb576b-a183-49c5-a058-58141ca6f6d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7755ee78-520c-4ffc-90da-74262062ab72" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5c79d51c-3a8c-468b-a899-9570b49219e5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "12286161-071c-4a8a-84af-b5277aab8b82" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114042Z:12286161-071c-4a8a-84af-b5277aab8b82" ], + "x-ms-correlation-request-id": [ "7edd2d86-a023-4c2b-8fc5-870fc7b79868" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014120Z:7edd2d86-a023-4c2b-8fc5-870fc7b79868" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 344A82C71A2B47B79E6884FAC282706D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87BB5E92080640A786AFB0C3061C749D Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:19Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "465" ], + "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/blobServices/default/containers/app-package-functionspscustomconfig112925-0000000\",\"name\":\"app-package-functionspscustomconfig112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000\",\"name\":\"app-package-functionspscustomconfigfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -9292,8 +10930,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "410" ], - "x-ms-client-request-id": [ "68ad99c0-c363-4930-805a-22b8627f355b" ], + "x-ms-unique-id": [ "451" ], + "x-ms-client-request-id": [ "da373967-4d76-43b5-9c43-6a0d64b19130" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9308,36 +10946,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b6661f72-c8c3-4a74-aff2-b0aa93ca0404", "8bc95497-3a51-4c1c-bf5c-9e9f4af5a3db" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "08462258-dc1d-46a4-a8b1-3760aaf114dc" ], - "x-ms-correlation-request-id": [ "08462258-dc1d-46a4-a8b1-3760aaf114dc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114042Z:08462258-dc1d-46a4-a8b1-3760aaf114dc" ], + "x-ms-original-request-ids": [ "0cce5710-0721-4de5-b763-8ece3f1b2ca0", "5e65b10a-5abd-42d3-a6c6-0aff2d969866", "d1bd2b3b-b99c-4301-8d5c-86184bf8eb0c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "2b3eccbe-6f3a-4771-8202-df47e760a910" ], + "x-ms-correlation-request-id": [ "2b3eccbe-6f3a-4771-8202-df47e760a910" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014121Z:2b3eccbe-6f3a-4771-8202-df47e760a910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F834D4BC23A245AABBF24C92B1005674 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3305F4779B304ED7B669686968FA88DC Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "99ad3024-a5a1-4603-acf0-b5a998fbea25" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "e1645f90-ba47-41d2-95a2-1c0b739b788f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9352,23 +10990,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fac514b8-49e6-4956-9f9d-f482af1828a1" ], + "x-ms-request-id": [ "b3d2f279-8ef7-48b0-97a7-484ab19d2bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2ebfc3d1-5039-4e2d-9857-fcf6448d54f6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6f697e3b-6d43-4ea5-b766-76e336639835" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "88467128-e3ab-4f69-b184-c5ce52b8cdea" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114043Z:88467128-e3ab-4f69-b184-c5ce52b8cdea" ], + "x-ms-correlation-request-id": [ "4f7e034f-7212-43f2-8b70-9301bfe619b4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014121Z:4f7e034f-7212-43f2-8b70-9301bfe619b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D82725BFB184DD290FFA1AA234B564A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC39DEFFC3894959B0C4D903E68DBA0D Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -9379,8 +11017,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "ce32bf48-ab80-4332-8892-ed8e92589d78" ], + "x-ms-unique-id": [ "453" ], + "x-ms-client-request-id": [ "168a4a52-10e1-4089-81ef-f76d504dd70b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9395,36 +11033,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "85255feb-4cfb-47a4-9427-650638111931", "a65e3686-35e2-4e6c-b85a-a10a33311b35" ], + "x-ms-original-request-ids": [ "76e6c6d4-0bef-4c9b-8c77-169ed8c975b0", "52f1418b-9f79-432c-b200-e690a7aa4c17", "0245413b-7f0b-471b-bdc8-5dfb2fd41b2b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "dc51d948-3fb0-4ba9-83c4-c44fe0f0a430" ], - "x-ms-correlation-request-id": [ "dc51d948-3fb0-4ba9-83c4-c44fe0f0a430" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114044Z:dc51d948-3fb0-4ba9-83c4-c44fe0f0a430" ], + "x-ms-request-id": [ "f717f9a3-a828-4c00-8c0f-4c72480c92c7" ], + "x-ms-correlation-request-id": [ "f717f9a3-a828-4c00-8c0f-4c72480c92c7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014122Z:f717f9a3-a828-4c00-8c0f-4c72480c92c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9016AC498C54001B0C37CF6EF492142 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:43Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5472490632444D987E8992876C3786D Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "1160b7a6-5e2c-4fe5-bfea-df55f09a53ef" ], + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "dc6a22f8-587e-4bc7-91b2-5aec53274a23" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9439,30 +11077,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "592f8db2-f6b6-4340-be2d-3f8b7d199687" ], + "x-ms-request-id": [ "7ba6972c-a5e5-4c5d-849c-0f4163702b88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/048623ef-0269-4e1b-bb82-5853938bd129" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/14fef645-ea62-450e-a901-b8ed95b6d81f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "32306f78-da44-4cff-8354-4cf401befc7f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114045Z:32306f78-da44-4cff-8354-4cf401befc7f" ], + "x-ms-correlation-request-id": [ "7365a73a-32a1-4cb7-b262-c2a32de61948" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014122Z:7365a73a-32a1-4cb7-b262-c2a32de61948" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7EEE06E34CF401CABAF8CD3B86F7724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:44Z" ], - "Date": [ "Wed, 12 Nov 2025 11:40:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7C2D7CAB1514542A4BE80F4EFB8C1EF Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VPQCWiaAK7ZMMj5+APSKfbNXRLUQxrknKZNz26KuhW4HIHhwX70WgpNwYRtIj9sLeWBOxvP0M9LH+AStNd3AAQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"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-112925/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-112925?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-fqti?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-112925?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-fqti?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": { @@ -9482,36 +11120,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/eastasia/42746969-6b6c-4334-963e-f97a242b7843" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/41614b10-729b-4e17-8d6b-acc9635da002" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "97fc5a80-b4be-4207-a81e-9b3597f365e4" ], - "x-ms-correlation-request-id": [ "97fc5a80-b4be-4207-a81e-9b3597f365e4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114101Z:97fc5a80-b4be-4207-a81e-9b3597f365e4" ], + "x-ms-request-id": [ "a713ce20-05ab-4798-8345-0171f83089a3" ], + "x-ms-correlation-request-id": [ "a713ce20-05ab-4798-8345-0171f83089a3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014134Z:a713ce20-05ab-4798-8345-0171f83089a3" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4E55A1BBBAC43849B40E98C02FDF8E4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:40:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CFB7C76FC35241F280208A1C90518109 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1650" ], + "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3e03079e-0000-0200-0000-6914724a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-PS-CustomConfig-112925\",\r\n \"name\": \"Functions-PS-CustomConfig-112925\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-112925\",\r\n \"AppId\": \"737a23a8-f881-4961-bffc-251143cffa60\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"63ba4b8f-4132-45cd-82df-dc9432538e53\",\r\n \"ConnectionString\": \"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\r\n \"Name\": \"Functions-PS-CustomConfig-112925\",\r\n \"CreationDate\": \"2025-11-12T11:40:47.4450527+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-112925_737a23a8-f881-4961-bffc-251143cffa60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-112925-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\": \"\\\"780310b6-0000-0200-0000-691688ce0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-PS-CustomConfig-fqti\",\r\n \"name\": \"Functions-PS-CustomConfig-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-fqti\",\r\n \"AppId\": \"986f7406-ebeb-4294-ab2d-3752dc766278\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7d557552-614c-4aa8-b52b-bfb83f30b33e\",\r\n \"ConnectionString\": \"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\r\n \"Name\": \"Functions-PS-CustomConfig-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:41:24.4271273+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-fqti_986f7406-ebeb-4294-ab2d-3752dc766278_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-fqti-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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\"\r\n },\r\n {\r\n \"name\": \"CustomSetting1\",\r\n \"value\": \"Value1\"\r\n },\r\n {\r\n \"name\": \"CustomSetting2\",\r\n \"value\": \"Value2\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\"\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" ] + "Content-Length": [ "2283" ] } }, "Response": { @@ -9519,39 +11157,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C93B3993F5\"" ], + "ETag": [ "\"1DC5507D0DC41E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cda4baee-377b-4816-9076-192dce0b19ed" ], + "x-ms-request-id": [ "00852c73-e198-4ba7-8ca0-c9be97ca8f46" ], "X-AspNet-Version": [ "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/4687b495-cd5e-489a-9d04-c2f12e1559fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b6a87a36-a49f-4fa8-bbaf-a21f52c9d758" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e2446c30-3d1c-4f38-bc39-c1714c124dc6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114127Z:e2446c30-3d1c-4f38-bc39-c1714c124dc6" ], + "x-ms-correlation-request-id": [ "be44e210-c206-4af1-a486-b0f086ca9e6b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014158Z:be44e210-c206-4af1-a486-b0f086ca9e6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EA6536DF223427FAFD92CD552AC243A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4EF3A4DD7C24D3A93B3522D32C151A0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:41:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9747" ], + "Content-Length": [ "9710" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:05.7233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:36.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "416" ], - "x-ms-client-request-id": [ "712d668e-8b11-423d-a002-964c320e4e3f" ], + "x-ms-unique-id": [ "457" ], + "x-ms-client-request-id": [ "41eb3502-bcfa-424c-a664-064bbf41a895" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9565,38 +11203,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C947BCE80B\"" ], + "ETag": [ "\"1DC5507DD80234B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b9edfac-08a1-48f2-bdb8-eb51487f9147" ], + "x-ms-request-id": [ "7d6c7c2d-7442-4f54-aae3-f47495ea9f0a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1488ca57-8d70-4b1a-b6ef-57eb4d6971ac" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114157Z:1488ca57-8d70-4b1a-b6ef-57eb4d6971ac" ], + "x-ms-correlation-request-id": [ "b023540c-6e02-4f9f-a99c-1e13b6c0a762" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014229Z:b023540c-6e02-4f9f-a99c-1e13b6c0a762" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2D1CF151BF74E8987553356AF76205D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BA6AE9DEF0E492DBB9E91D82D613ADA Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9724" ], + "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:27.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "417" ], - "x-ms-client-request-id": [ "50f016f3-8d59-4fc2-af55-22be6b1448ca" ], + "x-ms-unique-id": [ "458" ], + "x-ms-client-request-id": [ "2165f3a8-5e26-4129-ad63-5e42d63cd402" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9611,38 +11249,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C947BCE80B\"" ], + "ETag": [ "\"1DC5507DD80234B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a1fc0e92-fa7f-476a-8546-98dbac346c08" ], + "x-ms-request-id": [ "cdc48476-1677-4625-87f7-fe4e7b543ade" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "937ac559-7a53-406f-82b5-d301c24a6888" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114158Z:937ac559-7a53-406f-82b5-d301c24a6888" ], + "x-ms-correlation-request-id": [ "4ab8be64-4674-4a16-8279-2cfcc79874e1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014229Z:4ab8be64-4674-4a16-8279-2cfcc79874e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A7CB6D3BD284928A6CB5E59978CA4D7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D8A124BF47A84B1C8AA3491749AC8B9A Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9724" ], + "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:27.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "418" ], - "x-ms-client-request-id": [ "76a6d3e9-a5b6-4c38-be03-25d30446720d" ], + "x-ms-unique-id": [ "459" ], + "x-ms-client-request-id": [ "42000705-3063-4db8-a679-f6e416dccbc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9658,36 +11296,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eee2b839-9b21-4c43-bb0b-4a8106178bdb" ], + "x-ms-request-id": [ "189532d1-2cf4-4cf0-879b-03e6a4652a52" ], "X-AspNet-Version": [ "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/e8875908-cb37-426f-b864-04ddcab99675" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/71c42a10-ca58-45bf-987c-c4cccb0bfa3a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0327df93-ccbb-487f-af98-4a572d1aaec6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114158Z:0327df93-ccbb-487f-af98-4a572d1aaec6" ], + "x-ms-correlation-request-id": [ "e790032c-f842-4b70-86f5-0f2d557a9c7d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014230Z:e790032c-f842-4b70-86f5-0f2d557a9c7d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8FB1E89C3B4416AB1CB12C816468617 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BFA823DA52643088B5BCD2EA80FCB74 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1158" ], + "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "419" ], - "x-ms-client-request-id": [ "32d5fe70-e8df-4ee8-9b11-518f91ad7317" ], + "x-ms-unique-id": [ "460" ], + "x-ms-client-request-id": [ "8618321a-22c8-4f53-8221-d3215b815aed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9703,37 +11341,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0effdec5-9381-419e-8fb8-13ab54b37785" ], + "x-ms-request-id": [ "b0025039-2950-47f9-adff-85b9cf464cc6" ], "X-AspNet-Version": [ "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/4c506553-f605-4a73-b1cd-22ab27e45352" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "e7485f7b-048e-4819-80a4-a066976c118d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114159Z:e7485f7b-048e-4819-80a4-a066976c118d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/01e75343-ce24-48c0-9aef-1457e64ce92d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c630a6cf-6cbc-44e8-93d8-702bddab72a3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014230Z:c630a6cf-6cbc-44e8-93d8-702bddab72a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB2425E16C16425EA160886C6B241431 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 918EAC61C57440A286B37B5A2204E4E5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4246" ], + "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web\",\"name\":\"Functions-PS-CustomConfig-112925\",\"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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "f7ae1c90-10da-4dc5-b851-df11fa1e4789" ], + "x-ms-unique-id": [ "461" ], + "x-ms-client-request-id": [ "8c7ed111-c827-4f4b-b02d-8fa79b7aa20d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9749,36 +11387,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3a07d33-ad3c-45a4-95c3-40bdbcb28cb5" ], + "x-ms-request-id": [ "c29ba461-e2b7-41d8-8099-48c72d027cdc" ], "X-AspNet-Version": [ "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/75457489-ec39-4923-9ec6-536f6901bf51" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3a6ae9b8-80f2-41e3-8278-15fb487fff4a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d27a564a-4530-45f5-bd4a-384b557c6920" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114159Z:d27a564a-4530-45f5-bd4a-384b557c6920" ], + "x-ms-correlation-request-id": [ "d0d6414f-0e0f-4479-8804-caaaf05ad0e2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014230Z:d0d6414f-0e0f-4479-8804-caaaf05ad0e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71153836B23145E89C1E5C62C941F710 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:41:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:41:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA08E3A5A0C646D7AB1ABCA7C8595DF2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1158" ], + "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "fc21fe0c-341d-40e1-925d-0188979b6600" ], + "x-ms-unique-id": [ "462" ], + "x-ms-client-request-id": [ "9551f748-64df-449c-ae0e-14830914c055" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9794,36 +11432,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "972240b7-241d-4cbf-82c7-47fdf1e18e68" ], + "x-ms-request-id": [ "14211a41-a18f-4e0e-b9f8-4f3f3778f25e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aeabb828-88af-46a0-b01f-5da2dc06941d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114200Z:aeabb828-88af-46a0-b01f-5da2dc06941d" ], + "x-ms-correlation-request-id": [ "34648660-f4ac-43ab-8e54-f0c2c58bf2c6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014231Z:34648660-f4ac-43ab-8e54-f0c2c58bf2c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D57C559E75A043CBBEBE3D5B7C92D588 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7625C11EB58149F4AADA1F38AD92DCC6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create 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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "422" ], - "x-ms-client-request-id": [ "f83d5b87-bf36-48b0-a58f-e171810a54df" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "7a86c399-6388-4a81-885d-e27ffa1e44d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9838,38 +11476,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C947BCE80B\"" ], + "ETag": [ "\"1DC5507DD80234B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7c370bd4-8054-4a28-b21e-d289ee248ada" ], + "x-ms-request-id": [ "e54c9ea7-b30f-400b-a0e3-23feaa21cb99" ], "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": [ "f598124b-03af-4d84-8a14-5f21b18b2d90" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114200Z:f598124b-03af-4d84-8a14-5f21b18b2d90" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "351c4448-2edb-4c70-9589-3951ae94fdee" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014231Z:351c4448-2edb-4c70-9589-3951ae94fdee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1124DF18FB8245FFA2B7C102CF53C651 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F444E54ECE82445AB11B91B822FB82DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9724" ], + "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-PS-CustomConfig-112925\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112925.azurewebsites.net\",\"functions-ps-customconfig-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:41:27.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa11292.blob.core.windows.net/app-package-functionspscustomconfig112925-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-112925\",\"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-112925\\\\$Functions-PS-CustomConfig-112925\",\"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-112925\",\"defaultHostName\":\"functions-ps-customconfig-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "423" ], - "x-ms-client-request-id": [ "ae182c46-6103-4678-938f-12fc10cb0f95" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "95da0b00-e3f3-4bed-b5ab-0d96151cd55c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9885,36 +11523,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b76de03c-b21d-4ce1-a658-4e2a57d02db0" ], + "x-ms-request-id": [ "2b87bfe5-33f1-463f-9f45-b57b95bffb83" ], "X-AspNet-Version": [ "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/94b9eec4-e64b-4dbd-95f1-499e73a2582e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f6f8df5d-98bb-4c01-a208-d10cca2ac646" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cd190249-9d8b-414c-aeb7-e5c83fa08d31" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114201Z:cd190249-9d8b-414c-aeb7-e5c83fa08d31" ], + "x-ms-correlation-request-id": [ "d9dae125-f524-4275-ae53-aec725bfac38" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014232Z:d9dae125-f524-4275-ae53-aec725bfac38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1858BD0C86624DC5B9464E038F4624BC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 575DA4A8BB684B08B4CB05480534FF92 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1158" ], + "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/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=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa11292;AccountKey=n5/vCpr9cZUPws6xghDC6j0wKOqjR0MD0i20l64JiaxGXRzjWOL99SGVrgkySL9kaIOrz/8bL3YQ+ASt6aQT3g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "424" ], - "x-ms-client-request-id": [ "18a2466b-d413-4c8a-bab7-f948d99d5b7f" ], + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "002cc3b6-82e3-471f-ba43-f610fa068d4b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9930,39 +11568,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4ba9dac-80a5-4afa-88bd-690d0ce598f5" ], + "x-ms-request-id": [ "8054829e-689d-40b9-9325-b9bb80ab2a79" ], "X-AspNet-Version": [ "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/4bc01cd2-ee32-496a-a5e0-adf22672ab41" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], - "x-ms-correlation-request-id": [ "3220f9c1-9f8c-4614-a161-ec2d589cba4b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114201Z:3220f9c1-9f8c-4614-a161-ec2d589cba4b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/724fe898-7ecc-4291-85c7-c5c3091e1121" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a7769df5-fc6c-4f92-abde-02bc97b3896f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014232Z:a7769df5-fc6c-4f92-abde-02bc97b3896f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4AEE97BFDA94EB18F900AD0CE83EF2B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22D009C8465B4A1496BF34AD3EF6219A Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4246" ], + "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925/config/web\",\"name\":\"Functions-PS-CustomConfig-112925\",\"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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "43f2e13f-16bd-46dd-80ac-de6b833ba524" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "466" ], + "x-ms-client-request-id": [ "72a28ec6-2eb3-438f-987f-3b8a8fc5e3ea" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -9975,40 +11613,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C947BCE80B\"" ], + "ETag": [ "\"1DC5507DD80234B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc6a800e-fe7c-452a-a136-bd14039aae60" ], + "x-ms-request-id": [ "0472b377-8957-4cb3-b548-03470cf38ccf" ], "X-AspNet-Version": [ "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/cde35ab4-08d5-4470-be3e-a194cdc80f45" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "cf19f2dd-87c7-4570-b569-086809ea5376" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114217Z:cf19f2dd-87c7-4570-b569-086809ea5376" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "321292d0-8739-4b88-8044-54343e7663e5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014233Z:321292d0-8739-4b88-8044-54343e7663e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3CF8BF3834D74C3A9E5DB06AD35BFF6B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC81C2CBC45B44C687BFF4673F3138BD Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:33 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9692" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01+24": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "0ff520b9-2614-4626-8312-3e592dd4820c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -10017,39 +11660,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ecb1a007-fbd6-4d3a-8187-3cd70d2314c8" ], + "x-ms-request-id": [ "3a1d1791-755e-4d40-be24-9f4ecd7a3607" ], "X-AspNet-Version": [ "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/83f5567c-2e22-46e5-a3cc-696411eaf09c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d3e4acef-eed3-497f-8821-fa3e9cbb2015" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114218Z:d3e4acef-eed3-497f-8821-fa3e9cbb2015" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a6f17330-a210-401c-bf48-ddf55816234b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c62f9ea5-bcb9-421d-aa51-67bdb807753b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014233Z:c62f9ea5-bcb9-421d-aa51-67bdb807753b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5B9FEE5915B48408BAC50295C714436 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B70C3A2D0024CB6BC47CD0043C8049B Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", "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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+2": { + "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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01+25": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "61be063c-43a0-416d-9e75-19c1a3074c90" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "212" ] } }, "Response": { @@ -10058,42 +11705,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac945d20-deba-44f5-b23c-9fe3807549a2" ], + "x-ms-request-id": [ "19559cc1-d890-4c30-bcfe-5dfbb4bc832b" ], "X-AspNet-Version": [ "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/b753c326-7bbc-47f2-bfe4-6251e8da006c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "2ff085f4-c88a-499f-bee4-b4fe9965c1a5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114222Z:2ff085f4-c88a-499f-bee4-b4fe9965c1a5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/296f2e16-1899-4877-89ab-1c8ee94d0135" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e45422be-30bc-4f58-8fb5-d62988e46b8a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014234Z:e45422be-30bc-4f58-8fb5-d62988e46b8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE5B7E6197FC478D89133D0E0F7595AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D41444EC399740CB8C4980DFC9B86844 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1908" ], + "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-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-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"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 Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "de19e02e-598e-4f36-acfa-ae33fe56648b" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "469" ], + "x-ms-client-request-id": [ "f470bd32-ec93-4030-beac-fa32a9710f40" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -10104,41 +11751,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c342dd31-f74e-4ae4-8dc7-bfdd8985d6ad" ], + "x-ms-request-id": [ "b322f5f3-98b7-4767-9a47-5b1a4aac798a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "289739a9-04d0-434c-8366-faf6d09e3a5d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114252Z:289739a9-04d0-434c-8366-faf6d09e3a5d" ], + "x-ms-correlation-request-id": [ "2605af46-3ece-47a4-b4d9-a44930a1a892" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014234Z:2605af46-3ece-47a4-b4d9-a44930a1a892" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A6C176D3AE04F048A9630D88EC4DA8E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BB541DAF85446FD98830991744CEEC7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+4": { + "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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "430" ], - "x-ms-client-request-id": [ "de19e02e-598e-4f36-acfa-ae33fe56648b" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "470" ], + "x-ms-client-request-id": [ "b660d488-b64c-41e1-af7d-e6f8ec43f677" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -10148,41 +11795,214 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5507DD80234B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4a6c02c-07eb-4637-87c8-5aeb78add304" ], + "x-ms-request-id": [ "9791af97-7ebc-4738-b439-893e4e7cc6a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07c0343c-bbc8-4bd4-9418-4fbf85c3269d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114253Z:07c0343c-bbc8-4bd4-9418-4fbf85c3269d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/50bb0d8a-d931-4aac-8406-5e2ddc9210e7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "10fc7b82-f1f7-4288-b939-4fea40e256c5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014253Z:10fc7b82-f1f7-4288-b939-4fea40e256c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2199A895EC4A46E6BB41E1A3D080E7DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C5F9F506C6647E883A7C527B29FDBD2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": 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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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-Java-NoAppInsights-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "431" ], - "x-ms-client-request-id": [ "15311edd-4a4b-4e46-908f-43e129b9ed2d" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "70" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5a255b77-615d-46cc-9f97-4d13dd2e692e" ], + "X-AspNet-Version": [ "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/da5b7bfa-44e0-431f-9685-b9daec7ad827" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3dc76b97-847a-4327-9b5a-16ef12513553" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014253Z:3dc76b97-847a-4327-9b5a-16ef12513553" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 257FCCEA16354917A0C3789B8A2F0CF6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42: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 Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "33071286-8726-4fa6-8eab-c53491dcafe9" ], + "X-AspNet-Version": [ "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/d2719f11-79db-4f28-ba4e-75b638b1248b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d7357312-0645-44ba-a848-ffdcf4b3a1cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014259Z:d7357312-0645-44ba-a848-ffdcf4b3a1cd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 83F2B980E1614E3A82C3A957D11F7714 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:42:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1907" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"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-14T01:42:58.7266667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "474" ], + "x-ms-client-request-id": [ "348171c7-b94e-4be8-b6b9-62702aed38a9" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "83920cf0-2a3d-4b66-9353-269089709b77" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3765f3bf-1d48-4bcc-a140-3105d05e4449" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014329Z:3765f3bf-1d48-4bcc-a140-3105d05e4449" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 31A6BE24E4884930832D4148C2957946 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "475" ], + "x-ms-client-request-id": [ "348171c7-b94e-4be8-b6b9-62702aed38a9" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8a070655-370a-4449-a4ad-2b3938190444" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e43e31b9-9713-4054-b934-149596c968ad" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014329Z:e43e31b9-9713-4054-b934-149596c968ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F77CF35A46FA4987AC83153DDAD22905 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"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": [ "476" ], + "x-ms-client-request-id": [ "cabdb36c-2e8d-4e66-94dd-347d86fa9d0a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10193,36 +12013,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5ad5de34-b0d9-48e9-a0af-743150cf7187", "6c784084-721c-4d04-9a84-44a33d26e734" ], + "x-ms-original-request-ids": [ "edade7db-b67f-445f-8a6e-191be123b93a", "73aaa192-b944-4417-aa5d-4d7d828223df", "d234f011-085e-46c3-a168-7a1332531378" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "dc25e375-0ac8-4ead-b973-3dd5984c64fb" ], - "x-ms-correlation-request-id": [ "dc25e375-0ac8-4ead-b973-3dd5984c64fb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114253Z:dc25e375-0ac8-4ead-b973-3dd5984c64fb" ], + "x-ms-request-id": [ "2d68942d-c600-4185-ab46-e0ac1ab7dff4" ], + "x-ms-correlation-request-id": [ "2d68942d-c600-4185-ab46-e0ac1ab7dff4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014330Z:2d68942d-c600-4185-ab46-e0ac1ab7dff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE420565F10441D896744467736B76DC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0FEC48DBD804BFF8BA3CC56151E3858 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "0ba4af82-9d46-4730-bb3a-836bc183dc28" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "2ad2b900-9997-4062-82ff-909650ed6572" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10237,31 +12057,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3825aef8-63a1-4634-a5e4-165499a0c7ed" ], + "x-ms-request-id": [ "748f0e13-34a0-4141-93e4-a810891d76f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/69437028-9d8c-4207-8538-994c51736fb5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/13d384a1-1769-4ea9-b49b-3b6296c44831" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d55ae519-23ae-4b09-8bdb-f3f37c9554bb" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114254Z:d55ae519-23ae-4b09-8bdb-f3f37c9554bb" ], + "x-ms-correlation-request-id": [ "d06071db-3e1a-4706-87ee-5f2a948671f0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014331Z:d06071db-3e1a-4706-87ee-5f2a948671f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8ED4A83C2D7F4AA083D0C12741FBAA0B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3D6831E31104D43B90F819D1137673E Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:f4b26b08-401e-0053-2cc9-534d1f000000\\nTime:2025-11-12T11:42:54.1194305Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c542b5e4-501e-001a-1d08-550176000000\\nTime:2025-11-14T01:43:31.4586449Z\"}}", "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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -10276,25 +12096,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE21E09E9C0858\"" ], - "x-ms-request-id": [ "91abec56-c686-4994-b33c-b84ee2deb8df" ], + "ETag": [ "\"0x8DE231F37E0E5B1\"" ], + "x-ms-request-id": [ "13d89a5b-3b9c-4f81-9e60-a4c01cdda718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/269834fb-52c8-4e1d-aa37-49e3f5c8414f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fad94fe7-5d35-4b7e-98b5-8882f773bc2b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "fc435b72-2797-43b1-9de4-59d2fbb1c460" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114255Z:fc435b72-2797-43b1-9de4-59d2fbb1c460" ], + "x-ms-correlation-request-id": [ "315b3bf3-d248-4820-b73c-f01cea176831" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014332Z:315b3bf3-d248-4820-b73c-f01cea176831" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 838AB9720FF6497BA747FA75CF3AD5D4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1DE2DBEE5044BA38BE131183F22EEBD Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/blobServices/default/containers/app-package-functionsjavanoappinsights112925-0000000\",\"name\":\"app-package-functionsjavanoappinsights112925-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000\",\"name\":\"app-package-functionsjavanoappinsightsfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -10305,8 +12125,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "376ad92a-91a3-4c1f-afec-07b8ecaf76bc" ], + "x-ms-unique-id": [ "479" ], + "x-ms-client-request-id": [ "d06c0357-c615-4b6c-ae8e-af43f11f7f21" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10321,36 +12141,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ab043b26-9dff-4648-a844-0b1f35e509ec", "06b7c825-0658-4168-a31f-f45e164bd968" ], + "x-ms-original-request-ids": [ "5d83591b-e621-48bc-a0cd-61a14eae96a2", "a1181065-f48d-4951-bc91-68c84cc30e47", "648997b5-bd29-43ab-ac3a-8388d207b6b0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ee6ba35e-a857-4c88-9422-1e4324d8aab7" ], - "x-ms-correlation-request-id": [ "ee6ba35e-a857-4c88-9422-1e4324d8aab7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114256Z:ee6ba35e-a857-4c88-9422-1e4324d8aab7" ], + "x-ms-request-id": [ "72c06e84-ef1c-4899-b139-45ebc8378389" ], + "x-ms-correlation-request-id": [ "72c06e84-ef1c-4899-b139-45ebc8378389" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014333Z:72c06e84-ef1c-4899-b139-45ebc8378389" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D9427A0C12714D73AC1BF8F6FBED894B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35D029B4F26D4FBD897530E00C974506 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "ea1574cb-6d75-441c-8c43-4b1eaad8a098" ], + "x-ms-unique-id": [ "480" ], + "x-ms-client-request-id": [ "8633c96a-1c15-4a1c-8d85-15918014abf1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10365,23 +12185,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f5e60a7a-00ec-4da6-934e-99820ba6a03b" ], + "x-ms-request-id": [ "557f8770-3088-4c65-99d1-9dab8784bb04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1dc43e39-1ea6-4345-b93c-443dbde9dba3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/34d48a9b-70de-4225-bcb5-7776979c1cfe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6c43a7e7-99cc-4b7f-8da3-c19e0e882f0a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114256Z:6c43a7e7-99cc-4b7f-8da3-c19e0e882f0a" ], + "x-ms-correlation-request-id": [ "eda53bab-fd78-496f-932c-c59ccbfd6ee4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014333Z:eda53bab-fd78-496f-932c-c59ccbfd6ee4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E540EB3349B04987A3745CC5368FEBB7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18549ADB01D94BB2A4196748F65FFC61 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -10392,8 +12212,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "dd068048-b677-4f3e-bcf6-1a050901a3af" ], + "x-ms-unique-id": [ "481" ], + "x-ms-client-request-id": [ "e0a56974-4e57-4659-aac2-b99eddf9b596" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10408,36 +12228,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "fcd35792-7e50-489d-aacf-38dfc2f6da0f", "56d3c07b-57e1-4f11-b08f-41f87e67022c" ], + "x-ms-original-request-ids": [ "c20df24d-a898-4a65-8b86-5cd8b964a209", "345c5f0b-a3ad-4d7e-be35-0efe6ab9fe3b", "3f3a4d9e-f88e-4e24-ba2f-06f7fd03eea7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3a7dfd07-56c3-44fb-99c0-015a0d5e43c0" ], - "x-ms-correlation-request-id": [ "3a7dfd07-56c3-44fb-99c0-015a0d5e43c0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114257Z:3a7dfd07-56c3-44fb-99c0-015a0d5e43c0" ], + "x-ms-request-id": [ "786b8c12-3320-474d-ad15-b2bd816b60b5" ], + "x-ms-correlation-request-id": [ "786b8c12-3320-474d-ad15-b2bd816b60b5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014334Z:786b8c12-3320-474d-ad15-b2bd816b60b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FCABA580CE2490E8522F2689C51F262 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4AA23D637231459BB210D43C476C552B Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/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-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "437" ], - "x-ms-client-request-id": [ "69ffbc42-e39e-4fcb-bd85-12e423e1e12c" ], + "x-ms-unique-id": [ "482" ], + "x-ms-client-request-id": [ "19d39951-7d66-4854-a7fa-ef817b602c8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10452,37 +12272,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1756db5e-784e-4d01-8dde-076d16ac6dbd" ], + "x-ms-request-id": [ "7fc3f340-233c-47c6-b15f-8d32af7a976c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b1f04d34-58cc-4f9b-8254-38c07e073b0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/478cdcac-7676-42e3-b9d6-1742d58ec827" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8b1cb853-0831-4708-adb9-3f5aedfe5b8d" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114258Z:8b1cb853-0831-4708-adb9-3f5aedfe5b8d" ], + "x-ms-correlation-request-id": [ "f1783574-ca8e-4037-9d24-b31f694e3795" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014335Z:f1783574-ca8e-4037-9d24-b31f694e3795" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11E060D5A6464DCFA77D65711556D9AA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:57Z" ], - "Date": [ "Wed, 12 Nov 2025 11:42:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BA6C958364141A28BAEB3BB8AE85868 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T3uQ9qem5DUfbEJq93ZG3H5Pbhl6cDc0udbQi1U4BWstw9O3F85Q8s9QK9DvArgctTWNPL9fHBBy+AStrlBlIQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-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=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1638" ] + "Content-Length": [ "1626" ] } }, "Response": { @@ -10490,39 +12310,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C97F6DB3A0\"" ], + "ETag": [ "\"1DC5508195466D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67586a33-260a-4a77-9685-e00a613ce43f" ], + "x-ms-request-id": [ "6d3e33a6-b07a-44cb-9595-c5203bfc69f6" ], "X-AspNet-Version": [ "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/328c87a6-304e-4b60-8506-8e8ccbd89e7e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/74d77bca-2dab-4c4f-aaca-733c2b3cac54" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a249c385-20c5-44ca-94e7-6e6b0ec8289f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114322Z:a249c385-20c5-44ca-94e7-6e6b0ec8289f" ], + "x-ms-correlation-request-id": [ "36fec1e7-b4bd-47e2-ab3e-fbe332ef4cb1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014359Z:36fec1e7-b4bd-47e2-ab3e-fbe332ef4cb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 235691378E4D485E8D967777D3BE3F2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:42:58Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DACAF2E27BA3462C8EBF748D41EDA71E Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:43:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9634" ], + "Content-Length": [ "9596" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:42:59.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:37.56\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "439" ], - "x-ms-client-request-id": [ "608aedad-701d-4e59-b2d4-0fbab2e79c73" ], + "x-ms-unique-id": [ "484" ], + "x-ms-client-request-id": [ "0fbeeb0b-a105-436d-8e25-6d9bc3fd1bd5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10536,38 +12356,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "ETag": [ "\"1DC550825A664B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a129c56e-2b70-412a-9266-60afff94616f" ], + "x-ms-request-id": [ "a3c13d01-ce5b-4603-aef4-19c09bba3ea2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "39998d56-cd4f-4e24-853e-815d366ed429" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114352Z:39998d56-cd4f-4e24-853e-815d366ed429" ], + "x-ms-correlation-request-id": [ "e84546d9-35a5-4f8a-85ab-1fab0b8adce5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014430Z:e84546d9-35a5-4f8a-85ab-1fab0b8adce5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92A37F2932FB4FCAB3D551D824AE74DE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F28AD7214814FB5919285FA4943A00C Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9606" ], + "Content-Length": [ "9578" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:43:21.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "b63c0c16-2c4c-4733-819d-d297a9b22f59" ], + "x-ms-unique-id": [ "485" ], + "x-ms-client-request-id": [ "173b52fe-d9ce-45c9-8266-2bc1f00a75d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10582,38 +12402,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "ETag": [ "\"1DC550825A664B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c039093e-c7c5-42f8-8adc-fc469c1b95b2" ], + "x-ms-request-id": [ "2904a5e0-c58a-474c-86f5-c4e4c79a717c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d9400e62-9dde-48b6-b883-06f756b444ae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114353Z:d9400e62-9dde-48b6-b883-06f756b444ae" ], + "x-ms-correlation-request-id": [ "41246ba5-e963-47ac-a27c-c10a0cf225c0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014430Z:41246ba5-e963-47ac-a27c-c10a0cf225c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22F75A7613134749B315CDFE10BB592F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 360EE3508340460ABCA08FBD1D9A056B Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9606" ], + "Content-Length": [ "9578" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:43:21.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "441" ], - "x-ms-client-request-id": [ "d9e24f06-4671-47c8-a159-40013a7c6df2" ], + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "ad78b45e-c479-465c-b1ac-8c9962cc533c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10629,36 +12449,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9564ef70-da8d-42e8-9d95-3c7d87ad7e4e" ], + "x-ms-request-id": [ "8498566e-ecc2-47de-a73c-848f7aafaa8c" ], "X-AspNet-Version": [ "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/ab5206c3-3b89-47de-b932-3b288e4d44df" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eb18323d-11fe-409c-809b-ac308057b6d8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "661f8fdf-5939-4d45-bc80-00a94287c6ae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114353Z:661f8fdf-5939-4d45-bc80-00a94287c6ae" ], + "x-ms-correlation-request-id": [ "619101d8-e630-4b3b-b56d-40559d8059eb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014431Z:619101d8-e630-4b3b-b56d-40559d8059eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AA102696CF34B7795C727D35A4B1322 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:53Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC7304AC721A4B94B702A196DAE395E0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "735" ], + "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "442" ], - "x-ms-client-request-id": [ "d182f48f-5665-4033-80ea-b5939af4c82b" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "29bd5ae0-aab6-4ea0-a967-a35f56918b51" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10674,37 +12494,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20757f2c-256a-4e10-a4cb-d44569014699" ], + "x-ms-request-id": [ "961ac456-143c-47e2-95f1-18ec92f1fc93" ], "X-AspNet-Version": [ "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/e6829ddf-8167-4a41-b2c4-e07f63c92d84" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8b0d5b62-26fe-4072-b92e-d92bf06adeaf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "14fb2af5-af3e-4fd7-b925-fd61c9c66efc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114354Z:14fb2af5-af3e-4fd7-b925-fd61c9c66efc" ], + "x-ms-correlation-request-id": [ "a3ccee3b-5fb2-4559-b680-ee0e3e598172" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014431Z:a3ccee3b-5fb2-4559-b680-ee0e3e598172" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95F147B91516497F80D25799FD580939 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03BABBBFD23148B2B21D878AD69283BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4173" ], + "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "443" ], - "x-ms-client-request-id": [ "ef9fbdc2-bc30-4443-aff3-1efae9be6242" ], + "x-ms-unique-id": [ "488" ], + "x-ms-client-request-id": [ "a7b88c65-16ed-486f-9e8b-5221002044e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10720,36 +12540,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a1a13293-e1a4-438c-91bb-27b5d263198e" ], + "x-ms-request-id": [ "ab0fc6ac-825b-4127-b8e6-5a2e3925616b" ], "X-AspNet-Version": [ "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/534a4b90-6caf-4e39-95b8-7fdab8ccd433" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "dca99772-c8b2-4ceb-ae73-cfda5f4f1b44" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114354Z:dca99772-c8b2-4ceb-ae73-cfda5f4f1b44" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0787c554-5d3f-458a-859c-7d7a368de3d3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d3289271-b576-4292-9db8-c195cda98949" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014432Z:d3289271-b576-4292-9db8-c195cda98949" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E865CE468BCB4A18984DC795715C4954 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13C50E26BAFD42D995D9E5C5A0B338DB Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "735" ], + "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "444" ], - "x-ms-client-request-id": [ "9abc6a1b-d082-492b-8ee1-132b397ea1a4" ], + "x-ms-unique-id": [ "489" ], + "x-ms-client-request-id": [ "793fd312-a62c-47b8-90e6-c3911eb314c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10765,36 +12585,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "614a157a-19c4-47d7-8f02-2a2ed9df53d5" ], + "x-ms-request-id": [ "5e810f0e-5e88-43af-89a9-ead799536615" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2bbaddf3-e75b-45dd-bf00-d775213fdfeb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114355Z:2bbaddf3-e75b-45dd-bf00-d775213fdfeb" ], + "x-ms-correlation-request-id": [ "68b21798-dda5-4d14-bf82-dc4794805a8d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014433Z:68b21798-dda5-4d14-bf82-dc4794805a8d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9285DE8B7B44213B8CB731FCA47D4D0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D73561C3C4E64BE38ABFD9549465E64F Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "445" ], - "x-ms-client-request-id": [ "7465990a-4962-4aa4-a738-0e02331326ef" ], + "x-ms-unique-id": [ "490" ], + "x-ms-client-request-id": [ "11896830-0ac1-475f-b61c-2b5e6b9edfa4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10809,38 +12629,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "ETag": [ "\"1DC550825A664B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30d9d66a-ad69-4aa6-910f-9021fb94ca16" ], + "x-ms-request-id": [ "d9070170-915c-4df3-b36d-615d77f60455" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "de2bce24-face-40eb-b531-429c1baf8374" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114355Z:de2bce24-face-40eb-b531-429c1baf8374" ], + "x-ms-correlation-request-id": [ "448086ae-9ebc-44ba-a524-b5b03150f92d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014433Z:448086ae-9ebc-44ba-a524-b5b03150f92d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A285E693CD74484BE8130BD701A4F85 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3671FF41339B43B6A6395F7B4B7EC256 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9606" ], + "Content-Length": [ "9578" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112925\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\"],\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace/sites/Functions-Java-NoAppInsights-112925\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112925\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112925.azurewebsites.net\",\"functions-java-noappinsights-112925.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112925.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-112925.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:43:21.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa112925.blob.core.windows.net/app-package-functionsjavanoappinsights112925-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-112925\",\"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-112925\\\\$Functions-Java-NoAppInsights-112925\",\"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-112925\",\"defaultHostName\":\"functions-java-noappinsights-112925.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "446" ], - "x-ms-client-request-id": [ "4197732b-ba4b-4362-befe-ed762c59528b" ], + "x-ms-unique-id": [ "491" ], + "x-ms-client-request-id": [ "5fa2a4cd-d3bf-49ac-8d36-7fb5aa189000" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10856,36 +12676,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b726a600-3dd0-4569-a1fa-b04099a25cb1" ], + "x-ms-request-id": [ "cb7a5475-daeb-4c21-9089-dfc0fd800148" ], "X-AspNet-Version": [ "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/4f774ce4-5d52-45b2-a7f0-38cbd3a2e58e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/093bddfc-4d27-4f9e-85f9-9ce7e542184d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9002bb45-c040-4ddc-820d-a61b2e8d172f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114356Z:9002bb45-c040-4ddc-820d-a61b2e8d172f" ], + "x-ms-correlation-request-id": [ "45e9f14d-d6e1-4570-ad98-37779522664b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014434Z:45e9f14d-d6e1-4570-ad98-37779522664b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9C3E83BA27D4D74BEB101E41719C52F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6574797A97D044D483CC4CC057BDC710 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "735" ], + "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa112925;AccountKey=xCIh/mAyBSCfchC+wAqemg/wZyYcvNK+DWn9RN9aGM9YS1VgAQV5ks8X3OzD35ye0o5mo2Zcm61Q+AStiGsx8Q==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "d08e969e-6514-4695-a6a2-128fcd4cc34e" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "a4fb6eed-8bb2-45e7-9560-c2d99310003c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10901,39 +12721,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "058fe10b-dca1-4b0c-8bb4-624427d470fe" ], + "x-ms-request-id": [ "0c06ebc2-5bf9-4140-b270-4087889de2dc" ], "X-AspNet-Version": [ "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/e877c520-8303-415f-b56b-4d1dada308ce" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2d33b27a-1b8f-463e-befd-bda31d237118" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114356Z:2d33b27a-1b8f-463e-befd-bda31d237118" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8e1f7851-e856-4c42-a2c0-410e7305b980" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7295d887-d2fa-4cf0-b1ea-693100140bf7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014434Z:7295d887-d2fa-4cf0-b1ea-693100140bf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B1B5728F49945C2AE33A240371FCBFD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:43:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4648836BDB3E4C77801CDD1931A26D80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4173" ], + "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925/config/web\",\"name\":\"Functions-Java-NoAppInsights-112925\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"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-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+22": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112925?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "448" ], - "x-ms-client-request-id": [ "27600d10-dea7-489e-b3d0-f08ebc8d4f12" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "d61f25d5-4a63-41fd-a8a6-a05eb45f4901" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -10946,40 +12766,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C98C1CC5A0\"" ], + "ETag": [ "\"1DC550825A664B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e80930d-5a7a-4d2b-a617-bd5e3a08b534" ], + "x-ms-request-id": [ "104cc2ac-2a14-463f-a630-958a1292d484" ], "X-AspNet-Version": [ "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/45d8c062-c889-425b-86ed-cc91faf4ba2a" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "3c8ecc58-8d50-4e8f-ab5f-e2463272d234" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114411Z:3c8ecc58-8d50-4e8f-ab5f-e2463272d234" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "16baeae9-735f-4a86-989c-6e4d1eea4c93" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014435Z:16baeae9-735f-4a86-989c-6e4d1eea4c93" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76A22A3D12E043B3941B99EA10F5048F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:43:56Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00FCB61879934D85BADFF30D2328677A Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:35 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "9578" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+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": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01+23": { "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-112925\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "494" ], + "x-ms-client-request-id": [ "9a87c98b-e0ab-4d55-9655-4999955099f0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "67" ] } }, "Response": { @@ -10988,39 +12813,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b56a98f-eee5-47d3-ace2-a11a6b112791" ], + "x-ms-request-id": [ "fcf9ee99-f1f6-40ba-a08d-daaf228e6475" ], "X-AspNet-Version": [ "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/0a57ddbd-84eb-4988-b981-2a153064ebdd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5af1ed9d-6555-4c4f-b4a9-82a3dc5dc488" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114412Z:5af1ed9d-6555-4c4f-b4a9-82a3dc5dc488" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/49ab49a3-50c3-4fba-b204-7e77339e67b5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "f231df00-a777-49e3-8ee9-392952b133b4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014435Z:f231df00-a777-49e3-8ee9-392952b133b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1824B4BA1944EC7BEA58C42B891DE12 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:11Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5196FCC5B0D940A4AA405AE009033E6D Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"}}", "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": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01+24": { "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-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "6042a566-ef7d-4976-8529-334a43f63d11" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "495" ], + "x-ms-client-request-id": [ "4d0354f0-c50e-475f-a404-b7007fa3dc43" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -11033,38 +12857,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8a09d1e4-55ab-46c8-b0c1-99f825e9cb31", "c44f205d-a5b6-4fe1-adec-05570cce0a55" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3954fa1b-9f1a-4d37-98d2-53c3c2898012" ], - "x-ms-correlation-request-id": [ "3954fa1b-9f1a-4d37-98d2-53c3c2898012" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114413Z:3954fa1b-9f1a-4d37-98d2-53c3c2898012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "eef37b17-1115-4c29-adcc-7dea4444e9bf" ], + "X-AspNet-Version": [ "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/8fa02bf0-5c77-4e29-a39c-b61bc03a7fd7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c2bce496-cff9-4df4-bcb4-d53e952fa302" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014435Z:c2bce496-cff9-4df4-bcb4-d53e952fa302" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0A8429DBE874F3C92CC93242426AE39 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:12Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DED01438FCB848DA97D7446BF23AA05B Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "4167" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"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]+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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsdotnetwhatif112925-0000000?api-version=2019-04-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/blobServices/default/containers/app-package-functionsdotnetwhatif112925-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "452" ], - "x-ms-client-request-id": [ "cee48719-7230-41ea-9817-109d64a6dde6" ], - "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], - "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "x-ms-unique-id": [ "496" ], + "x-ms-client-request-id": [ "3a0db9d0-57f2-4203-b74f-4451d3d47f00" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -11073,42 +12899,43 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1b49ef48-f7a4-418b-b135-0a2e5e523584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/cf0c6c58-7c31-4e6c-9833-16f2a1615ace" ], + "x-ms-request-id": [ "acb16c3d-619b-419c-82df-c8cbaf3a52ba" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "810d2c8e-a93b-448e-af23-46585a03cd25" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114413Z:810d2c8e-a93b-448e-af23-46585a03cd25" ], + "x-ms-correlation-request-id": [ "4d8ff5e1-9e6d-4543-aa8e-43b15f3ea651" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014436Z:4d8ff5e1-9e6d-4543-aa8e-43b15f3ea651" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 604245734655412BB30A056A5922BF49 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA6773667A6B46109887CBF3110331D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "173" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2220e96d-701e-006f-6dc9-536a5a000000\\nTime:2025-11-12T11:44:13.4880506Z\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"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]+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": { + "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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "453" ], - "x-ms-client-request-id": [ "1eaa84c7-b467-4abd-9714-3f0730e812b0" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "497" ], + "x-ms-client-request-id": [ "86506459-00ff-4460-8e65-cf8fdd82de5f" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -11121,43 +12948,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "05fc82e4-3565-4511-a476-75887205a842", "db8fcce8-957a-4945-a7cd-c4eb809d7be4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "398755e2-52a0-487b-8b25-126f270bcf69" ], - "x-ms-correlation-request-id": [ "398755e2-52a0-487b-8b25-126f270bcf69" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114414Z:398755e2-52a0-487b-8b25-126f270bcf69" ], + "ETag": [ "\"1DC550825A664B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "46672a0c-be1d-4140-b39e-8eb4afaa2133" ], + "X-AspNet-Version": [ "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/6b0513a7-bc00-4eaa-bdcb-4970c9593661" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "c04e6951-ff52-4906-a1e5-42ed08a4d77a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014452Z:c04e6951-ff52-4906-a1e5-42ed08a4d77a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4E1D326B0FD4B29AEE9CD8450003B87 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:13Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6E1F3BA75C449398971E0C3F452E450 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "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/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01+5": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", - "Content": null, + "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-fqti\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "454" ], - "x-ms-client-request-id": [ "5d6b7493-107d-4de7-bfc6-948f345429c9" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "65" ] } }, "Response": { @@ -11165,35 +12989,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1855a8c8-4c29-4e70-b25d-68bcd3d6899e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9554396-9fc4-4979-8b4f-e80a70e60abf" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "196e43c2-add6-45fa-9551-e399e0804723" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114415Z:196e43c2-add6-45fa-9551-e399e0804723" ], + "x-ms-request-id": [ "9318d152-3700-42d3-abfd-0a02f559357c" ], + "X-AspNet-Version": [ "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/d8b304c1-0ecf-474c-85db-a6f100cd4c41" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "db906919-adf1-4f32-ad39-8cf3599172b3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014453Z:db906919-adf1-4f32-ad39-8cf3599172b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF510A6814D04AEB990EF7FBD7954FF4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 301A3E705EB04B159ED88B0234EF560B Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"permissions\":\"FULL\"}]}", + "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+6": { + "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": [ "455" ], - "x-ms-client-request-id": [ "15bc4d02-048d-46e3-abe8-1200ef166e54" ], + "x-ms-unique-id": [ "500" ], + "x-ms-client-request-id": [ "79fc17b0-37b3-41bf-98f0-f7be27da2b3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11208,36 +13035,124 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e2762f66-0361-4c36-a30e-567574f80ecb", "0b6676bc-e27f-450f-924d-ffd8b303da1a" ], + "x-ms-original-request-ids": [ "c803360b-b046-4e21-92c4-6db7c896f113", "93546e9e-a11a-48a7-af9a-8c957989a29a", "971ab1c2-7a8e-440f-8375-9d7f81208812" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5982b33c-ad0d-4cf9-a4d1-71b89c0ab242" ], - "x-ms-correlation-request-id": [ "5982b33c-ad0d-4cf9-a4d1-71b89c0ab242" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114415Z:5982b33c-ad0d-4cf9-a4d1-71b89c0ab242" ], + "x-ms-request-id": [ "9d7cb484-2643-4423-a5a8-d348ea11f26d" ], + "x-ms-correlation-request-id": [ "9d7cb484-2643-4423-a5a8-d348ea11f26d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014454Z:9d7cb484-2643-4423-a5a8-d348ea11f26d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C718BC755640483BADF6D0D81E155EBE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72622530A3F3434F9B7D73EACD8AE6C7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01+7": { + "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsdotnetwhatiffqti-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsdotnetwhatiffqti-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "3a3007bc-6e5c-4923-985a-fe6bf58a984e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5958d547-194c-4b5c-9b9b-8241e7004d1c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a6a4dc17-f1f0-4501-ad51-b3e5d67466c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4a7af2a2-83b6-48a4-95ba-e44b763ba367" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014454Z:4a7af2a2-83b6-48a4-95ba-e44b763ba367" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C90218A04784E6C8D934BD832C5CB16 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095ef44e-601e-0026-0b08-552633000000\\nTime:2025-11-14T01:44:54.4940746Z\"}}", + "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": [ "502" ], + "x-ms-client-request-id": [ "610bd2ee-07b6-48ac-a76a-0fea93b49919" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "a1dc96f2-7276-4b28-8ace-89d407bcb18c", "326bea0c-4465-49d8-8a22-2a3fbd7836c4", "37d7699e-6429-4a43-b002-f207ce267dc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f0884439-0763-4932-8aae-13f781c4b4fb" ], + "x-ms-correlation-request-id": [ "f0884439-0763-4932-8aae-13f781c4b4fb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014455Z:f0884439-0763-4932-8aae-13f781c4b4fb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 891FBD9622C744829E01B089EE8D9AFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/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-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "456" ], - "x-ms-client-request-id": [ "b2ba5bcd-e09e-4b2d-9540-6a4cc0318294" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "2d2357ba-e682-4fde-aad1-86492a43c04a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11252,35 +13167,122 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "96f06ae9-273f-47b2-bc04-9f9d65777e99" ], + "x-ms-request-id": [ "09c190f0-6fcf-423d-b8eb-6f2bdcec94d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f9d22037-fee8-4a88-8c49-d8c8faafcebb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a685353e-36cd-4ce4-a8e7-9a245579d40e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "566ed701-23ec-4218-8e33-b3fac5c7727b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114416Z:566ed701-23ec-4218-8e33-b3fac5c7727b" ], + "x-ms-correlation-request-id": [ "f7cd399e-8009-4b69-9f95-aec1872f26e3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014455Z:f7cd399e-8009-4b69-9f95-aec1872f26e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9852B8CC7D3047CCBD7654427D9A5453 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1D504D6FE2F40EAACC96BBA6D7AAFD6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"lBd04zQUWdzQIU2nSUbbwCu7sIGy+Q6Fvmq03UIzXnivN3MIJg4wr8fwpdoxbLFMTHR+N+sZ7i7d+AStweh5JQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"T/swHdkNjS7JhKsvGLvaZW6lCesP+4nkgrG9cJoYraIT5et7yY1vRmycK73i366YFSijXkkZ/LMI+ASt0+rEhA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"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-112925/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-112925?api-version=2023-12-01+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-112925?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": [ "457" ], - "x-ms-client-request-id": [ "16dff972-4485-44eb-8c58-cab1e2141ba3" ], + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "67dedf8d-8f05-4140-ab02-4a5e91aade90" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "179391ea-4b97-4849-8f45-102c98a6551b", "701087b2-30a5-4649-8046-5fbe4a7e3402", "c256af29-830f-4481-a162-10f6ec11d288" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "0c418244-67ea-4e5f-814b-35eb04a1ce0e" ], + "x-ms-correlation-request-id": [ "0c418244-67ea-4e5f-814b-35eb04a1ce0e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014456Z:0c418244-67ea-4e5f-814b-35eb04a1ce0e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B02752CD2C5F4C7F97E6205B96BD1B28 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "7d8e5704-6ed1-4b83-815b-74a7bd82bc6c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "70f2f583-d617-4c35-bdb3-917cfda8a058" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8044a463-8c9f-4e8c-9b53-c2dfeca079b6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "068474ae-59ff-4d72-a064-0595c58cb1bf" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014457Z:068474ae-59ff-4d72-a064-0595c58cb1bf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A3018E18062546298BA8896BC1E7008A Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"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-fqti/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-fqti?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "e4657011-ac40-4df3-a12b-faff6f3622c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11296,21 +13298,1854 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "6adfe0a6-8795-43e6-944a-84f6b78050eb" ], - "x-ms-correlation-request-id": [ "6adfe0a6-8795-43e6-944a-84f6b78050eb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114416Z:6adfe0a6-8795-43e6-944a-84f6b78050eb" ], + "x-ms-request-id": [ "af9c5361-3737-4775-845c-abf0bec42269" ], + "x-ms-correlation-request-id": [ "af9c5361-3737-4775-845c-abf0bec42269" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014457Z:af9c5361-3737-4775-845c-abf0bec42269" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5548DD0A5A6E4F2F944570A86434D387 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "242" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-fqti\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/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-Flex-RG-fqti/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "507" ], + "x-ms-client-request-id": [ "b032ecf5-2f6f-4067-bf0a-67f1b1aa6e9f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "9991ec51-5213-477c-a82c-a932126e8cc7" ], + "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": [ "40463ab2-e3ce-4e8e-8644-22f67c65f7ca" ], + "x-ms-correlation-request-id": [ "40463ab2-e3ce-4e8e-8644-22f67c65f7ca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014459Z:40463ab2-e3ce-4e8e-8644-22f67c65f7ca" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2B4ECF9C5F4345FEA0FA3AA2AC41DDBB Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:44:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1702" ], + "Content-Type": [ "application/json; charset=utf-8" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":6,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?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-Cleanup-Test-fqti\",\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": [ "c26ec5dc-3335-4be5-be83-5b6b20176414" ], + "X-AspNet-Version": [ "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/62a4d82a-919f-4ece-99bb-43ba604f41ab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "5169cf16-555f-44ef-bffd-51277ab6c514" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014501Z:5169cf16-555f-44ef-bffd-51277ab6c514" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 61682472762845D7BD113F6F714BFFC7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:00Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "0bf4b4da-09c9-46b4-afd8-4c526c37586c" ], + "X-AspNet-Version": [ "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/7b3588df-4114-4f90-9227-8279c61c5154" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "40e08ebe-a923-441f-825c-f5799457b1cb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014508Z:40e08ebe-a923-441f-825c-f5799457b1cb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4B8DCEA287024DD9B51C2B96CBEE9587 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1902" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52545,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52545\",\"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-14T01:45:08.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "c1684c4f-ad06-4c6d-b3ad-247e27b70d1c" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2509727f-5f1d-4398-ad14-24c559e2f3ef" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c38e5ce7-70c3-4ea1-9549-1791fc50e94b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014538Z:c38e5ce7-70c3-4ea1-9549-1791fc50e94b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B4AF28951EF42E383B9F620A73D5847 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52545,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52545\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:45:08.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "c1684c4f-ad06-4c6d-b3ad-247e27b70d1c" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2ad2f578-b2c2-4a53-b8a7-ab09516d22d3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "acac5651-dbe0-4e03-a540-a830370b9bae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014539Z:acac5651-dbe0-4e03-a540-a830370b9bae" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0680188BCB7E4C9B8F73D22EF789C961 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52545,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52545\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:45:08.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$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": [ "513" ], + "x-ms-client-request-id": [ "3f9a59bf-c131-4c3d-84b2-c51228825c2f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "52cfc3e7-b6f5-4ade-b8f9-0b4ce93f213e", "d214a231-2339-4308-a3c5-a0958fb433da", "62bb97e2-b33e-4e39-bad6-d4c337e574d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "9c075f30-85d5-464d-bdcc-afd0f0a03045" ], + "x-ms-correlation-request-id": [ "9c075f30-85d5-464d-bdcc-afd0f0a03045" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014540Z:9c075f30-85d5-464d-bdcc-afd0f0a03045" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 07FC7BAACA90419384F7088627CC24ED Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "a98ebf1e-8905-4fff-bd67-53a4a66c5b99" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "a6d042a1-8e1c-48c9-a2e0-a8e2eea78844" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/38a60874-bba6-489f-88df-d37e9aa1b2dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7fcc2ac2-92e0-4bf1-9265-bf0436d20550" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014541Z:7fcc2ac2-92e0-4bf1-9265-bf0436d20550" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B55CA32BDC5E4DA7B9CAC64C81055E80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095f24ec-601e-0026-1108-552633000000\\nTime:2025-11-14T01:45:41.1257975Z\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01+8": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-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": [ "\"0x8DE231F85230EFF\"" ], + "x-ms-request-id": [ "b28e4b6e-c53b-4c91-84a6-889d8858e290" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/be34798c-db54-458c-b477-e146a810bb46" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "68fa1191-9430-4c14-891a-a9a55d8d4235" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014541Z:68fa1191-9430-4c14-891a-a9a55d8d4235" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7D7310E693CD4830B724E93B296A5B98 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "452" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000\",\"name\":\"app-package-functionscleanuptestfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$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": [ "516" ], + "x-ms-client-request-id": [ "d37a3e24-fb1b-45e7-aa9b-4ae0e225fa29" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c9553ff7-b7a4-4ff8-bffe-201a3e2f183d", "7c7e94f3-86a9-48eb-a376-eba780aabc97", "159563ff-c882-4a6a-884e-c9823d43d64b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1de2c9a3-102f-443b-bac5-c64e35c990c5" ], + "x-ms-correlation-request-id": [ "1de2c9a3-102f-443b-bac5-c64e35c990c5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014542Z:1de2c9a3-102f-443b-bac5-c64e35c990c5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9131EDBAB4FB4B0CB0FCDE898DDC0D60 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "747742b4-29fc-4638-8783-e88085f19e5d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "46c8e067-8011-4799-816f-c6ce3403b076" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/015d4683-6b13-4de0-9870-6c1f60220a29" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bd24967b-f53f-4949-accb-0508deb0305f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014543Z:bd24967b-f53f-4949-accb-0508deb0305f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BBCE0413303C4E3487BD68A7235659A3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "e5da39c2-497f-4fbe-8201-e3538cc97d40" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "2a2a17ae-219b-4265-99a8-af5fcf74f6f8", "17ebaa1f-b4c3-44b5-998c-02c1d142f080", "80e29e71-46e0-4c66-944a-135af25b6c7a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c368e6a0-444a-4b8d-8a3c-8dd7d36345b7" ], + "x-ms-correlation-request-id": [ "c368e6a0-444a-4b8d-8a3c-8dd7d36345b7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014543Z:c368e6a0-444a-4b8d-8a3c-8dd7d36345b7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 675A3D7CA9EF42BFA64DD14F7EA9E238 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+12": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "5eda5384-49c5-4f0a-9b86-137e0adbd064" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "88d9363d-bc59-48fb-b20b-ce18bd0d55a8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8fecd5e7-84c9-4f3a-a065-7f19fbc2143a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "81a1ec67-c54c-4e87-8011-6044e8e7261a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014544Z:81a1ec67-c54c-4e87-8011-6044e8e7261a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B428F1640B6247648E6A44F105E9E47D Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+13": { + "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": [ "520" ], + "x-ms-client-request-id": [ "db251778-311f-4309-aa5b-5d61a07e134a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], + "FullCommandName": [ "Get-AzAppInsights_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "", "" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "e953efb1-9a3e-4d41-a3cc-cd63733f2cd1" ], + "x-ms-correlation-request-id": [ "e953efb1-9a3e-4d41-a3cc-cd63733f2cd1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014545Z:e953efb1-9a3e-4d41-a3cc-cd63733f2cd1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9FAAE9B3B2A3415197D03F023D2EB5ED Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "23560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"0607097e-0000-0300-0000-6916815d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-zq9mby\",\"AppId\":\"577086da-1113-4767-8fd2-5be3162b711a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7\",\"ConnectionString\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\",\"Name\":\"Functions-PowerShell-74-zq9mby\",\"CreationDate\":\"2025-11-14T01:09:45.6834528+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-zq9mby_577086da-1113-4767-8fd2-5be3162b711a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-zq9mby-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607b791-0000-0300-0000-691681ac0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-nvsk38\",\"AppId\":\"6b2a637a-aba1-4db7-9981-515565c4013a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"91220207-0288-4ea6-97e6-e3dfcec0044e\",\"ConnectionString\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\",\"Name\":\"Functions-Node-22-nvsk38\",\"CreationDate\":\"2025-11-14T01:11:04.0715359+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-nvsk38_6b2a637a-aba1-4db7-9981-515565c4013a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-nvsk38-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607d2a1-0000-0300-0000-691681e90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-r0w8sa\",\"AppId\":\"77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"868ce2c0-1023-4398-80d6-d3e35eebb25b\",\"ConnectionString\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Name\":\"Functions-DotNet-8-r0w8sa\",\"CreationDate\":\"2025-11-14T01:12:03.525488+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-r0w8sa_77455f5c-2f64-431c-bd21-50a9fab514e9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-r0w8sa-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607dcb6-0000-0300-0000-6916823c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-wq8ygc\",\"AppId\":\"c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c03b9d8e-8300-4a6d-b792-e0ff245d67ee\",\"ConnectionString\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Name\":\"Functions-Python-312-wq8ygc\",\"CreationDate\":\"2025-11-14T01:13:27.6629314+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-wq8ygc_c4683401-bb3c-41e0-8a2a-2a9d2824c97e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-wq8ygc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607a1ca-0000-0300-0000-691682830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b-new\",\"name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"AppId\":\"c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"ConnectionString\":\"InstrumentationKey=a866cc82-d5d8-4255-9a52-47cf08de5202;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"CreationDate\":\"2025-11-14T01:14:39.0556967+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-1hufk4w38b-new_c1f3521a-f04c-4aef-bcc1-e1cca9013861_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"07075f14-0000-0300-0000-691683930000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"AppId\":\"fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"312a33ec-580c-489c-9e80-b4756c09f157\",\"ConnectionString\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"CreationDate\":\"2025-11-14T01:19:10.9931567+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-12q6pcrzoi_fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-12q6pcrzoi-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803fa6c-0000-0200-0000-691684290000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-fqti\",\"AppId\":\"823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0efc83b9-d2e9-496d-b76a-e87df304b77e\",\"ConnectionString\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Name\":\"Functions-Flex-DotNetIsolated-fqti\",\"CreationDate\":\"2025-11-14T01:21:33.3685541+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-fqti_823ef2bc-8959-4971-9e37-d58eb123f38b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033075-0000-0200-0000-691684ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-fqti\",\"AppId\":\"968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aa497dca-41c0-4f25-ad85-ea184f06d59b\",\"ConnectionString\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Name\":\"Functions-Flex-Node-fqti\",\"CreationDate\":\"2025-11-14T01:23:48.8943199+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-fqti_968cb2e5-19cd-47be-8eca-ca4b54c56198_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033d7f-0000-0200-0000-6916852e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-fqti\",\"AppId\":\"c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a897e4a4-c870-4a15-b6df-76a54fac74ca\",\"ConnectionString\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Name\":\"Functions-Flex-Python-fqti\",\"CreationDate\":\"2025-11-14T01:25:56.8152138+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-fqti_c8d3eeb1-cc4b-4546-ae45-fd80c21d286a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78030586-0000-0200-0000-691685b30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-fqti\",\"AppId\":\"506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5f545946-1221-4899-8409-2baa332ca728\",\"ConnectionString\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Name\":\"Functions-Flex-Java-fqti\",\"CreationDate\":\"2025-11-14T01:28:08.7465952+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-fqti_506250a4-0ecc-4d16-8014-fb7524d4703c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78036d8f-0000-0200-0000-6916863e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-fqti\",\"AppId\":\"f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5e7b4cd9-73cb-403a-af0a-64ff32c02c12\",\"ConnectionString\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Name\":\"Functions-Flex-PowerShell-fqti\",\"CreationDate\":\"2025-11-14T01:30:28.5375832+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-fqti_f22e7b45-3b1f-44aa-bf06-d4dd323abd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78035797-0000-0200-0000-691686c10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-fqti\",\"AppId\":\"14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"143ef9ce-b044-489b-a861-98f08c756b79\",\"ConnectionString\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Name\":\"Functions-Flex-Custom-fqti\",\"CreationDate\":\"2025-11-14T01:32:39.371848+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-fqti_14dddbd1-fcb1-48dc-995c-951171fe2050_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803b09f-0000-0200-0000-691687430000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-fqti\",\"AppId\":\"f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bd21d36f-2dc5-44b2-9972-cf28dac8d726\",\"ConnectionString\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Name\":\"Functions-Python-Flex-Scaling-fqti\",\"CreationDate\":\"2025-11-14T01:34:50.0402919+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-fqti_f5571936-d55e-4e8c-8611-251a7ef7afc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78031fa7-0000-0200-0000-691687c70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-fqti\",\"AppId\":\"269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a1b15bef-4df1-46f5-8ef7-d8e8f302abca\",\"ConnectionString\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Name\":\"Functions-Node-SystemIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:37:01.0199716+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-fqti_269d91da-c89b-4f48-ae9b-b80601d7c805_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780384ae-0000-0200-0000-691688480000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"AppId\":\"4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c59dec64-225e-4f2a-9c2b-65004cec61ca\",\"ConnectionString\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:39:10.2457191+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-fqti_4eae3893-4654-43e2-94cf-9c61db1775ec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780310b6-0000-0200-0000-691688ce0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-fqti\",\"AppId\":\"986f7406-ebeb-4294-ab2d-3752dc766278\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7d557552-614c-4aa8-b52b-bfb83f30b33e\",\"ConnectionString\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"Name\":\"Functions-PS-CustomConfig-fqti\",\"CreationDate\":\"2025-11-14T01:41:24.4271273+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-fqti_986f7406-ebeb-4294-ab2d-3752dc766278_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+14": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "521" ], + "x-ms-client-request-id": [ "513c46ab-9e65-4cd1-a903-b0182cee4410" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], + "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "f9d105af-0ecd-4e38-b7c9-796a17802edc" ], + "X-AspNet-Version": [ "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/6031c90b-c0af-4361-944f-58bf4ad88de1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "64b1c3ed-23ec-4fd5-9d24-f1675920710f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014551Z:64b1c3ed-23ec-4fd5-9d24-f1675920710f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5EB0C79E88B54F80B6FC8E69E74EE6B5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:50 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01+15": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "7f1dce5a-9c10-45f4-a6a1-17121d5f0cb4" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzBlobContainer" ], + "FullCommandName": [ "Remove-AzBlobContainer_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "a5c69063-095f-4508-ac99-c2ba864ff81a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2f0c5169-3039-4bfc-909c-de32ef650122" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "e95206ff-a58d-48c7-9641-baeb45b4ebf1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014551Z:e95206ff-a58d-48c7-9641-baeb45b4ebf1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F206F618DDE5422A8407D9097CF920F6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:51 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "text/plain; charset=utf-8" ], + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Cleanup-Test-fqti?api-version=2023-12-01+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Cleanup-Test-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "9fead595-b95d-425d-9ef7-7d1f85a6b059" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "8d5bbac2-8a29-48de-b9c3-bf47e95b3196" ], + "x-ms-correlation-request-id": [ "8d5bbac2-8a29-48de-b9c3-bf47e95b3196" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014551Z:8d5bbac2-8a29-48de-b9c3-bf47e95b3196" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 347438E224C2420F90DB0CC0B65E9EDA Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:45:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "241" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Cleanup-Test-fqti\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "524" ], + "x-ms-client-request-id": [ "230d9661-267b-4411-9f1c-f109d35c78a8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "9b75154c-3254-4148-b111-7660de58f990" ], + "x-ms-correlation-request-id": [ "9b75154c-3254-4148-b111-7660de58f990" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014602Z:9b75154c-3254-4148-b111-7660de58f990" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6BC116551A734A2AA9D7FF03C68BB602 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "248" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRGfqti-0000\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$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-Remove-FlexPlan-fqti\",\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": [ "167a7ceb-bb7a-45cf-a24e-81002db1b507" ], + "X-AspNet-Version": [ "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/74eb1b3f-f190-42ea-a52f-6bd79cf70449" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3404cbe1-d304-4f8d-ba82-8acdefba1f72" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014603Z:3404cbe1-d304-4f8d-ba82-8acdefba1f72" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B0CF79FF686443F8BB403B2EEC8EAB6D Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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": [ "6d626f5b-95c5-40ea-9768-cca8e7224e8b" ], + "X-AspNet-Version": [ "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/45eb266e-c653-4520-a856-4f47389c1fa8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "9d7d5a8d-080b-4ef9-b3dc-96149fd75676" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014608Z:9d7d5a8d-080b-4ef9-b3dc-96149fd75676" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 04E0434E0845466EA9B4FC3C311BE2A5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1907" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "6c299823-8060-438f-b1f0-547ee2b71240" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4803cd2a-31ca-42ae-84c0-a8758b48f61a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7766d844-17c8-4cc4-87cd-fae662a1cce4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014638Z:7766d844-17c8-4cc4-87cd-fae662a1cce4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 474F7A63FC08473EA6FBF80FC3322AEA Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "6c299823-8060-438f-b1f0-547ee2b71240" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "effd927c-afb6-4722-ba58-602b3b5c3376" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "18ec81b4-136d-441c-a937-2211950f2ac2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014639Z:18ec81b4-136d-441c-a937-2211950f2ac2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 468101883A294EA19D1CA07101A3B232 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "530" ], + "x-ms-client-request-id": [ "8e5db27f-1933-4d35-8510-cf6ef2590968" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "bf962b4b-12d6-42bc-84aa-d67077bcd87e", "68267722-4dd5-4762-bcf1-65eb1dad1677", "c7cac9cf-d750-4a75-92c7-2886900b655d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "da02e6f4-f433-42cf-b464-45f82cf6a338" ], + "x-ms-correlation-request-id": [ "da02e6f4-f433-42cf-b464-45f82cf6a338" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014640Z:da02e6f4-f433-42cf-b464-45f82cf6a338" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F79E94AB8A3B47D78371373D0BADAAD2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "00124662-c92e-49b0-9b7d-f3870e06c61f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "72b7f7a2-29c7-4c4b-b7b3-c84d44140587" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d4d70acc-c91a-4b2e-a97e-b2d1ab050365" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62fccd63-6068-4b7e-ae6b-b4c67c3c776c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014640Z:62fccd63-6068-4b7e-ae6b-b4c67c3c776c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D29E054FD1B44FB689EAC710D1586D46 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095f666f-601e-0026-7f08-552633000000\\nTime:2025-11-14T01:46:40.8325468Z\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-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": [ "\"0x8DE231FA8B3E723\"" ], + "x-ms-request-id": [ "a8d14d8f-3c69-4d7b-9548-d5bdefe6a3a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d1ebe8d0-a573-4ef5-81c0-a99df41d04f4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "fd993c98-17fd-4228-be30-85f3806edaea" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014641Z:fd993c98-17fd-4228-be30-85f3806edaea" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 49B2D36AB0004CAEBE4FF61A5C04976A Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "458" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000\",\"name\":\"app-package-functionsremoveflexplanfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "533" ], + "x-ms-client-request-id": [ "db6469b4-95b2-468d-a71a-97ab781e057e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "f068ee9b-b03a-473d-a5e8-f8755a495b56", "cf7ff7bb-4b04-4f4c-89b8-c377ab537f56", "d6adebd8-f8f1-4987-9d37-c6767a324991" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "635bd468-51d1-4f9d-9341-bb3fcc051b3f" ], + "x-ms-correlation-request-id": [ "635bd468-51d1-4f9d-9341-bb3fcc051b3f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014642Z:635bd468-51d1-4f9d-9341-bb3fcc051b3f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 302B9B5E81124A76B36D01D521198B04 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "d5d83369-aeab-4c28-a15f-9262fa8ae530" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ca8b3651-94d1-441d-b8aa-955958922770" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8468245d-2af0-414b-92af-7c6d100044ab" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "98fb9565-d5ea-48a8-88d1-79c1af6ff300" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014643Z:98fb9565-d5ea-48a8-88d1-79c1af6ff300" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D5FC01A408E1421A9FEAABC963096BEF Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "535" ], + "x-ms-client-request-id": [ "254143bd-6815-479d-9cf0-6f31da921ca0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "d424fc70-3193-477f-8b52-1e2e5f16a0bb", "14c89ada-2f31-4536-a7de-e4de34b046b1", "01ef3638-99d1-489b-8eac-cd76be0504c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "8a1444c8-4943-494a-a49c-9d24c039b254" ], + "x-ms-correlation-request-id": [ "8a1444c8-4943-494a-a49c-9d24c039b254" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014644Z:8a1444c8-4943-494a-a49c-9d24c039b254" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 429A67A86D8743E58A233AD3F2A7BD07 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "240f8381-1733-4423-a9a7-8a8aa6aa3cb6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "360a4643-33ef-4fc4-b069-9afeb21a5706" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/accdd692-ede8-49ca-98fd-f017d4b0004a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c4d56f96-d3a3-45d4-a858-81591494e616" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014644Z:c4d56f96-d3a3-45d4-a858-81591494e616" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3A6C5A1C10D24CD98C2FFCF1FC4B967B Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-fqti?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-fqti?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/e4d84f06-a200-499b-ba76-5b87888b8fb2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "decc20f5-7a29-47d9-9003-d45588ee1fe7" ], + "x-ms-correlation-request-id": [ "decc20f5-7a29-47d9-9003-d45588ee1fe7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014657Z:decc20f5-7a29-47d9-9003-d45588ee1fe7" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9698F783037E4F418607F9361B761706 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:46:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1636" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"780305c8-0000-0200-0000-69168a110000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Remove-FlexPlan-fqti\",\r\n \"name\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"AppId\": \"0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e49ed1a3-64f6-4bb2-9926-8c63360b2424\",\r\n \"ConnectionString\": \"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\r\n \"Name\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:46:46.7503128+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-fqti_0823e19a-ea36-42d1-8cc8-def2dda9bd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-fqti-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1996" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55089170E56B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "02fe5af9-f3ae-402d-9248-60e330ac285a" ], + "X-AspNet-Version": [ "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/7e5df653-700f-4a39-a85c-34458691f9b3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "3081dcd2-12e4-4ea7-8281-0c92a1f0107a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014720Z:3081dcd2-12e4-4ea7-8281-0c92a1f0107a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CAEF2AF348CF4C61B894E438ED9482E0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9557" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:46:59.48\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "539" ], + "x-ms-client-request-id": [ "7cc26aff-e286-4d95-9e73-8e4e6440c4ca" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55089D9620F5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6333a6a6-a541-49ba-99a0-f96578f6ba6c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "37e02ddc-016f-4d92-88be-61d0009c37b3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014751Z:37e02ddc-016f-4d92-88be-61d0009c37b3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1EEE30B594464BBAA6D1508DFBE8EBB8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9539" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:47:20.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "febfe43a-70cc-4f51-9435-86dc97af0ed7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55089D9620F5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cd4eb993-401f-4687-80d6-e569c84d897d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "45ae6a43-eb3b-412a-8c55-b35fcb82d0d6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014751Z:45ae6a43-eb3b-412a-8c55-b35fcb82d0d6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 534440FEC90F4D9CB32880E64DE0F20E Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9539" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:47:20.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "2f734280-b602-4cca-9a09-fba233102d2a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f54b708c-3493-407a-8939-108c93395eb5" ], + "X-AspNet-Version": [ "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/4a08fe88-27ef-47f2-a8a6-b63563d7cfdd" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5fde79ef-b326-4d68-98b3-d59ba8dfa7e5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014752Z:5fde79ef-b326-4d68-98b3-d59ba8dfa7e5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9C04914824964FBDA8DE063157A7F513 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1021" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "e2323f05-c6ac-47c2-b059-c63b839c1980" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "3cacf771-7392-461c-be79-3a4b5ddaad03" ], + "X-AspNet-Version": [ "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/a6d08673-f669-4cec-970c-0d5b6a1b0660" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "56422e98-588c-42a7-8a1c-2739c40ab7ee" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014752Z:56422e98-588c-42a7-8a1c-2739c40ab7ee" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0430CD450C3E47818D3905AAFFE785B4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4161" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "188c2d90-3c65-4d6a-a7db-367ec1acb1a1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "df6ae4a9-fa98-49e1-a829-2a96625f2854" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5e7896f0-ad0f-4e96-9609-39da336fc16a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014753Z:5e7896f0-ad0f-4e96-9609-39da336fc16a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 20B507086B3244AC80EB75981965E548 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "0cad6a10-315b-4006-a409-985e2d2017cd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55089D9620F5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cc09590b-aeee-4b36-b54b-a10c8dc59773" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7966ca21-524e-4dd3-8f56-018f3068f06c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014753Z:7966ca21-524e-4dd3-8f56-018f3068f06c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1557DD50E18442149A3435FCF155E73A Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9539" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:47:20.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "8e6f0fde-8365-4b4d-981e-822fe2395c00" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "46ba8463-d48e-4857-8dd0-57bc3dc31761" ], + "X-AspNet-Version": [ "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/b333a331-c3c2-4f91-82cf-be234dd051e2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a99bb1e3-3c69-43ba-b962-ea9ba8f4bcfe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014754Z:a99bb1e3-3c69-43ba-b962-ea9ba8f4bcfe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8BBE1AED515D41908D18160CCB807A7A Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1021" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "ed3f5e90-dc08-4fe9-827e-d3eda974d7aa" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "4cd9af62-822f-4a25-8b01-b6fcdc8ad1a6" ], + "X-AspNet-Version": [ "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/3f0f5c36-7042-4aa5-b4ff-07e40d1f0747" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5c66133f-65a0-49ac-b895-04f5af3fb603" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014754Z:5c66133f-65a0-49ac-b895-04f5af3fb603" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7D19CF9106E64C4B8033D463C874341F Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4161" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "6692bba9-e11c-4f98-bc9b-1473acc3e60d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ee6d4cb1-3d76-4ca1-992b-16f47362c4fa" ], + "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": [ "009a9e20-aa43-4bda-81fe-5c1493a72a1f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014755Z:009a9e20-aa43-4bda-81fe-5c1493a72a1f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 848D6CFD0AAC473F90512DE0086A3A09 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:47:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "92503a5a-a667-4d32-ae21-897a153b24b8" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55089D9620F5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a58a67c8-732f-4e95-bca4-f65a019c4fc3" ], + "X-AspNet-Version": [ "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/cad33bc5-3dc5-4c53-a7bb-2dacaf50a37f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "65728050-3c7e-4786-acb3-01c953714f70" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014814Z:65728050-3c7e-4786-acb3-01c953714f70" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5F66BCF428CE47A98A3E951057B66486 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:14 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "5303d609-b827-43a7-bcd0-a621326c155d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "f239d91b-d1df-4a58-bcbf-16dec8092f21" ], + "x-ms-correlation-request-id": [ "f239d91b-d1df-4a58-bcbf-16dec8092f21" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014815Z:f239d91b-d1df-4a58-bcbf-16dec8092f21" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4FA983FB14FA43EEB6E4E8063EC73B2E Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:14Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "244" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "550" ], + "x-ms-client-request-id": [ "d601af55-dfd0-4f72-bd3d-2ba969e64f32" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "b37c2c52-877c-4c12-a79c-7b43174e0a27" ], + "x-ms-correlation-request-id": [ "b37c2c52-877c-4c12-a79c-7b43174e0a27" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014825Z:b37c2c52-877c-4c12-a79c-7b43174e0a27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 43020B51303344DBBC380AAD940F8E3C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A49EA5219D2B423A9BFF6A6DE3247EE2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "246" ], + "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-112925\u0027 under resource group \u0027Functions-Flex-RG-112925\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRGfqti-0000\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 825d4ea5fc11..94588addaf8a 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-yji9lmaxko\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomImage-pj3v91g7zb\",\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": [ "59716f22-78ae-417d-92e8-968e54163961" ], + "x-ms-request-id": [ "dcb00985-8bcc-4f58-9317-eaaed24ad26f" ], "X-AspNet-Version": [ "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/69e50c1f-cbdb-43d2-9086-2cc05fa16d3a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6dabd097-4e12-423b-8d5c-f1a999025ffd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6d4c3b4d-cdbd-491e-9107-19729e2282bb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114418Z:6d4c3b4d-cdbd-491e-9107-19729e2282bb" ], + "x-ms-correlation-request-id": [ "556f1797-d44b-4c91-ba31-37b612b5f97e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014826Z:556f1797-d44b-4c91-ba31-37b612b5f97e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20BCC16B4FD247DEA362D1A5B6DB93C3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C5E90CDAF4D4EB49B759852EF719D4F Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,8 +47,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "459" ], - "x-ms-client-request-id": [ "1aab9796-5432-4b0a-bf3f-3431be1cab70" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "c4758364-000b-4849-bf50-16e339f0b0db" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,36 +63,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "393b601b-fdde-451d-bb27-1192655f26e9", "bbd2150b-3a54-42cd-972b-a8a177ec4954" ], + "x-ms-original-request-ids": [ "dd354a62-a95a-48bd-add7-0d23cbf34a34", "acaa97b3-ed40-461e-9f83-bf8377f08431" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "8955933b-a3b0-400f-a6bc-fdcc136b6dfc" ], - "x-ms-correlation-request-id": [ "8955933b-a3b0-400f-a6bc-fdcc136b6dfc" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T114419Z:8955933b-a3b0-400f-a6bc-fdcc136b6dfc" ], + "x-ms-request-id": [ "171021d6-b00e-441f-aafe-62e61b29021a" ], + "x-ms-correlation-request-id": [ "171021d6-b00e-441f-aafe-62e61b29021a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014827Z:171021d6-b00e-441f-aafe-62e61b29021a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF5A85BD25384DA5A6A662B644E054C4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 725BA7242EC44E7BBC402C3AE6777CB9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "12094" ], + "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "460" ], - "x-ms-client-request-id": [ "be7fc235-81ed-466c-8d07-0eca121c5684" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "eefdfd47-ab2a-40b9-a997-41248f2bedfb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -108,36 +108,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ec325d5-5b71-4dc5-a792-29b669ed684e" ], + "x-ms-request-id": [ "115ef949-07f2-4647-95e6-19c9fe8c46a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "82b9a44c-d4f4-4ca8-8034-6e47912255ab" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114419Z:82b9a44c-d4f4-4ca8-8034-6e47912255ab" ], + "x-ms-correlation-request-id": [ "8ff5beeb-6db6-4de9-b611-6a3422d6a694" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014827Z:8ff5beeb-6db6-4de9-b611-6a3422d6a694" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70294FD0E9F44D33892607225F29B994 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7BA0C0EF9588434FB44DEBC33D0000C2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "461" ], - "x-ms-client-request-id": [ "498b423e-3f66-4bf3-be07-4ab5eee7d970" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "e1b3b882-c74b-46a2-9c1c-26811208b3f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -153,36 +153,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5088e54-a630-48cb-b5be-b9f8e321fd9c" ], + "x-ms-request-id": [ "5e69c6b6-e6bb-4d74-8a00-07a9dfedf1f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "20a54220-5226-4ce0-a66a-c9780e515c61" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114419Z:20a54220-5226-4ce0-a66a-c9780e515c61" ], + "x-ms-correlation-request-id": [ "ce495e15-ff11-4549-afcd-3e0319e31f07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014827Z:ce495e15-ff11-4549-afcd-3e0319e31f07" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B55ECB473BF94657BD869F15C327B23E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CF439AF8FA948578C005ADDD44AD0AF Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "462" ], - "x-ms-client-request-id": [ "46d78c79-b03d-49ac-b496-5c038046aa24" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "06259234-398c-4f52-be81-e90aa3ad8891" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -198,36 +198,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f570c52-cab1-405c-b693-de376e884c7e" ], + "x-ms-request-id": [ "ac0315d0-3057-47ed-b41e-1c1b6f6cbd89" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79d89f94-f127-4ab9-80ae-dc7c177dc7be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114419Z:79d89f94-f127-4ab9-80ae-dc7c177dc7be" ], + "x-ms-correlation-request-id": [ "3fd1d764-f742-45f7-8d62-484d240577f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014827Z:3fd1d764-f742-45f7-8d62-484d240577f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1AABD33A9F9405B8B76819F076CC18C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAAF79EAB35C48C09637B988EE180721 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "443b83a5-f5ba-4969-be24-0e095c062e11" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "388ed3fc-664c-43a6-b384-210de7ce91c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -243,36 +243,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b3ee0b20-654e-4572-ade2-cc2529810c7c" ], + "x-ms-request-id": [ "e805a785-b900-4fe4-8528-1dbf96ecaacd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5babfcce-b154-4050-ac5f-47eb4c8bc3e8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114420Z:5babfcce-b154-4050-ac5f-47eb4c8bc3e8" ], + "x-ms-correlation-request-id": [ "c11f1c61-51f0-43c7-85ad-20a4eadaadf3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014828Z:c11f1c61-51f0-43c7-85ad-20a4eadaadf3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37B39007B9B948A397FE699DB5425547 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:20Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01AC558B9F9641ADA53BE8DE9909F5EE Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "464" ], - "x-ms-client-request-id": [ "2acae4c2-86ae-4cae-b9e9-a5bf3f37c53a" ], + "x-ms-unique-id": [ "557" ], + "x-ms-client-request-id": [ "77f12a62-5d5f-4b7e-bec5-2ebeaef109eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -288,81 +288,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a719236a-136c-4af5-a0e3-abedb7089916" ], + "x-ms-request-id": [ "93cd8c83-aa5e-4af5-b9b8-48ed55770eff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "865b860b-c458-4ad5-a6cf-8de4a38fc776" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114420Z:865b860b-c458-4ad5-a6cf-8de4a38fc776" ], + "x-ms-correlation-request-id": [ "7425eea1-41a9-498b-845a-7c5ab9c5c438" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014828Z:7425eea1-41a9-498b-845a-7c5ab9c5c438" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49939A41F8AF4FCAA63BF5DB4F83E33D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:20Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D66E5D2019B4BC89C7A5DA90E90B3F4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "28e79e8e-32e6-4100-88ac-f5f4a4bf1b65" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3ba467d-fae4-409b-89ef-5db3f4440e42" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "91cb8f59-b806-475a-affb-98da6f50d028" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114421Z:91cb8f59-b806-475a-affb-98da6f50d028" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55463CA265E742C690365489F512321E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:20Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:21 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "466" ], - "x-ms-client-request-id": [ "232023af-a53f-4f3e-8df7-c0385aa3a1ac" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "72a95b20-b143-466c-ab56-c1f19e539070" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -378,36 +333,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32873136-8960-44b7-ab77-1cd359aa6292" ], + "x-ms-request-id": [ "d5b56209-8861-4854-a86a-928ed9e80e4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "017775de-630f-4878-b33c-43c56310ef39" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114421Z:017775de-630f-4878-b33c-43c56310ef39" ], + "x-ms-correlation-request-id": [ "8666659d-30e2-447c-86ad-43d876325a30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014829Z:8666659d-30e2-447c-86ad-43d876325a30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB644A38AFA9499F9FBFD089BCAFE2F8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D7B3D5A40E649EDBA7BB6C757B3406F Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1700" ], + "Content-Length": [ "1690" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":6,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { "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": [ "1c08e575-3349-4084-8895-bdd149b152f6" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "7d6fb6b6-2e2b-4d10-912d-2320e87655f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -422,36 +377,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2da39634-8484-4005-9db7-e248cf798abe", "a945deb9-edd5-471d-9b98-fefa3b0c7dc1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "4dfd4e0a-d01c-4f5a-bbe2-c6f065c74ada" ], - "x-ms-correlation-request-id": [ "4dfd4e0a-d01c-4f5a-bbe2-c6f065c74ada" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114422Z:4dfd4e0a-d01c-4f5a-bbe2-c6f065c74ada" ], + "x-ms-original-request-ids": [ "dffe3a2e-e7ca-45b6-b06d-8e9a75483cb7", "4db864e8-d954-427a-bb3b-8b535c9c1154", "a124a05f-b292-4b6c-a9f4-ea6bba79f7e6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "64848fdf-9a91-4f8c-9bdf-69d3d50a7165" ], + "x-ms-correlation-request-id": [ "64848fdf-9a91-4f8c-9bdf-69d3d50a7165" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014830Z:64848fdf-9a91-4f8c-9bdf-69d3d50a7165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B448ABCCA5E4C449974EBE50B1547B1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 796762A76F754311B94FEF85429CB1A7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "3e910a6a-b78a-4fb4-8e45-571847cdc4a0" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "96ede311-1227-420a-a9f8-5d5271e86198" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -466,30 +421,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dcfb0b12-dfdc-425e-9968-1b97613d3286" ], + "x-ms-request-id": [ "00dff137-c0ac-4159-b848-b4aba2e9b6c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/f757fd88-867c-4d89-99e9-0bd74bec726c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8ed4b6a4-fb6f-4ae7-89df-05a119a414e3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fc0f953b-9dfb-4950-af3d-05aa19870c8a" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114422Z:fc0f953b-9dfb-4950-af3d-05aa19870c8a" ], + "x-ms-correlation-request-id": [ "0ae74d0d-e0ab-4a25-8a23-d747914f7219" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014830Z:0ae74d0d-e0ab-4a25-8a23-d747914f7219" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85388D3DBD8F40DF8A9C14D05467525D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36D1C9A9344F47079568C35D35B4B41C Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Insights/components/Functions-CustomImage-yji9lmaxko?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Insights/components/Functions-CustomImage-pj3v91g7zb?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-gpxn1b/providers/Microsoft.Insights/components/Functions-CustomImage-yji9lmaxko?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Insights/components/Functions-CustomImage-pj3v91g7zb?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": { @@ -509,30 +464,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a314982a-db3a-4e14-81e9-188043f6788a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/889a302d-73fa-401a-ac78-f87439107202" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "0ba3f94d-3d8d-4b6c-bbe9-badbaa5db974" ], - "x-ms-correlation-request-id": [ "0ba3f94d-3d8d-4b6c-bbe9-badbaa5db974" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114427Z:0ba3f94d-3d8d-4b6c-bbe9-badbaa5db974" ], + "x-ms-request-id": [ "4f4062a8-9b9e-4bea-864d-a03d1624ea70" ], + "x-ms-correlation-request-id": [ "4f4062a8-9b9e-4bea-864d-a03d1624ea70" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014835Z:4f4062a8-9b9e-4bea-864d-a03d1624ea70" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 160B12AF1BE84BBA8D82D070534F010C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3DA6B973A774BD3B659EDA9D91DA2F9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"710656fd-0000-0300-0000-6914731b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-CustomImage-yji9lmaxko\",\r\n \"name\": \"Functions-CustomImage-yji9lmaxko\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-yji9lmaxko\",\r\n \"AppId\": \"9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8b8afcaa-2646-4009-95c4-6e2cf3b772bc\",\r\n \"ConnectionString\": \"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\r\n \"Name\": \"Functions-CustomImage-yji9lmaxko\",\r\n \"CreationDate\": \"2025-11-12T11:44:23.2238886+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-yji9lmaxko_9feb715d-3efc-439e-aaed-40eb4c7fba8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-yji9lmaxko-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\": \"\\\"080761f6-0000-0300-0000-69168a730000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-CustomImage-pj3v91g7zb\",\r\n \"name\": \"Functions-CustomImage-pj3v91g7zb\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-pj3v91g7zb\",\r\n \"AppId\": \"1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6bd7b803-b629-43e7-84ea-118a7438aa22\",\r\n \"ConnectionString\": \"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\r\n \"Name\": \"Functions-CustomImage-pj3v91g7zb\",\r\n \"CreationDate\": \"2025-11-14T01:48:31.1219098+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-pj3v91g7zb_1f792c5a-5a52-4eb1-9d5c-f64d8f611bad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-pj3v91g7zb-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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-yji9lmaxko\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\"\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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-pj3v91g7zb\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -546,39 +501,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9B4DA2780\"" ], + "ETag": [ "\"1DC5508CBFB0FC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d531b16-3b68-4fb9-bd34-e12dc19fe5bb" ], + "x-ms-request-id": [ "2f7c2ac6-cc60-4846-a9a3-b2bba8a03643" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08c05f15-6d6a-4bf4-9a05-acb77b511fb4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46ba0223-f9d3-492d-912c-ea8b4e428ffb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5cfbb133-0595-4d12-953f-9570887a354f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114452Z:5cfbb133-0595-4d12-953f-9570887a354f" ], + "x-ms-correlation-request-id": [ "61d8a37f-c1b2-4e91-842d-cf905f0315b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014858Z:61d8a37f-c1b2-4e91-842d-cf905f0315b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40A82193E099444B978ECBD491ED9275 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:44:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:44:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAF7CAEA719E488C8B0190DAB6ACDAC5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:48:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8504" ], + "Content-Length": [ "8508" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:29.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:37.4233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "471" ], - "x-ms-client-request-id": [ "26059d80-a7b0-4163-ad34-3da05ae46ac3" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "63ea6cfd-c3c8-49b8-afa7-f5767a3da11e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -592,38 +547,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9C1C33540\"" ], + "ETag": [ "\"1DC5508D7D99855\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51566338-5162-48aa-a393-e3f8d0e6bae1" ], + "x-ms-request-id": [ "fce8f244-f580-4033-83d2-47024c3005e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bf5f305f-d524-4c40-a1b6-61c7570a5e4b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114522Z:bf5f305f-d524-4c40-a1b6-61c7570a5e4b" ], + "x-ms-correlation-request-id": [ "16073d23-14ee-4c22-bfe2-f9e5b82e779e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014929Z:16073d23-14ee-4c22-bfe2-f9e5b82e779e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E0309005FAB5482F8F2C38C109C481B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E03FEC8E03474493999A5BB73C8A9A5B Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8511" ], + "Content-Length": [ "8520" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:51.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "472" ], - "x-ms-client-request-id": [ "8b381a81-c3b2-43d2-8414-78b021907c26" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "3420bfe3-73c3-4b42-b964-8535aabc6bbc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -638,38 +593,175 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9C1C33540\"" ], + "ETag": [ "\"1DC5508D7D99855\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "37def8d8-0ba4-4b7a-a6d7-2e85b572d1e1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7fcacaa0-8202-4f8f-8607-dd4ccd660ca7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014929Z:7fcacaa0-8202-4f8f-8607-dd4ccd660ca7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 34B127D9E5854B16AA882E5FDD2587CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8520" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "c220111a-9bc7-476b-8fe0-3c654fb0ac49" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0b2eab56-4318-4efe-9dcd-7e5f27606bdb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bbc2b2b3-7af4-4eba-9dea-d84a69a6ad5b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c2300cfd-5d0d-424b-bbae-4b83d4cda62c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014929Z:c2300cfd-5d0d-424b-bbae-4b83d4cda62c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1D957CECB4504EDF8144D74066408FCC Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1246" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-pj3v91g7zb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "71c64f6b-7aac-4b0b-a047-f21c2c1997b9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "94be4ec0-c170-4891-a5cf-740f7042fb4f" ], + "x-ms-request-id": [ "71cd0d2f-4e8c-4720-9044-f2f0d45156ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0aa49cae-18ca-443a-b925-6e53ced86ce5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "116987f8-e581-4772-bc2d-e5fc16f980aa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114522Z:116987f8-e581-4772-bc2d-e5fc16f980aa" ], + "x-ms-correlation-request-id": [ "6c855042-6d13-4b59-929f-3a5dcc0cb7f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:6c855042-6d13-4b59-929f-3a5dcc0cb7f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AC05E49F47BF43F5B99E19B394EB130E Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4219" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "70fb3473-6131-492f-951c-6de2d8711e11" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5508D7D99855\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "977b7867-3a6c-4eab-a375-5e30dd351eea" ], + "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": [ "360df3c3-a4c9-4008-bbde-088a204f0cf5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:360df3c3-a4c9-4008-bbde-088a204f0cf5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E20069271C954E089083200C737FAC21 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A86A1230F8FC4EC3B8412BF30479D5C8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8511" ], + "Content-Length": [ "8520" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:51.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "473" ], - "x-ms-client-request-id": [ "1d38ee12-c2bc-465c-8a70-c09525a92921" ], + "x-ms-unique-id": [ "568" ], + "x-ms-client-request-id": [ "a41e6496-9951-494e-ac21-0144266bf3fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -685,36 +777,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51251b0f-1f63-4252-bd99-c52904e734ad" ], + "x-ms-request-id": [ "0347cd50-b71b-463d-b499-ad748c0757b7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e16c5a8-603a-4b30-a687-1eeab2d79fbb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4fd0b773-0f48-4181-83f9-ee7a5830f4c5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "66310ece-eb7a-4a31-a428-72a5f5d0b91e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114522Z:66310ece-eb7a-4a31-a428-72a5f5d0b91e" ], + "x-ms-correlation-request-id": [ "42c77ef6-2584-4fc3-b260-665a2ce924ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:42c77ef6-2584-4fc3-b260-665a2ce924ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A947CF87CF84D31BF7E818C329D6672 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38023701809E48E38BE36C2E9255CADE Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-yji9lmaxko\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-pj3v91g7zb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "474" ], - "x-ms-client-request-id": [ "95c69b42-36bb-4751-8a2e-384cebeb46b5" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "ce6bf150-ea1f-4c66-b1b1-37cdcd464574" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -730,37 +822,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "262ba39a-e5ad-4536-96da-d33a149f834e" ], + "x-ms-request-id": [ "d53e5bd1-0a87-46b2-bbb3-39868fc660a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1e49519-7896-4fef-be4b-76cb08aa6bc1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1745fd06-1e86-41db-a6f7-c86a0454ab8b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c0f7001-737c-4cf0-883e-20e4cc01b7dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114523Z:2c0f7001-737c-4cf0-883e-20e4cc01b7dc" ], + "x-ms-correlation-request-id": [ "e7017a15-cc5f-4e67-aecb-0285b93ca23b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:e7017a15-cc5f-4e67-aecb-0285b93ca23b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08A3CE79CC714A968A20926741AAE650 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27452A2DB0DA42E2B8A0FB30B656C8A1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "475" ], - "x-ms-client-request-id": [ "ac0cd492-b277-481f-8327-6ef02b68dedb" ], + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "4bcfdbd5-6ded-4d5e-ba59-d41389562d7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -775,38 +867,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9C1C33540\"" ], + "ETag": [ "\"1DC5508D7D99855\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05c1951b-2a1f-431d-8f2f-866e6c045e5f" ], + "x-ms-request-id": [ "139a994c-df46-4960-8b6e-91912db8178d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "832ef504-f938-45ce-b1be-c2376b2b26eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114523Z:832ef504-f938-45ce-b1be-c2376b2b26eb" ], + "x-ms-correlation-request-id": [ "452b9b3f-aab7-4af3-b924-8a8840bd3781" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:452b9b3f-aab7-4af3-b924-8a8840bd3781" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D26499DBA9BD41FA84DF14E29A99DE0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EA075637D0D4CA5956C06BD8E44A458 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8511" ], + "Content-Length": [ "8520" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-yji9lmaxko\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-CustomImage-yji9lmaxko\",\"repositorySiteName\":\"Functions-CustomImage-yji9lmaxko\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"functions-customimage-yji9lmaxko.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-yji9lmaxko.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-yji9lmaxko.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:44:51.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-yji9lmaxko\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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-yji9lmaxko\\\\$Functions-CustomImage-yji9lmaxko\",\"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-gpxn1b\",\"defaultHostName\":\"functions-customimage-yji9lmaxko.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "8f8bce81-6fb2-4592-92be-a7b4bf1ed14a" ], + "x-ms-unique-id": [ "571" ], + "x-ms-client-request-id": [ "f7de7a4a-c511-4aa8-abf0-fe8c0c778dd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -822,36 +914,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ad4de04-c168-43da-97bc-474d798eed17" ], + "x-ms-request-id": [ "3ec0a473-d623-41ff-ab55-aedf356de915" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5df8d41e-fe6e-48d0-9295-13d9b2f4a4f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc2b8912-6fe9-4085-bc1e-74f438750335" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9c81bccf-4103-4887-98ce-1a91b4847330" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114523Z:9c81bccf-4103-4887-98ce-1a91b4847330" ], + "x-ms-correlation-request-id": [ "7d87c5af-6a3f-41ec-ac7f-fd06b60e126e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014931Z:7d87c5af-6a3f-41ec-ac7f-fd06b60e126e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D78825B0F834E54920CECB57E367CAC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8CA36F96A4654163A15C8D8ECD808D91 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-yji9lmaxko\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-pj3v91g7zb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "477" ], - "x-ms-client-request-id": [ "e5ca2c7e-2530-45e6-85f3-9eb9076250d2" ], + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "5cfd366a-341e-4a6f-b572-392c300d7cc2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -867,37 +959,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "014d6433-edff-4604-a1d3-c1e87041f292" ], + "x-ms-request-id": [ "4ddf4268-1b0b-49e6-9ffb-9a51ecb082cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93dff054-5002-4dca-a82f-93c2f9c0430a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "870635fa-8c4d-4496-9cb5-a416f3aa5118" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114524Z:870635fa-8c4d-4496-9cb5-a416f3aa5118" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/befe208d-1386-4164-a5e8-eb656025bc2a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "61917694-1fa6-4b8c-bdbf-decfc6df32e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014931Z:61917694-1fa6-4b8c-bdbf-decfc6df32e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D94AB33D1B1145D88A3834DE9AE56723 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A18F448D1DB4E94BF99F84DDC6E4A97 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko/config/web\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "1172d7d9-256e-496d-a604-7e65912b7afa" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0d43fc96-e973-40c6-95ce-b66870e8d5b7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e26e9bf5-14f6-48ae-8a24-961214d5b473" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014931Z:e26e9bf5-14f6-48ae-8a24-961214d5b473" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 167939B593A74BCF889F715969A2BE2C Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1814" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-CustomImage-yji9lmaxko?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "478" ], - "x-ms-client-request-id": [ "69760e6a-dff8-4ac8-842f-12a4079aab55" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "65e554a0-8333-42a6-8193-7066fa655ef3" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -912,20 +1049,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9C1C33540\"" ], + "ETag": [ "\"1DC5508D7D99855\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71ea04b2-1e77-4094-a4c8-cb365b080418" ], + "x-ms-request-id": [ "9cbea595-97ca-4333-976c-1fc25c356fd8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3bf1c58e-bfae-4bee-a0aa-54f91cf1e68b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8098cadf-b299-4694-a185-01143630cf65" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8ad99948-9620-44e5-ba32-d1c9f2e0064f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114531Z:8ad99948-9620-44e5-ba32-d1c9f2e0064f" ], + "x-ms-correlation-request-id": [ "8ed3f91d-681e-4458-843a-691fde6337a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014938Z:8ed3f91d-681e-4458-843a-691fde6337a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3E9647F81814400A753786D4CBD9B9C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C663229DD7F64C7CBC15606554DB3CCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -939,7 +1076,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -954,18 +1091,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "877598fc-fdc4-4291-bd32-a7d18541f226" ], + "x-ms-request-id": [ "ebb4394a-d1ab-4cd5-9a3f-86488efa1b7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/111040a0-e691-4111-80c4-fb40f6f9ebb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16a8befa-e3f9-4f64-8a52-4b9432635f04" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "48c05b9f-99e7-4514-98b1-434e6efd8a00" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114531Z:48c05b9f-99e7-4514-98b1-434e6efd8a00" ], + "x-ms-correlation-request-id": [ "4e9f40b5-3995-4bad-b0f1-df69c9830515" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014939Z:4e9f40b5-3995-4bad-b0f1-df69c9830515" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6530CDC01075421AA77198A676FBDF69 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78793274F1AC4E70BBB5CD03DE5AEAFB Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:38Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -983,8 +1120,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "480" ], - "x-ms-client-request-id": [ "61cf6161-1619-4442-90cb-1d5102d6d050" ], + "x-ms-unique-id": [ "576" ], + "x-ms-client-request-id": [ "d0f87cfe-a53e-4528-89de-38bd7ed156d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1000,18 +1137,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6290b720-1ec2-4afa-bf37-2698e3d1c974" ], + "x-ms-request-id": [ "bb05abe1-7452-4d08-80fe-f76050dcd116" ], "X-AspNet-Version": [ "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/d9e9d1af-4620-4dac-8e87-24f55b851594" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b913f33b-3756-4272-a993-48ed2b78bb44" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd7e9484-e805-4eeb-adf6-2646223c4e9a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114532Z:bd7e9484-e805-4eeb-adf6-2646223c4e9a" ], + "x-ms-correlation-request-id": [ "e77e000c-9a63-44f7-a8c6-c965d6ffebb4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014939Z:e77e000c-9a63-44f7-a8c6-c965d6ffebb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 33AC4A141BA24B43854879341CAA0724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48A0B30252F7454285D89D2F44802A01 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -1029,8 +1166,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "481" ], - "x-ms-client-request-id": [ "165a9fc4-0339-4dbf-9db1-5e668d20ffd0" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "16d990da-262e-4e43-b6e8-eb58b30ff834" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1045,36 +1182,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "fa55592a-1582-4873-8c8e-37dd08b1c5e3", "dc1668c3-78a8-444f-b929-da47aad9917d" ], + "x-ms-original-request-ids": [ "c0604a93-241d-4fdd-9e47-9400300f83c6", "d8b7d09c-e636-49d7-b3f8-3ac2414f4f51", "cee76359-1a22-4437-b81a-ce6224780655" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a3bf68fb-26b8-4851-8216-f90a994b81bb" ], - "x-ms-correlation-request-id": [ "a3bf68fb-26b8-4851-8216-f90a994b81bb" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114532Z:a3bf68fb-26b8-4851-8216-f90a994b81bb" ], + "x-ms-request-id": [ "387060a4-be71-4447-b8c3-6160f86e7814" ], + "x-ms-correlation-request-id": [ "387060a4-be71-4447-b8c3-6160f86e7814" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014939Z:387060a4-be71-4447-b8c3-6160f86e7814" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EAD7C84CAB744542BDDDD82EEAD9C5FD Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 376E94CF9C4A43C09534D55E9B6B36AC Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:39Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "79e6518b-54b0-4d4e-8cf2-c222496bd555" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "e79794d2-7b95-46a6-bc9b-e59352f6bfb8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1089,23 +1226,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c83b1e8c-9357-4012-bab3-eb0425eacb53" ], + "x-ms-request-id": [ "2ac86382-85fe-48a1-88ad-ce1fd7b1fb5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/8a774aab-2556-4e9a-9c7d-f10a28e9988e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/61fdf152-d29f-4b8b-91fc-eb1ff119cfc6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "df115854-62ac-400b-91ef-a956c0afa633" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114532Z:df115854-62ac-400b-91ef-a956c0afa633" ], + "x-ms-correlation-request-id": [ "3833623c-1461-419e-addb-5420b2e49f4e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014940Z:3833623c-1461-419e-addb-5420b2e49f4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FFEC9FB5C3A427CAAE63AC8FB2969C5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:32Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28F5BA2BC2474E77BCC87D6D8C57D553 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1113,7 +1250,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1128,18 +1265,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05cf92bb-7c67-4513-beae-f8ebe219b321" ], + "x-ms-request-id": [ "bfcb3e68-edbb-4ef1-bb5b-d6dffc7c0b6f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c2cee2eb-c235-47d8-bbc7-4d4b6d7dbcc0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7abec8c7-ffa3-4445-831b-9c5abef59261" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "104ed5f1-ddd7-4e32-8ce3-198990510f6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114533Z:104ed5f1-ddd7-4e32-8ce3-198990510f6f" ], + "x-ms-correlation-request-id": [ "84707fe4-9bf7-4619-befb-1e262ecd3bd1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014940Z:84707fe4-9bf7-4619-befb-1e262ecd3bd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E822822CA414A50945DE6A3731D78D0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9C421D98AB24099960F12021C197249 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1157,8 +1294,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "0fab4863-9081-409a-942d-901f19b48360" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "89ff0d5b-32a4-4fba-8c3d-915a5fe23756" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1174,18 +1311,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c758e697-9b0e-4d6d-802a-a017a2b35d3f" ], + "x-ms-request-id": [ "d7b712ec-7d72-4ed1-8f9e-6a4a85b621e9" ], "X-AspNet-Version": [ "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/ff8858b1-938c-4230-8655-fbf60b5a2eb1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5e26fdef-1185-49f1-91e4-1841778bc4a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "358d266a-fd09-43ec-bd46-95989458cc89" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114533Z:358d266a-fd09-43ec-bd46-95989458cc89" ], + "x-ms-correlation-request-id": [ "6b9e2ac3-0178-4dc7-a91f-7c3cd7d0d731" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014940Z:6b9e2ac3-0178-4dc7-a91f-7c3cd7d0d731" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 953D874B59434A3DB68B5976534DD391 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1DC428F7215B45A083A90B6B3859B4CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -1203,8 +1340,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "485" ], - "x-ms-client-request-id": [ "6e6ed072-d2cb-4a74-bbc1-4a6f6ceb54c8" ], + "x-ms-unique-id": [ "581" ], + "x-ms-client-request-id": [ "bd8d60dc-bad7-4d03-95b9-b87642a2bf22" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1219,36 +1356,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5eb0a522-1ffd-4014-a840-4698872dec94", "3dc24384-59bb-4e3e-98fb-f36494319d6e" ], + "x-ms-original-request-ids": [ "9baa4937-b059-41f9-a4ff-7206dcff3091", "6f91ed17-f19f-4bf9-8001-5bf63dabc986", "67add413-e509-4ded-a436-d3751e3f4c7c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ed60d1a2-b946-4a0c-ad37-fef4f4a8816d" ], - "x-ms-correlation-request-id": [ "ed60d1a2-b946-4a0c-ad37-fef4f4a8816d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114533Z:ed60d1a2-b946-4a0c-ad37-fef4f4a8816d" ], + "x-ms-request-id": [ "57b1bb63-d564-40b9-b494-ae8ccc3735b5" ], + "x-ms-correlation-request-id": [ "57b1bb63-d564-40b9-b494-ae8ccc3735b5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014941Z:57b1bb63-d564-40b9-b494-ae8ccc3735b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09879C1D38144426A554D8DBBB636051 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0805028685764B7B8814A0EE437ABF96 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "6ca05968-1af0-4baa-8a76-62d9b71fb28e" ], + "x-ms-unique-id": [ "582" ], + "x-ms-client-request-id": [ "bc8237d6-716d-45e4-88b9-ebf8bbef17aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1263,23 +1400,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "57047a1b-6d3d-465e-bcba-5cb765c41e12" ], + "x-ms-request-id": [ "487b3172-f578-423f-858c-374efdafbd4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1c692554-e603-492b-b3ab-ec9d34a3e012" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/42ac4cf5-1338-4079-84d9-633e0a6b6f3a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d1c094d7-e7d6-4838-918c-71f79b239fbb" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114534Z:d1c094d7-e7d6-4838-918c-71f79b239fbb" ], + "x-ms-correlation-request-id": [ "f5f18250-e35b-4305-b34b-aff592544265" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014941Z:f5f18250-e35b-4305-b34b-aff592544265" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFCC058B968D4AEF9C2713BC61B538ED Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E68EC3F9CD5D4A06A33B6AF2C04D6175 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1287,7 +1424,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1302,18 +1439,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "799d395f-5d5c-45e9-a54b-8792e93555fb" ], + "x-ms-request-id": [ "4a43de86-24e9-47f7-a28a-3c0aec9bb2dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c5c548bb-1bcf-43d2-8ce2-ece02f1aadf5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/249a923b-d69c-4b4a-9373-e104a3edf7dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f205d46e-87f6-4309-bf06-4ee749b3675c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114534Z:f205d46e-87f6-4309-bf06-4ee749b3675c" ], + "x-ms-correlation-request-id": [ "0b99dec3-3336-46f8-8ec4-a2640ccd3d80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014941Z:0b99dec3-3336-46f8-8ec4-a2640ccd3d80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FE2A27B65B845BB8AEC171F63B7A004 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9582182AF0E403AA915DCB3ADE54E6B Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:41Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1331,8 +1468,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "488" ], - "x-ms-client-request-id": [ "e6775cbf-dba9-4ea6-ac75-983fc214ee76" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "e7928908-12f8-4be2-a36c-a713b3183b51" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1348,18 +1485,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b8a033c4-7fc5-4bbe-99b3-f53bb291f6ec" ], + "x-ms-request-id": [ "8649e95b-f112-4a43-ad7e-4d4b21a6aed4" ], "X-AspNet-Version": [ "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/01dfdaf4-cdea-4d97-b490-d00b8c2f8a98" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/64605f2b-529e-45fc-81df-35cc5f05c67a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fdb79cab-8d95-4640-875d-d77c93b45677" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114534Z:fdb79cab-8d95-4640-875d-d77c93b45677" ], + "x-ms-correlation-request-id": [ "736c0468-da1e-487f-a992-f0370b580bb8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014942Z:736c0468-da1e-487f-a992-f0370b580bb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3CEDC487750243D8BA296AADFD4A7DA7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8A51B1ED4AF4433913AA0CBCF553299 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -1377,8 +1514,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "9e4a8d5a-1e35-4dbf-ad7e-cf8cb245164f" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "8289cab6-b93f-4a7e-a345-12169aa503d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1393,36 +1530,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f48a7206-13fe-49a3-878b-3751aa9dbb3e", "d13ba3ef-056e-4701-932c-bf3315565d57" ], + "x-ms-original-request-ids": [ "9ad26d7b-9f6d-4d2f-ae4d-72f75190a9a5", "5d8e8008-8ff7-4c8c-bbb1-94262e89464e", "bd2c3f0a-aa58-437f-8f92-f5a8f4606cd5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b1a4259e-16f6-4832-a39c-c5daa8153cd7" ], - "x-ms-correlation-request-id": [ "b1a4259e-16f6-4832-a39c-c5daa8153cd7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114535Z:b1a4259e-16f6-4832-a39c-c5daa8153cd7" ], + "x-ms-request-id": [ "15c1a31c-afe4-481d-93fb-aa3212b0799b" ], + "x-ms-correlation-request-id": [ "15c1a31c-afe4-481d-93fb-aa3212b0799b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014942Z:15c1a31c-afe4-481d-93fb-aa3212b0799b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6828BEEE5484BF8896DE15FE253BC36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 848C0E3F345D47D085DC7D23FE458A36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "490" ], - "x-ms-client-request-id": [ "00019d52-1f94-4ae7-9a99-bbd5135e9713" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "3c30d630-26ca-4aab-8ec7-1c706bdc0b9e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1437,23 +1574,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3d7fc89e-3fef-4cfe-a160-388292db8325" ], + "x-ms-request-id": [ "5a7c1120-4ff1-4db4-89e4-f6548e959e5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f03681b0-9f59-4f5f-b6c9-1c2ed17306c8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ab5f5461-b4b6-4f82-8d15-260bfe75fe84" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7b8e0d13-4e75-4698-9bce-acb4b5e564d7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114535Z:7b8e0d13-4e75-4698-9bce-acb4b5e564d7" ], + "x-ms-correlation-request-id": [ "215533ba-9879-4664-b3e6-93db909a9adc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014942Z:215533ba-9879-4664-b3e6-93db909a9adc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E89E45AA66C74B2FAEFF3C3BF026C39D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 30985CC8BD5144798138203C32789AB6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1461,7 +1598,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1476,18 +1613,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b47b204-c752-4beb-a624-ff6ca262abae" ], + "x-ms-request-id": [ "e3df6e1b-003a-4d59-8e28-028d094eb52a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/375ff426-dcd2-4eb8-ba4a-7cc1d1994a49" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "d69138c3-1636-4419-8ec1-0fa268593f4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114535Z:d69138c3-1636-4419-8ec1-0fa268593f4f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7867124d-e342-49e9-a85f-4e8f56bc72bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "795615ed-ad00-4910-8f58-eb5b90686c8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014943Z:795615ed-ad00-4910-8f58-eb5b90686c8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 084BA13E25A24A5C8920E880C0BDBB54 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E992C0E4F7C467A968B535EA00CF93F Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1505,8 +1642,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "e1900374-2f15-4488-bba1-9e632b9fcd3d" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "9aa008f4-e958-487a-85ef-56a084ae0779" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1522,18 +1659,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2fb55452-cc9e-445e-a7e1-3332f303f0c0" ], + "x-ms-request-id": [ "22d29032-f236-4913-b4f9-2ddacca42596" ], "X-AspNet-Version": [ "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/1d64429e-50d1-4ab7-8982-2b084c210769" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0871ecf5-f30c-4cc1-8f9d-83784ae839aa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "961c7fe5-6dbf-437c-b37d-52c562a74771" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114535Z:961c7fe5-6dbf-437c-b37d-52c562a74771" ], + "x-ms-correlation-request-id": [ "bd379411-c54c-4398-9d98-fa48b10e03ae" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014943Z:bd379411-c54c-4398-9d98-fa48b10e03ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D042FB94CAB4A34BC0610931EDA802C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37D32B5323C84AA8BDA19FAB56145149 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -1551,8 +1688,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "493" ], - "x-ms-client-request-id": [ "7ecef0cb-a9cc-4146-bab8-e34a31d136b7" ], + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "34122b39-f7a0-4beb-b1c7-2da1588db0c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1567,36 +1704,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9186a594-608a-402f-88db-53e22bf139f0", "a9c1b96c-c3b5-45be-a9dc-075c46aef1e2" ], + "x-ms-original-request-ids": [ "1065040f-0548-473d-8133-608c3549f204", "020ce864-0d1d-4d85-9996-ca6ae1a3cc87", "cf12d6b1-dfa2-4988-bec3-e6dd7d720db9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d215b1ee-f6e6-4f35-8417-36baf2d7d9f2" ], - "x-ms-correlation-request-id": [ "d215b1ee-f6e6-4f35-8417-36baf2d7d9f2" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114536Z:d215b1ee-f6e6-4f35-8417-36baf2d7d9f2" ], + "x-ms-request-id": [ "e75be8bd-6a85-4285-8a85-2a659efd339b" ], + "x-ms-correlation-request-id": [ "e75be8bd-6a85-4285-8a85-2a659efd339b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014943Z:e75be8bd-6a85-4285-8a85-2a659efd339b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F98DF0DAF9BC41E78C2E1836492DDDB5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F1A9E796787483980B447EAD9E4F426 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "48a50de0-5c26-4bf0-8598-2566afbb3fec" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "bdc5ea49-fd91-4ac1-b0af-7493d90a286f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1611,23 +1748,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "193d94aa-afe9-4a15-b0f6-dd3edd51cd93" ], + "x-ms-request-id": [ "bd38673a-1d0d-48ae-8f22-42568c8341e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/7d5be738-06c1-4c4f-bb91-f4b2b61888ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0dc45d40-e4f7-4996-af6e-47c66a6e8c2b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "046e76e8-ff61-4b46-bcc9-1b8a47fd723a" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114536Z:046e76e8-ff61-4b46-bcc9-1b8a47fd723a" ], + "x-ms-correlation-request-id": [ "c5abb913-f17f-47a8-ad37-8c4e13b5c3f3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014943Z:c5abb913-f17f-47a8-ad37-8c4e13b5c3f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4507DF56E50644C3BA756E44C30C28E5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 96A3A3EA5D804656BEECBAC7A9851089 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1635,7 +1772,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1650,18 +1787,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a216b54-da3d-493a-a586-244235b86a03" ], + "x-ms-request-id": [ "feb1dac0-8221-451a-a6fe-a565396c76f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7ddbb68-0da2-4d57-b08b-29f02ae1331a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc0969da-3b1b-48b1-830e-bf652a902b1c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "805a207e-56c3-4fff-ac27-4f57b9c07f28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114536Z:805a207e-56c3-4fff-ac27-4f57b9c07f28" ], + "x-ms-correlation-request-id": [ "3c7f4246-231a-432c-8fa8-35f06e1f750c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014944Z:3c7f4246-231a-432c-8fa8-35f06e1f750c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B0D28E5995F4A6583D4ECDCACC2BC88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB33495964B841928AB187FA8B4153AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1679,8 +1816,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "496" ], - "x-ms-client-request-id": [ "f62fef17-564e-4e84-ae69-92d3d6c1525c" ], + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "9b9a7488-c5b6-4d3f-a3f1-50da5054cd2e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1696,18 +1833,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e92c749-1da0-43ff-9c83-c4c08a7673da" ], + "x-ms-request-id": [ "9b7106d4-66e5-4c1b-be34-75c7b5ba22cc" ], "X-AspNet-Version": [ "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/2784ab2d-8e4c-4c31-b6b9-1b476227e3fb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "dc84a940-ed29-4424-a6d4-4f32b7c315be" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114536Z:dc84a940-ed29-4424-a6d4-4f32b7c315be" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8de0299d-c83f-44da-bb6b-76f8a197be8a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0749303d-30b4-4b7d-91dc-4b7f4bcf15b6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014944Z:0749303d-30b4-4b7d-91dc-4b7f4bcf15b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30BD094CB2A2466D9195758784706B4A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74AC357F42D34B6FBD7FF8586D9FFEC5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -1725,8 +1862,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "497" ], - "x-ms-client-request-id": [ "58efbb16-7caa-42cb-bf4a-8a4f93753dbd" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "c4d33b0a-3f68-4555-8239-a65a07e1d800" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1741,36 +1878,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e16d3d95-765c-4218-8ab6-e8d3b2ff98b5", "ff6d126f-bc05-4d62-b0b2-6ec414db8503" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "3d018551-62eb-4446-8b91-4948b66932dc" ], - "x-ms-correlation-request-id": [ "3d018551-62eb-4446-8b91-4948b66932dc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114537Z:3d018551-62eb-4446-8b91-4948b66932dc" ], + "x-ms-original-request-ids": [ "d94f2406-e124-4857-89cb-50d626e03b6f", "7e034e86-c5ec-4034-8b12-cab6e98cd2a7", "45eae587-57f3-43b3-9c33-f3b6cd26d48e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "6ab98680-3410-4cce-8064-bd562fdf0f11" ], + "x-ms-correlation-request-id": [ "6ab98680-3410-4cce-8064-bd562fdf0f11" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014945Z:6ab98680-3410-4cce-8064-bd562fdf0f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87475168031D414E88F74C9A8FC2ABCE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51473D8AD70C4A118B3AA6B9C2880B31 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "498" ], - "x-ms-client-request-id": [ "1ee9a1fc-c261-40cf-9389-42416cd10b22" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "209cea5b-f566-4be9-9404-71a33046021b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1785,31 +1922,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "159b09e9-5c94-4ede-a92d-b4d3d9273e30" ], + "x-ms-request-id": [ "286cfd45-55eb-4458-a566-866d54bedf65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6f15222e-60a9-4c4e-a141-d62ab65d058e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/efec2879-d966-4dbb-8c32-33481c57359c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1261d88f-26ac-4563-acb7-b9c427456112" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114537Z:1261d88f-26ac-4563-acb7-b9c427456112" ], + "x-ms-correlation-request-id": [ "48249cc9-3050-436f-a4be-794fb74de67d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014945Z:48249cc9-3050-436f-a4be-794fb74de67d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B1F46C8548548F0BB2A2525DD7D90FA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8A3F7A2D4644D12AEE71A03E17C4933 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1824,18 +1961,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b8c84ba-9978-4b5f-a5b4-e21b03b185aa" ], + "x-ms-request-id": [ "d8779954-3814-4d43-98fb-d8bf1fdc841f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/88bce49d-7e17-44d8-ab10-d31b3069824a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "a7b1f989-76eb-4ffb-8a3e-445dc03009cd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114537Z:a7b1f989-76eb-4ffb-8a3e-445dc03009cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/670a85b5-5533-41d6-8ac3-8433d13e25db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "93912fb4-5c14-4871-bdf1-92a142e8cbe1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014945Z:93912fb4-5c14-4871-bdf1-92a142e8cbe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE780E8753B84484A856518DE00B6B3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:37Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0985FDAC7A4A424896FCBF3D55657220 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1846,11 +1983,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1865,18 +2002,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57a51805-ec7c-40bc-b072-4a1b46ea655f" ], + "x-ms-request-id": [ "f9e959ec-727e-4f6c-8bf1-0525ddc2efce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a50693d2-98fc-45ba-9b55-57a9a4379ef9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77f52d70-7583-4ddd-940f-ab17b405e005" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114538Z:77f52d70-7583-4ddd-940f-ab17b405e005" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4a842513-0629-4e95-a453-ff53e3750305" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "810e18e5-eaa0-44a6-bb9a-ad3929f03fc0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014946Z:810e18e5-eaa0-44a6-bb9a-ad3929f03fc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 443CB06930374E1D9441E678BA3C4BC2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9E3B701692D474F80F3567DB0135986 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1891,7 +2028,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1906,18 +2043,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eeea1984-f042-4c66-a6f7-622fb351a76a" ], + "x-ms-request-id": [ "9b43c6a8-7c40-46fe-83ce-e97b23ea00ca" ], "X-AspNet-Version": [ "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/f4b9fb31-99c4-4444-a6d4-288c09c2c180" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "58c10271-e11e-4b4d-8ee0-d9db87cdc784" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114538Z:58c10271-e11e-4b4d-8ee0-d9db87cdc784" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/756e3c80-ab97-460f-a8e9-6ed01823771f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dc0974c9-633c-4ccc-9e15-52e4066912b2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014946Z:dc0974c9-633c-4ccc-9e15-52e4066912b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0826CFE03FBA4AE4B255684FA2E5E08A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37778793525A4A9CB0625F50C71443DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1932,7 +2069,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-10bxo65l7g\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-nds0y973f2\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1947,18 +2084,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d570469-7099-4ee0-bbc3-36a90f33f421" ], + "x-ms-request-id": [ "4acc9c03-9904-4271-9ea8-322fccab5d6e" ], "X-AspNet-Version": [ "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/a711bd26-0e9f-43c2-8540-86d3315337b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/515f647d-3bc3-42e8-9c23-9bdd4afc10c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8fff4af0-2dfc-4973-bde1-da8415bd223a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114539Z:8fff4af0-2dfc-4973-bde1-da8415bd223a" ], + "x-ms-correlation-request-id": [ "9b8f0821-a48c-441d-8abd-3f6cdde5be79" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014947Z:9b8f0821-a48c-441d-8abd-3f6cdde5be79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 560EC0A6009949C3A81843DEEE778FD7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0ED72D29815C4891BBEE417379234125 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1976,8 +2113,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "60aac9e1-4484-4340-ae17-eec2578bfc71" ], + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "7af6bfdf-21f9-4ba7-a952-5359426335d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1992,36 +2129,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "319e832e-da8d-410c-8173-e5769c1cfa2d", "ab68ea1d-1878-4c79-a19c-c47ba38a1895" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "84c82fb4-efc0-4980-936f-3e2668d1e0dc" ], - "x-ms-correlation-request-id": [ "84c82fb4-efc0-4980-936f-3e2668d1e0dc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114539Z:84c82fb4-efc0-4980-936f-3e2668d1e0dc" ], + "x-ms-original-request-ids": [ "bb0a3c11-d712-4d39-bfd7-4dba0d1be54b", "67a72d41-4948-4aa0-907f-b2c062bfd31e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "5734b757-e580-4788-bd12-509984ba5d8f" ], + "x-ms-correlation-request-id": [ "5734b757-e580-4788-bd12-509984ba5d8f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014948Z:5734b757-e580-4788-bd12-509984ba5d8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C05482FE1C24774A0EE7432F39A9BF4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79C32818406C491E86226A2C27210ADB Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:47Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "12094" ], + "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "504" ], - "x-ms-client-request-id": [ "79333179-a0ce-4b7a-b88f-e444420ad553" ], + "x-ms-unique-id": [ "600" ], + "x-ms-client-request-id": [ "53f9fa50-cdf6-4ca1-9ac8-263e112d8f77" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2037,36 +2174,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68f47dd1-722b-4b64-895f-245031f657d6" ], + "x-ms-request-id": [ "adaf5f2f-d1b2-4739-9f30-f83e1833582d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb7d39bc-5529-4cb0-8918-bc23242db084" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114539Z:bb7d39bc-5529-4cb0-8918-bc23242db084" ], + "x-ms-correlation-request-id": [ "25d1fd3d-1247-4a6a-a10c-86525a56c5f8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014948Z:25d1fd3d-1247-4a6a-a10c-86525a56c5f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1DE0F9AC95A4F4BB465C13B4C913F10 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDB5252644194D5E8817D4B4601C8D4A Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/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": [ "c2313275-83a3-42ec-8568-a7e8e6711274" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "c205d1d2-f4db-4e69-8472-41a8dd4160a8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2082,36 +2219,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b868052-2204-499a-b105-a1f01d3f55ae" ], + "x-ms-request-id": [ "fd8c7b39-7cfe-4e38-a2b0-c2200dcb4177" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a76db52a-aa86-45c4-a67e-876d99fa0bec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:a76db52a-aa86-45c4-a67e-876d99fa0bec" ], + "x-ms-correlation-request-id": [ "7bd8c03f-5cad-4ea5-b936-addf3036b633" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014948Z:7bd8c03f-5cad-4ea5-b936-addf3036b633" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 243BF757A4F84E98A65D265899107ECE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:39Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D65542F253ED49B18C6366A04DF5ED81 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "506" ], - "x-ms-client-request-id": [ "45aff07a-93af-441a-b7af-6881007e956f" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "36ee2999-f6d8-49cd-9c39-0d9f0dccb192" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2127,36 +2264,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "627818ca-f4d2-4b7d-a1cd-789139265142" ], + "x-ms-request-id": [ "9e1f3fb6-3445-42cb-8e0d-39f88c7063a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0eba1c47-1da0-4df4-9700-01481f590a8c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:0eba1c47-1da0-4df4-9700-01481f590a8c" ], + "x-ms-correlation-request-id": [ "43a2f453-4627-4b13-b27b-2c42b087b6ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014948Z:43a2f453-4627-4b13-b27b-2c42b087b6ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D820B1A26988458E9DB95ED9A3B5F1AE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0E62ACCE7554D8E816E317A2188F945 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "507" ], - "x-ms-client-request-id": [ "347e3740-c9b1-4502-a7e2-ac157e8198d5" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "4e961f5d-db16-4e6a-9649-b06762bd7167" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2172,36 +2309,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02fe1648-c8fd-4d18-bd5f-0354f5e68f65" ], + "x-ms-request-id": [ "f59c3f78-0dff-4144-9486-1a45c799f291" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a00bcdc1-d1c7-48ea-a5fc-8a954e2e97f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:a00bcdc1-d1c7-48ea-a5fc-8a954e2e97f0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f9954c18-fb83-447e-9cb1-9a3eb0a99901" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014948Z:f9954c18-fb83-447e-9cb1-9a3eb0a99901" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DEE185F6FEDC4BDFA9F0C8A2F398BE81 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3223B3C3064C4F6293B765F2DD36BD25 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "508" ], - "x-ms-client-request-id": [ "ecef6490-65e8-4dd9-962a-3bd169413e14" ], + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "6bedf783-8e1c-463a-8c14-926bf3e82eb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2217,36 +2354,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63f5d1da-0fc8-4918-90c3-f0d36843318a" ], + "x-ms-request-id": [ "0f6e10be-e089-47a4-8a96-69da37ba2c81" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "57b28d72-ae8c-4941-b998-95890b079d16" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114540Z:57b28d72-ae8c-4941-b998-95890b079d16" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4083cf64-4377-4308-8b99-04315860cb8f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014949Z:4083cf64-4377-4308-8b99-04315860cb8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E626432759A454CB7602DD0F9D922EE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A15990AA053148AF98002114D9CC3484 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:49Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "509" ], - "x-ms-client-request-id": [ "5fa01b44-7d21-46fa-aaf8-ada08f04ace5" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "9cf5d7cb-bdd4-4af9-a694-a80bd52c4600" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2262,81 +2399,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2bb801b-72b6-436c-b6f7-391e656a3358" ], + "x-ms-request-id": [ "ee054714-fe24-4ed0-895a-f1c172f73356" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af239804-3416-4529-9bd3-71f36f944fe4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114541Z:af239804-3416-4529-9bd3-71f36f944fe4" ], + "x-ms-correlation-request-id": [ "65652381-c9f4-4010-b825-fbeb38bbae80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014950Z:65652381-c9f4-4010-b825-fbeb38bbae80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 412247FEE456429CB5D5AE594F8B824D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6C2C903B8F741AB86036B0128394472 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:49Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1690" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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": [ "510" ], - "x-ms-client-request-id": [ "132e0f1c-68cf-46d4-a37c-95e00d2e174e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b493a6c-8def-41e4-95b6-83bc7d68f6eb" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "38c292df-ef73-4157-9a26-f2aa07ac3b29" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114541Z:38c292df-ef73-4157-9a26-f2aa07ac3b29" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4F918BF58C049A6A87ACDB7DFE78187 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1700" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":7,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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": [ "511" ], - "x-ms-client-request-id": [ "ac9be2d0-6d7b-470b-868a-1663f9ba4765" ], + "x-ms-unique-id": [ "606" ], + "x-ms-client-request-id": [ "76992e95-c529-44cd-a75b-5ac1cedfd462" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2351,36 +2443,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "cea7b3ac-5278-440e-906c-ac9c0c6168b1", "3a41517e-7645-449c-9333-03dd317a6de0" ], + "x-ms-original-request-ids": [ "abaf668d-8104-4d25-a681-56282d95be39", "b7af8f51-3c1e-4de3-a1d3-7c7ac07bacff", "0739aea7-c303-4984-9d13-635fc2c826f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2a17aacb-50d4-47f7-8e88-61e0dd5c077c" ], - "x-ms-correlation-request-id": [ "2a17aacb-50d4-47f7-8e88-61e0dd5c077c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114542Z:2a17aacb-50d4-47f7-8e88-61e0dd5c077c" ], + "x-ms-request-id": [ "830821f6-f3dc-4f30-90e2-c5db8e1499c8" ], + "x-ms-correlation-request-id": [ "830821f6-f3dc-4f30-90e2-c5db8e1499c8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T014950Z:830821f6-f3dc-4f30-90e2-c5db8e1499c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F56806B75B5D4F29BC120D5EA9E0DC1F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19ECBD2F75714D87BA69815E8CC751BA Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01+11": { + "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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "512" ], - "x-ms-client-request-id": [ "b80856ee-76f4-4ea6-95ec-10c11d0e44ea" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "74e1fab1-adf8-43d9-809c-c6f05c6f3c45" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2395,30 +2487,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4fcb0115-ceeb-41fa-916f-1ce2669379e1" ], + "x-ms-request-id": [ "a27d7ae5-30cb-4a76-8da2-caba3ce71e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a829c8df-cc2e-4b41-924b-5fba7f65f9e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4947cb5e-404b-4ca1-8205-a1a0b5dd05b0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "171dd594-2bdc-4312-91de-960989fbc9a9" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T114542Z:171dd594-2bdc-4312-91de-960989fbc9a9" ], + "x-ms-correlation-request-id": [ "3526a544-fc8e-4b2e-84cb-a53d71d01fb2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T014951Z:3526a544-fc8e-4b2e-84cb-a53d71d01fb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9E0A175F8F94ED9B19ED172C4DDCB5C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4BF1AB722AC435BA9FB7EE0D10450A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"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-gpxn1b/providers/Microsoft.Insights/components/Functions-Python-10bxo65l7g?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Insights/components/Functions-Python-nds0y973f2?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-gpxn1b/providers/Microsoft.Insights/components/Functions-Python-10bxo65l7g?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Insights/components/Functions-Python-nds0y973f2?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": { @@ -2438,30 +2530,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c258452a-3643-4626-b9fa-6163d39b611b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80796e49-fe06-4f97-940c-e0d0e44a2276" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "a68f384f-5dcb-4cb0-b653-61f8d0626018" ], - "x-ms-correlation-request-id": [ "a68f384f-5dcb-4cb0-b653-61f8d0626018" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114547Z:a68f384f-5dcb-4cb0-b653-61f8d0626018" ], + "x-ms-request-id": [ "990d2fad-f321-4149-85dc-4d4039460de3" ], + "x-ms-correlation-request-id": [ "990d2fad-f321-4149-85dc-4d4039460de3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T014957Z:990d2fad-f321-4149-85dc-4d4039460de3" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 068678E04D3D41A287B2CE15611351AB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:45:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 721F50598CEE4F059DB6BD703AFBC81F Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:49:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1633" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"72068313-0000-0300-0000-6914736b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-Python-10bxo65l7g\",\r\n \"name\": \"Functions-Python-10bxo65l7g\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-10bxo65l7g\",\r\n \"AppId\": \"7967637b-0d12-45cd-8669-9c7aa63ed33a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5e580f9c-4125-4781-8542-efa816dacafb\",\r\n \"ConnectionString\": \"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\",\r\n \"Name\": \"Functions-Python-10bxo65l7g\",\r\n \"CreationDate\": \"2025-11-12T11:45:43.3663723+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-10bxo65l7g_7967637b-0d12-45cd-8669-9c7aa63ed33a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-10bxo65l7g-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\": \"\\\"09076a0d-0000-0300-0000-69168ac50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Python-nds0y973f2\",\r\n \"name\": \"Functions-Python-nds0y973f2\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-nds0y973f2\",\r\n \"AppId\": \"283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"340c93e1-8d5d-4ae5-a29c-2e1ff98c031b\",\r\n \"ConnectionString\": \"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\r\n \"Name\": \"Functions-Python-nds0y973f2\",\r\n \"CreationDate\": \"2025-11-14T01:49:51.846514+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-nds0y973f2_283f8cdb-2bf3-4fd5-9d19-55f6363e54ed_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-nds0y973f2-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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01+13": { + "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-10bxo65l7g\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"\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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-nds0y973f2\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2475,39 +2567,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9E41FE660\"" ], + "ETag": [ "\"1DC5508FCF842A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef3bf8da-6cbb-421e-bb29-3ae38174abb3" ], + "x-ms-request-id": [ "6fb83877-43f8-4836-989a-22d18eb259c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e04bf1d0-c0d6-4b3a-a334-600e02efa97e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/274f067e-88bb-4217-a9d2-9239e4484714" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "ebe49f49-7e43-45bf-af91-42ae6878cc05" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114610Z:ebe49f49-7e43-45bf-af91-42ae6878cc05" ], + "x-ms-correlation-request-id": [ "06b02778-3394-49aa-8e1d-32ac4716fa80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015020Z:06b02778-3394-49aa-8e1d-32ac4716fa80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92D0660EFFE9473BA1E2C11CBBAC502C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:45:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E4DD20EDF9744C48AC831E6821FE3CA Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8387" ], + "Content-Length": [ "8385" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:45:48.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:49:59.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "515" ], - "x-ms-client-request-id": [ "f8b49076-388d-4493-97eb-8da2b92c0afe" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "18f34034-9ea7-4b47-8cc1-4db4c109ca7f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2521,38 +2613,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9F05B8315\"" ], + "ETag": [ "\"1DC550908BAD1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51a5565a-10e3-4ffb-8797-d97ed6855dc8" ], + "x-ms-request-id": [ "568edde8-409f-4c4b-b14a-8f716a7eb9fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ecd00aa0-9ac7-465b-9925-ff0ce35d39bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114640Z:ecd00aa0-9ac7-465b-9925-ff0ce35d39bd" ], + "x-ms-correlation-request-id": [ "ec0c0f3d-36d4-49f7-ba0f-6ee5143cb31f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015051Z:ec0c0f3d-36d4-49f7-ba0f-6ee5143cb31f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19D7D51CCC8B4182945243EE339A7FE5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5C7DA85738A4E0FA9C9630D92A3B24D Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:50Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8372" ], + "Content-Length": [ "8371" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:46:10.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "516" ], - "x-ms-client-request-id": [ "05126723-3902-4f14-a2b6-37484dd82b9e" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "5465bea5-220b-4393-bdb3-7301bd935e18" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2567,38 +2659,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9F05B8315\"" ], + "ETag": [ "\"1DC550908BAD1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9afd90c-4b18-4fe8-b28d-4adaa6a28169" ], + "x-ms-request-id": [ "f9bf2361-be4f-4177-bb26-ead9144d7f5b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a5a61ba3-9492-49fb-9f3a-daa731d4f49e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114641Z:a5a61ba3-9492-49fb-9f3a-daa731d4f49e" ], + "x-ms-correlation-request-id": [ "c1cd7a19-51cd-48dc-9d95-7966180c6bad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015051Z:c1cd7a19-51cd-48dc-9d95-7966180c6bad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 303FB8CFD05E46979C9AEE83636E37F9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:40Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17BF987F3403410E931BCE09D7AB3B09 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8372" ], + "Content-Length": [ "8371" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:46:10.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "517" ], - "x-ms-client-request-id": [ "e076c25f-df80-48a2-884b-b7ac2acddad1" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "6db51902-4013-4e14-9bd5-03b9f6928ec9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2614,36 +2706,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "73d7ecaf-1c12-4bf4-920b-edfb6ad539b8" ], + "x-ms-request-id": [ "bb820908-d728-4368-b0e1-c212cfe9076c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e122781a-f50a-47b5-a7a4-06f2efd58f60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/196c8049-2844-472c-a9c4-d32334839df4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dfb833c1-2171-421f-af0b-1d2e0ab96fb2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114641Z:dfb833c1-2171-421f-af0b-1d2e0ab96fb2" ], + "x-ms-correlation-request-id": [ "7a878067-62af-4e8e-8ad4-f60e913c4a6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015051Z:7a878067-62af-4e8e-8ad4-f60e913c4a6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0221D07EA82147C082AFF494AEF683D5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE1C5256B80343AC95212F1185691AB7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-10bxo65l7g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "518" ], - "x-ms-client-request-id": [ "942d8386-fdb7-4f93-b3cf-aea53500fc22" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "614b6fd4-b5cb-40bf-b8b3-c836e086a12f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2659,37 +2751,128 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcd707ff-70a0-4ff8-9734-825f52e11c48" ], + "x-ms-request-id": [ "eada4cd9-026c-42f3-ae11-40430f55efc5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e8245422-4838-4dc4-9969-c2a7e7e3d39b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2a5980b-d4c1-4e20-a94d-585e16ef1763" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "86ff6f41-c268-4d37-b8dd-672d49084d7f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:86ff6f41-c268-4d37-b8dd-672d49084d7f" ], + "x-ms-correlation-request-id": [ "8563102a-ecbe-4524-a522-1ff6ff99d9bc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015052Z:8563102a-ecbe-4524-a522-1ff6ff99d9bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F64B55F720B41F7BD0840D6C7ABE588 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:41Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A28C4946AEA4B46B1BB1323F0D7DEFB Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "d0214168-7377-4d0b-9d4a-5d18ac4f2d4f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2c08302a-2d84-4f6e-92b9-978c2176819d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/708ebd4d-abe2-406f-a7a1-14c0599163aa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6f8157e0-7672-41de-a8bd-1352e6545369" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015052Z:6f8157e0-7672-41de-a8bd-1352e6545369" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 69DF9798F3034E3EB18243F7C56DF777 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1209" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", + "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "9b5538c0-dd92-429a-9745-be1e600253fd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550908BAD1C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0dd08125-c034-49c5-9987-64f37d37b07a" ], + "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": [ "ff2f98dd-46c7-49bc-b7dc-70332910b27c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015052Z:ff2f98dd-46c7-49bc-b7dc-70332910b27c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 897CFAE5B2424894925FDAFA7C14216C Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8371" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "519" ], - "x-ms-client-request-id": [ "bd941d8a-4a64-491b-8e99-6aa5b47d1e9d" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "68931ea2-ff55-4a01-997d-92a526701c8b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2705,36 +2888,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23b2f075-37aa-4ce6-8b62-16494b072302" ], + "x-ms-request-id": [ "0a4b4c3c-353a-40e0-91d9-cc5402724b40" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48dd4808-2023-4ed9-8d54-a0a308a35e4d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/62cccddd-54e3-41da-8ad7-c9c8aeacf234" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2073bab8-2236-42e3-895c-385eb540346f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:2073bab8-2236-42e3-895c-385eb540346f" ], + "x-ms-correlation-request-id": [ "0f9442e8-6f56-4db7-ac8f-e8c5d369cbea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:0f9442e8-6f56-4db7-ac8f-e8c5d369cbea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 276976309DD64E70A7DB315727307ADE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78F9DD41D55044468D836A104E67B087 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-10bxo65l7g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", + "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "1109b194-1f3c-43fc-a754-dcf92fa56f6a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "7d22cb63-73d7-40de-add5-d8e63436eee0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7e2edf7-fc1b-4719-b822-c34b022abc36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a88e2255-05b6-44e5-8288-c241cfec352f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:a88e2255-05b6-44e5-8288-c241cfec352f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 364BF5F333E940DBA1F1C0707179E7BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "520" ], - "x-ms-client-request-id": [ "c4fb77f6-b109-4aaf-9113-c6ce023ca21c" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "f06443ab-4b27-4f1d-a316-0c474eab9cc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2749,38 +2978,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9F05B8315\"" ], + "ETag": [ "\"1DC550908BAD1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20ba4009-d6b0-4d94-9555-ed424161d6f1" ], + "x-ms-request-id": [ "077b66e5-2c92-469e-ae4c-8cb488975114" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1da1206c-8965-477a-b447-c76de3d21895" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:1da1206c-8965-477a-b447-c76de3d21895" ], + "x-ms-correlation-request-id": [ "3d01714b-a4c7-4e85-9d81-e6c2fdefc644" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:3d01714b-a4c7-4e85-9d81-e6c2fdefc644" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66D27AB7B7E548E0A19C972D5F454C6F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE7B20E988424BA59C35CEECC35D727E Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8372" ], + "Content-Length": [ "8371" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-10bxo65l7g\",\"state\":\"Running\",\"hostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Python-10bxo65l7g\",\"repositorySiteName\":\"Functions-Python-10bxo65l7g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-10bxo65l7g.azurewebsites.net\",\"functions-python-10bxo65l7g.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-10bxo65l7g.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-10bxo65l7g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:46:10.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-10bxo65l7g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-10bxo65l7g\\\\$Functions-Python-10bxo65l7g\",\"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-gpxn1b\",\"defaultHostName\":\"functions-python-10bxo65l7g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01+20": { + "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "521" ], - "x-ms-client-request-id": [ "80ee17eb-bcd1-41a2-897e-af0c9057eccd" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "ad80b5bd-201a-4ed3-9b11-a35ef9966fbd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2796,36 +3025,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "273b0a67-6e38-4f2e-9e1f-b34e6fa916b8" ], + "x-ms-request-id": [ "801a6f7e-30fc-4d81-b873-246035f05cbc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2d3ac1a-9196-43eb-b91e-756bcb720332" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8709324f-b9f3-4b29-8004-1312313bd28b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9cddbaa2-15d8-455c-a9ea-7140eb3f124f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114642Z:9cddbaa2-15d8-455c-a9ea-7140eb3f124f" ], + "x-ms-correlation-request-id": [ "5483cd83-c6bd-40a9-b48e-231a722f6051" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:5483cd83-c6bd-40a9-b48e-231a722f6051" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4ACEC1B1279545BA83A9EEB939110F3C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6C717536E514BE4AE409BB62836A44E Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:53Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-10bxo65l7g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", "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-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "522" ], - "x-ms-client-request-id": [ "433150fc-b4b0-4666-943b-a48ee36ab83d" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "23079d1d-52cb-4a77-af43-0dfbd906b354" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2841,37 +3070,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88aac420-cb31-4163-9010-940f0a327576" ], + "x-ms-request-id": [ "53214f01-575c-4451-b20d-6367eb48cc85" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c666825-dc76-4d6f-9b61-58c030771fbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f5444209-126f-47a6-be89-53be76c4abc7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015054Z:f5444209-126f-47a6-be89-53be76c4abc7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 719FBE879D9D4AA9A1A4EED2C3C54026 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "ae34e350-1987-4826-a989-a9a1302d30ac" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "38498653-c52a-489d-b279-00fe77bb3424" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21c60e41-d253-4d89-8d28-ec79b8a3c43d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0a6d74d9-32bd-40bd-ab60-9d4600a4b8fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114643Z:0a6d74d9-32bd-40bd-ab60-9d4600a4b8fa" ], + "x-ms-correlation-request-id": [ "dbd5a185-b9e5-4c7a-b1d1-5707b2f1aea1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015054Z:dbd5a185-b9e5-4c7a-b1d1-5707b2f1aea1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73184EBE67F046B4A1389F8DB97EF208 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0AC0D068DCA45AE8F981F691F6539E0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:50:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4182" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g/config/web\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { + "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Python-10bxo65l7g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "523" ], - "x-ms-client-request-id": [ "55f84b8d-476d-4d15-be28-fbe4b303c210" ], + "x-ms-unique-id": [ "622" ], + "x-ms-client-request-id": [ "0c8fe4b3-8e41-4935-8566-9e61a2ad296b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2886,20 +3160,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C9F05B8315\"" ], + "ETag": [ "\"1DC550908BAD1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdbd4db6-418a-4a31-9239-bd8b4c23a36f" ], + "x-ms-request-id": [ "1bb5c59c-68b5-416a-ab61-03a2ca122a80" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/72b6ca9f-33b0-4465-ba0e-29f99d8aa3c3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ecdda596-b3c5-4492-9293-e4986aee2885" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "49d0a846-50ad-4018-b01e-233ad8dc9595" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114653Z:49d0a846-50ad-4018-b01e-233ad8dc9595" ], + "x-ms-correlation-request-id": [ "ba1d2205-4e48-492d-a367-9f5a818266b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015102Z:ba1d2205-4e48-492d-a367-9f5a818266b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D2A228B7F5548F8B1C5ACCDCE877644 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:43Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10365CA72D52433B899B7EF68DC82B38 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2913,7 +3187,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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2928,18 +3202,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12ebab17-44d6-49a3-8406-e9ababef127f" ], + "x-ms-request-id": [ "af01f2c4-ae87-4738-9cf6-76d09ef4ce43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/84d2424c-cb9d-41e5-88f6-93fd47204f77" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b9f447d-ec4d-47dd-b357-fbb148e49255" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "649a5b6d-3cdd-4d3d-a31f-4eca41bd90d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114654Z:649a5b6d-3cdd-4d3d-a31f-4eca41bd90d1" ], + "x-ms-correlation-request-id": [ "2242bccc-f7ab-4983-8ec5-8aa4e8f98880" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015102Z:2242bccc-f7ab-4983-8ec5-8aa4e8f98880" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC9711FAF1784FACA204424A1BDD60F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE5BF94A17B3498EA412CAEE72CE579D Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2957,8 +3231,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "525" ], - "x-ms-client-request-id": [ "0af71197-548f-44a0-8a54-719c26f41bcb" ], + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "cf191944-d362-4e12-90b7-a60d272b0b23" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2974,18 +3248,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ef18e31-aee0-4c25-b629-47fc660b75aa" ], + "x-ms-request-id": [ "7ccb6efd-63e5-4402-89e0-8aa66e5ce371" ], "X-AspNet-Version": [ "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/86309022-2c89-4186-ac32-1453648db8f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e9f9f313-9edb-4bc5-aa5b-742381d82517" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68b4a7ef-61e1-4715-8bba-d20945fda52d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114654Z:68b4a7ef-61e1-4715-8bba-d20945fda52d" ], + "x-ms-correlation-request-id": [ "69da40a5-dbfb-4745-ae91-58df11651c83" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015103Z:69da40a5-dbfb-4745-ae91-58df11651c83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C396E409B0B4748AAB3B38C0C9D864A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A7EA4EBC695473D8F206E235519C5E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:02Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36852" ], @@ -3003,8 +3277,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "526" ], - "x-ms-client-request-id": [ "a1a735a4-8fd8-4ec8-9b24-3ce6b8995f04" ], + "x-ms-unique-id": [ "625" ], + "x-ms-client-request-id": [ "b0b65752-cee4-4bd0-8ba3-33077eac258f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3019,36 +3293,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a12b1cdb-cbb6-48e3-8660-11c4ec47ed69", "68afbe5d-bd92-4a19-a835-fc5e669d3d51" ], + "x-ms-original-request-ids": [ "2e92c990-b0f0-4e05-bc07-34ccf36633b5", "667acbfb-3c17-4796-859e-7e0e904476da", "04d233c7-686c-44e7-9925-c369fa61a3dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c839fee7-4460-4aab-b0a5-ccde9efa5c87" ], - "x-ms-correlation-request-id": [ "c839fee7-4460-4aab-b0a5-ccde9efa5c87" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114655Z:c839fee7-4460-4aab-b0a5-ccde9efa5c87" ], + "x-ms-request-id": [ "47551027-5d6d-498a-b236-4630377d4950" ], + "x-ms-correlation-request-id": [ "47551027-5d6d-498a-b236-4630377d4950" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015103Z:47551027-5d6d-498a-b236-4630377d4950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FAE6F0F81C4B4C75B6A3882D95FAA1AB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:54Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CDABAEAFB94B485DA533BE4F65555A3B Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "527" ], - "x-ms-client-request-id": [ "348956e9-ed48-4189-97b6-bec6e7b733ad" ], + "x-ms-unique-id": [ "626" ], + "x-ms-client-request-id": [ "56b34b65-cd89-4cfe-a73b-5b63a527a377" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3063,30 +3337,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "33e84ac8-b8bd-4118-a5fa-e143ba8e6fe2" ], + "x-ms-request-id": [ "a4d7b3a8-11e7-4f10-bce2-0cfab03c1e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/22b02ed6-c7f8-479e-bada-225d72ddb2dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2c3636b9-f144-465a-8372-07d2a3cddb75" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ab7635e5-3353-46c1-b68d-634748f4de25" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T114655Z:ab7635e5-3353-46c1-b68d-634748f4de25" ], + "x-ms-correlation-request-id": [ "d6c4dd57-b76b-4c30-b674-cc89291c6f56" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015103Z:d6c4dd57-b76b-4c30-b674-cc89291c6f56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08AFB96A751F482B95D1BD9148B6237B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:46:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14D61847F6A245089B8DCC91A3A2B90A Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-o1blrw/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?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-si2zeg/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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-o1blrw/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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": { @@ -3106,30 +3380,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67443c39-8137-4c27-953b-ce986f61b5cf" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "446cc0a1-7a05-4811-934f-81216bd8ab32" ], - "x-ms-correlation-request-id": [ "446cc0a1-7a05-4811-934f-81216bd8ab32" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114702Z:446cc0a1-7a05-4811-934f-81216bd8ab32" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/288a85b7-25b9-4e16-b897-8d4577f3438e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "8470cf66-85e5-4729-bca8-d9d64f2a24b3" ], + "x-ms-correlation-request-id": [ "8470cf66-85e5-4729-bca8-d9d64f2a24b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015107Z:8470cf66-85e5-4729-bca8-d9d64f2a24b3" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6700032E7935476580CB32D2CA357AF0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:46:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:47:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 96BFDC5F683D4B90B40AC1F9C9BDDF1F Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"72069527-0000-0300-0000-691473b60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\r\n \"name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"AppId\": \"dce78295-bb82-4bc2-907e-e7da2d157471\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be\",\r\n \"ConnectionString\": \"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\r\n \"Name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"CreationDate\": \"2025-11-12T11:46:55.9737326+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-u074f23mpl_dce78295-bb82-4bc2-907e-e7da2d157471_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-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\": \"\\\"0907c61f-0000-0300-0000-69168b0b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"AppId\": \"744366ec-3e02-4658-a275-248f2af753fc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f24655db-a8fa-483b-8beb-f2513e70e623\",\r\n \"ConnectionString\": \"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\r\n \"Name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"CreationDate\": \"2025-11-14T01:51:04.2627991+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-1hufk4w38b_744366ec-3e02-4658-a275-248f2af753fc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\"\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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\"\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": { }, @@ -3143,39 +3417,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA10CF6A00\"" ], + "ETag": [ "\"1DC5509260F292B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3af1640b-997d-4d34-b54f-399e08d8af8d" ], + "x-ms-request-id": [ "a002714d-0e88-4cfc-85da-69cf0e71c3d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9beac49e-23dc-400a-95cb-b4363a10f236" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e044969-c16d-4f73-b7c0-3102c7f21e3b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a0f3f419-1771-47fb-ba6c-b1de89b66b60" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114744Z:a0f3f419-1771-47fb-ba6c-b1de89b66b60" ], + "x-ms-correlation-request-id": [ "4fff4107-f8b8-4b25-bf98-cfc5dca9029b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015150Z:4fff4107-f8b8-4b25-bf98-cfc5dca9029b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82EDCB41CD6E495AA613B8E1C519711B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:47:02Z" ], - "Date": [ "Wed, 12 Nov 2025 11:47:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76CC882D5B6F48B298DCFFCC8C2FAF51 Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:51:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8952" ], + "Content-Length": [ "8941" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:03.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:09.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "530" ], - "x-ms-client-request-id": [ "1a51b135-f133-40a9-991c-1e573d1aed17" ], + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "f5a689a8-9392-4002-805e-81eacda95382" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3189,38 +3463,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA28569115\"" ], + "ETag": [ "\"1DC55093E22B1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44332e64-5573-48b4-83a1-61fb2d3cb348" ], + "x-ms-request-id": [ "b4d60151-98ca-43fd-8df5-959284d9b925" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1c5d3f9-f944-46ce-92c7-ccbc4217b599" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114814Z:c1c5d3f9-f944-46ce-92c7-ccbc4217b599" ], + "x-ms-correlation-request-id": [ "dfee51d1-2c9b-4770-8364-59b95b37263a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015220Z:dfee51d1-2c9b-4770-8364-59b95b37263a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 429A4772286F4D619DF76B5B6984A24A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25A72F14AB324748B7695BCB89D2AAEA Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8929" ], + "Content-Length": [ "8918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:43.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "531" ], - "x-ms-client-request-id": [ "13a05b02-7e2f-4c77-a0d8-07e373a2d191" ], + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "05ad91f1-1f75-4297-b6ff-aa178bf93940" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3235,38 +3509,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA28569115\"" ], + "ETag": [ "\"1DC55093E22B1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bea08e2-bcfb-4386-b063-6602cd1c227d" ], + "x-ms-request-id": [ "ac3378e7-7ee1-4d4f-9038-a70834b2effb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d76c98a9-7215-4388-a726-f64e243a9868" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114814Z:d76c98a9-7215-4388-a726-f64e243a9868" ], + "x-ms-correlation-request-id": [ "88564335-836d-4d41-99b8-f05372418410" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:88564335-836d-4d41-99b8-f05372418410" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D4EBBD83AC84131B1C4C54A503CA775 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:14Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 481DC298650349488F5D0158989EE6B4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:20Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8929" ], + "Content-Length": [ "8918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:43.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "532" ], - "x-ms-client-request-id": [ "a31db156-148b-48ec-877d-98d37c56cc5a" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "0363ef6d-d2b5-4668-8d88-217af9eeb776" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3282,36 +3556,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aaa8637a-28c9-4099-a74f-74d30b32e1a6" ], + "x-ms-request-id": [ "3a63d32b-e3b6-48c2-b7cd-87fc1d15cd60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3e64806a-222d-4536-9dc5-e58bd1f3f423" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc51b96a-e9af-411b-893e-fee728253135" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a7e04f71-5227-483c-9478-390a8901667d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114815Z:a7e04f71-5227-483c-9478-390a8901667d" ], + "x-ms-correlation-request-id": [ "7ab7fb98-fb8e-4ba0-b22f-ca8607a11544" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:7ab7fb98-fb8e-4ba0-b22f-ca8607a11544" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8DDF032251C4909A58EFB29F9612E9E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 956455185AED468FA93E15F932699194 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "10e5a811-bf17-4adc-98df-557ccf55d24a" ], + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "f86c8b59-ceb1-46a3-bfe5-cc37330bd78b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3327,37 +3601,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7d070c4-c77e-4a6c-93fb-8bbcdc4b2943" ], + "x-ms-request-id": [ "d53becb5-4600-4926-ae61-82776c1c64ed" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/203121e5-84ad-4a34-bbe7-3b576c12d40e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "12d567f4-0884-4d9e-bd37-c2e36d6afeef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114815Z:12d567f4-0884-4d9e-bd37-c2e36d6afeef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cdc79686-e4a6-4689-812c-1a9a077c3386" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a4a7dd1b-e5b4-4b3c-9922-d7a4ae398593" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:a4a7dd1b-e5b4-4b3c-9922-d7a4ae398593" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92D0072D5BA0457C8F30DC3F2702A790 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D380CA1386934FF3AA64A958F9DD4D18 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "534" ], - "x-ms-client-request-id": [ "bc7d938a-5350-48a2-ba61-0e7d3108c1f2" ], + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "20ab9883-8d10-4c85-a9f1-3716f7261e14" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3373,36 +3647,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1ad7efdc-96f3-4baf-a7cc-ace64440ab59" ], + "x-ms-request-id": [ "984917b0-11c9-4f08-9eb3-0504fefb0074" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b03288ba-5020-4ea4-bd23-6b365da6d60d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/106094d0-bd5e-4284-8774-58925e2c40f0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8cf802b5-e218-4118-b937-3a69dece7248" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114815Z:8cf802b5-e218-4118-b937-3a69dece7248" ], + "x-ms-correlation-request-id": [ "c4958568-d23b-4904-80e7-a8f55b7b3fdb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:c4958568-d23b-4904-80e7-a8f55b7b3fdb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E74ED2A513204DBEAFFE667695FCE00F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13D21DE0980D4F3884B9E69540E2664D Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "535" ], - "x-ms-client-request-id": [ "9e3b9fc8-8962-4080-981a-619b65bab378" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "c1eccda3-4641-4437-89ea-5eb5c9bf315a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3417,38 +3691,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA28569115\"" ], + "ETag": [ "\"1DC55093E22B1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03286d57-0ffd-4323-99ae-ed44bc6e197a" ], + "x-ms-request-id": [ "9e6e2245-c490-4886-a0dd-b36069c5eb1d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b49d90bd-7783-414c-b2fe-3960500a95b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114816Z:b49d90bd-7783-414c-b2fe-3960500a95b6" ], + "x-ms-correlation-request-id": [ "c2176ccf-7a85-4e7c-bd46-04d945bbf9b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015222Z:c2176ccf-7a85-4e7c-bd46-04d945bbf9b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A75E3184A4E546958D06A743E84559C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:15Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C20040258DFF4A6DA3C1C87870CC4E44 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8929" ], + "Content-Length": [ "8918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:47:43.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "536" ], - "x-ms-client-request-id": [ "9f725f6a-ee51-4db1-9ef0-a37e5573543d" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "fbf8cb5a-c9b1-474a-b958-d5e18d07cad6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3464,36 +3738,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "04526631-7f57-4f76-9d55-5b5b5cba3d13" ], + "x-ms-request-id": [ "3c47b24e-388e-4ea8-9002-c50f53778a98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff60dc83-cd54-4865-9345-110d6e7a996d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2888ed65-00cb-433f-84fa-557031ffd436" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "809ab253-ebaa-41a4-9800-351a1c26df7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114816Z:809ab253-ebaa-41a4-9800-351a1c26df7c" ], + "x-ms-correlation-request-id": [ "f1a13fbf-86a7-42e1-9e84-6fdb0d2c0539" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015222Z:f1a13fbf-86a7-42e1-9e84-6fdb0d2c0539" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D987C396009B48F4992F166E91F1439C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 59812FA70AA24D30953760E1BD8B5206 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "537" ], - "x-ms-client-request-id": [ "c35555ff-dfc1-46c7-b3fe-e54a5b84408c" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "66d97b4f-4500-4876-85ca-cdd78ac9b23a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3509,39 +3783,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41ffd6bc-785e-4aa9-aaa7-85609b7c2366" ], + "x-ms-request-id": [ "efabda4a-7191-42b6-aa89-e2cf238e94a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8442bbb3-d373-477d-adca-0b8d848a73ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0feb1c76-ce8c-4ee5-831b-035a76e1d183" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6e4a7c0c-bc9b-437f-b75c-0155e77946ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114816Z:6e4a7c0c-bc9b-437f-b75c-0155e77946ea" ], + "x-ms-correlation-request-id": [ "fefa542b-bfd8-4ac2-9be8-c2ae93d69085" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015222Z:fefa542b-bfd8-4ac2-9be8-c2ae93d69085" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11145B952C2742CCA59CCEA80A072387 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A32DDB5BCEF04F6FB3AF50355920DBFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"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-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+15": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "538" ], - "x-ms-client-request-id": [ "833a5ba8-354d-4e73-ab3b-bbb604c094c0" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "fbf09b1d-0a6f-4d42-9370-00211f26684e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -3554,40 +3828,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA28569115\"" ], + "ETag": [ "\"1DC55093E22B1C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5af51717-9bb2-4c67-9305-2e8b234591e3" ], + "x-ms-request-id": [ "c0b543fa-711e-4422-ad95-35bfdbffef6e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f69b55a8-4051-48c3-aa4f-d28b42a7a7eb" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "be1d520a-03de-4a7d-bed1-92047a41239b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114826Z:be1d520a-03de-4a7d-bed1-92047a41239b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3bae5a95-c564-4021-961c-8eb04e4474cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:3bae5a95-c564-4021-961c-8eb04e4474cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4BEAAFDD75342C98CF423D8C2FE2A91 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91AC17B620604ECFBC97B00424DC75FC Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:22Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:22 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8918" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+Create 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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+16": { "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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "b84b9774-b606-4206-b2e4-372d857f10db" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -3596,39 +3875,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7559ac18-2c58-4f75-b4bc-4140c104631a" ], + "x-ms-request-id": [ "f58da032-bcc2-46ee-a749-8d85a351fc17" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a707f0e-9548-4035-995e-88db826b6c18" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e3959e4-29cf-4364-a3ae-28f7c0517ad0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114827Z:9e3959e4-29cf-4364-a3ae-28f7c0517ad0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5cab0b0-cfee-4cbf-95f5-ce04ecd63ef0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1dd5d56b-50ae-4c1f-a19a-65cd5636625e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:1dd5d56b-50ae-4c1f-a19a-65cd5636625e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59D5E07F487D431687FBDE847AC86278 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35729D0757D14BC5891722B7FCD2C0A6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "540" ], - "x-ms-client-request-id": [ "83a8230c-9c83-48a0-b15e-d073b2610c0e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "75d3f2be-a651-4013-9032-8c40ae156416" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -3641,36 +3919,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b0158564-7d33-41df-8e8c-5c49e29b17fe", "16f1978f-763a-4890-8fa1-d6288f1b2fd5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4a87a5a1-1d1d-4741-8c85-7042017cd374" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8223fc4a-31d2-4249-8030-0328f0e199bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c6211331-642f-4ee2-ad51-b3fc2a930a22" ], - "x-ms-correlation-request-id": [ "c6211331-642f-4ee2-ad51-b3fc2a930a22" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114827Z:c6211331-642f-4ee2-ad51-b3fc2a930a22" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-correlation-request-id": [ "55bfc34c-9882-4fe1-a646-0d691b3d2183" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:55bfc34c-9882-4fe1-a646-0d691b3d2183" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CD83F6D879742F1B207B8FCDD751034 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5A274D92F0A4B60AD347E1B8F66E8B7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "12094" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "4254" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"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 a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "63a2e0d9-ca94-4dff-9093-b2d995457e39" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "8530cdf1-19ed-4111-9708-d320f5ab1845" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3686,38 +3966,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "961da54c-d576-43bf-96c6-9b43c97c09cb" ], + "x-ms-request-id": [ "166bb97b-a8be-4d15-a32d-4934b9fb2a1d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "31130ac3-0936-4055-9838-1cb238cba537" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114827Z:31130ac3-0936-4055-9838-1cb238cba537" ], + "x-ms-correlation-request-id": [ "f67cbabc-ff32-405d-9cb4-5f486f613356" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:f67cbabc-ff32-405d-9cb4-5f486f613356" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F01F1DCA2DB4F528C3D8DA7992339B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8CA3D4D798E04A20A3ACDA302D4F4516 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "542" ], - "x-ms-client-request-id": [ "feca2b5e-37aa-4cc6-b7ac-91d68e413a62" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "60325658-5ec4-43a4-a557-1c3f471f6865" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -3725,42 +4005,128 @@ "ContentHeaders": { } }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC55093E22B1C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cd8aa2f4-d832-4b7f-9292-bc9a5851e4df" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a1f99ca-57ce-4f81-b891-74bcb1a68578" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "88e947ce-f2c8-4fc8-be08-c28a0066f64d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015232Z:88e947ce-f2c8-4fc8-be08-c28a0066f64d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1060BF889A48419D87DE4F5862CB2ABD Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:24Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:31 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "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/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-1hufk4w38b\",\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": [ "9cf4e4dc-320e-4683-8f8f-633b7b8a5c22" ], + "x-ms-request-id": [ "3061911a-b7b9-4360-bbdf-d408ffa060c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/462d67fe-1fa7-4227-a630-46d340ca9be2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08e8fcc0-17c6-4323-a4bf-d69680153a32" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:08e8fcc0-17c6-4323-a4bf-d69680153a32" ], + "x-ms-correlation-request-id": [ "c983a154-1b5f-4779-b43c-f7175bec4d3f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015232Z:c983a154-1b5f-4779-b43c-f7175bec4d3f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FF5E3B5EB4246199CCDE6C8F229D7C5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8661423CF9F42CAAAEBDB74E0E4CDCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.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": [ "643" ], + "x-ms-client-request-id": [ "ba7bd8e4-6bac-40e5-8ca8-387bab66916b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "cb338292-d182-4b10-9a2e-04dd5c81b9f6", "9ab113af-d986-48ac-be8a-65bb38146905" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3a47d3c0-d9e1-4e26-b918-81462d389a58" ], + "x-ms-correlation-request-id": [ "3a47d3c0-d9e1-4e26-b918-81462d389a58" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015233Z:3a47d3c0-d9e1-4e26-b918-81462d389a58" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BF1EC9B3C7F247A58A4B1C7339E1DF47 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10323" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-Consumption-le3f9v/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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "543" ], - "x-ms-client-request-id": [ "deeae7ad-d41b-40b3-82c0-d20d4fcb0181" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "dfabc7ea-fa12-41fe-8473-a7ff9ff41c48" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3776,36 +4142,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bb27527-b038-4a00-a403-492150e27875" ], + "x-ms-request-id": [ "e9115f90-f9ab-4bae-89f9-6d4aeaf797e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aefdc4ee-2104-44e3-8e09-2b8ceae142d9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:aefdc4ee-2104-44e3-8e09-2b8ceae142d9" ], + "x-ms-correlation-request-id": [ "f712ec01-5420-4087-8f21-c923ea79f38c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015233Z:f712ec01-5420-4087-8f21-c923ea79f38c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFE1E6B440F94BBC8B62C01AD9B81104 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C374DC1B5D642F3A7B332768AD648CE Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-Consumption-si2zeg/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-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "544" ], - "x-ms-client-request-id": [ "46d3b9dc-8a16-4f0f-92db-9e09c33a9f5e" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "c4ad3888-7094-4628-ac7b-a3eb572ceff0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3821,36 +4187,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ccb36a6-e0a0-4285-af5a-b4b78d0f9fde" ], + "x-ms-request-id": [ "9a4d5e08-5c8b-443c-9829-2134a9489e94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c10c26a5-97f7-41df-a36f-81ea35847f44" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:c10c26a5-97f7-41df-a36f-81ea35847f44" ], + "x-ms-correlation-request-id": [ "7954fb74-3b70-4efe-bca0-5018039ab16d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015233Z:7954fb74-3b70-4efe-bca0-5018039ab16d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72C667F667734ECAB729E61C7A1BB049 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83D2C05733744A9FACCFD147C668A36C Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:33Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "545" ], - "x-ms-client-request-id": [ "8f2ff706-98e4-4994-94b5-844cd9625277" ], + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "2b942f9e-cd93-42a6-b395-3551bc06da12" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3866,36 +4232,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0869f77f-8636-4496-a616-9c812ae5c6ea" ], + "x-ms-request-id": [ "888ec1e2-a53f-4da7-9e4a-b69165979e6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7ca2f761-635b-4f7e-9939-39f6aef57543" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114828Z:7ca2f761-635b-4f7e-9939-39f6aef57543" ], + "x-ms-correlation-request-id": [ "facadcff-cae4-42b8-a760-4ade9862fd9e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015234Z:facadcff-cae4-42b8-a760-4ade9862fd9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CCE6E5EAB72466299A2D4472EF4B404 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 704EAD2E367143098C74AA2DB8B6208D Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "546" ], - "x-ms-client-request-id": [ "90dd9442-8521-4a14-9744-1501b606d4cf" ], + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "b7716581-d07b-4049-95fa-4a97f543b413" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3911,36 +4277,81 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ff7eaa2-8da1-4a0c-a57a-050964038b8f" ], + "x-ms-request-id": [ "aa4b88c8-e0b5-44dc-b8cd-c26931951ba9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f3af7efc-89bb-4f19-b5ab-e61d0a1c9bfc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114829Z:f3af7efc-89bb-4f19-b5ab-e61d0a1c9bfc" ], + "x-ms-correlation-request-id": [ "e33cdf6f-3395-410d-aa4d-875308c6e201" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015234Z:e33cdf6f-3395-410d-aa4d-875308c6e201" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7F7BB0B5A8A6428786A949F08267AE58 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1814" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "648" ], + "x-ms-client-request-id": [ "633e1b2f-5f72-4981-95fe-1d969fc92874" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2399ba7b-2d83-4eb2-933c-e169b9b9947a" ], + "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": [ "f009e153-31bb-4390-b2d0-1e34ef15ee22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015234Z:f009e153-31bb-4390-b2d0-1e34ef15ee22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01C4765C983C4099A9D565AF6E05581C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F211C4FE4AB4A95A3E0FB983F7BB127 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "547" ], - "x-ms-client-request-id": [ "144bdbf2-a15f-4d20-a7de-6dcf4555a958" ], + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "b6528614-65fc-4502-94cc-db19fb288dca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3956,36 +4367,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4fb4eca-3387-4f54-9667-1934ce673b37" ], + "x-ms-request-id": [ "a85f09b6-31e4-4d85-b916-9c518d725cf7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "02a08c45-c9a4-4851-a237-3b551fb560b1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114830Z:02a08c45-c9a4-4851-a237-3b551fb560b1" ], + "x-ms-correlation-request-id": [ "93dbfba0-ed82-48dc-976b-a8a095c1deb4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015235Z:93dbfba0-ed82-48dc-976b-a8a095c1deb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C4F58E871674D83BE353BBC5D610D36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:30Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F82D541057248DCA13F782B71456CF5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1700" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { "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": [ "548" ], - "x-ms-client-request-id": [ "3280efee-7807-4f1f-b470-463ca65f318b" ], + "x-ms-unique-id": [ "650" ], + "x-ms-client-request-id": [ "ef30cc08-f890-421b-a129-f71f9e0c7d28" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4000,36 +4411,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b526ecc6-58e8-45fa-83af-b2365268fe8d", "75b740f3-245e-421a-9563-d9a3cafe463a" ], + "x-ms-original-request-ids": [ "43f6a423-b6a6-414e-b37b-2f9285626be1", "b356fe58-4a17-4eaa-b4fe-b58970bd187e", "ef1104c0-cdd3-4736-b0bc-9c6d5504deaa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3f21d356-a41f-40c0-853b-991ade84d589" ], - "x-ms-correlation-request-id": [ "3f21d356-a41f-40c0-853b-991ade84d589" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T114831Z:3f21d356-a41f-40c0-853b-991ade84d589" ], + "x-ms-request-id": [ "09997ceb-0c59-418d-ba88-46ff1e87d8a2" ], + "x-ms-correlation-request-id": [ "09997ceb-0c59-418d-ba88-46ff1e87d8a2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T015236Z:09997ceb-0c59-418d-ba88-46ff1e87d8a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 980F53F8B9CE4CE2A044F3A6AAB36C66 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:30Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5397741854C4FF69E449F11E227FEC7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+11": { + "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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "a6dee35a-e925-49f9-8dc2-3b35d5e573cd" ], + "x-ms-unique-id": [ "651" ], + "x-ms-client-request-id": [ "0365b611-93cd-412a-afe2-d60afab39948" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4044,30 +4455,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6bb6b130-c9e7-465e-940e-122a11f64491" ], + "x-ms-request-id": [ "2273dbc8-a63f-406d-9a9d-e9eae8fa9388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ca3d8d72-b17c-44e4-bcb0-7ec28e298a8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9eb5a26-e0fa-4692-84c9-e81c3768d257" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "930bbb86-0439-47c3-8a6d-3839f7d1f2a4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T114831Z:930bbb86-0439-47c3-8a6d-3839f7d1f2a4" ], + "x-ms-correlation-request-id": [ "dc0bf661-5a27-4a12-8ce4-45ebd115ea57" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015236Z:dc0bf661-5a27-4a12-8ce4-45ebd115ea57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 746C1AB886FD4A21B0CE3E9B84A66C27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1132F5E83F4C464AA969EDF2A72AA3AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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": { @@ -4087,30 +4498,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25930ab5-44e7-4ba4-8153-b616e78df48b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d71c5e30-320e-4e12-9de8-55abbb9f27b1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "6144dc18-22f6-44c2-90e1-f8276e885d6c" ], - "x-ms-correlation-request-id": [ "6144dc18-22f6-44c2-90e1-f8276e885d6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114835Z:6144dc18-22f6-44c2-90e1-f8276e885d6c" ], + "x-ms-request-id": [ "3c523810-6ec0-4320-8e50-23949a6b5335" ], + "x-ms-correlation-request-id": [ "3c523810-6ec0-4320-8e50-23949a6b5335" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015242Z:3c523810-6ec0-4320-8e50-23949a6b5335" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C5946236A194C53A26739D54CCB0D9F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:31Z" ], - "Date": [ "Wed, 12 Nov 2025 11:48:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 578A6C86A8DB4C89A9D2BB9B05A99FB2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:52:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7206bd40-0000-0300-0000-691474130000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\r\n \"name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"AppId\": \"10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"78cb4fe9-b95f-4c81-a7da-462e1c332bc2\",\r\n \"ConnectionString\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"CreationDate\": \"2025-11-12T11:48:32.0439985+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-u074f23mpl_10da85e8-cdbb-43f7-8ba1-7772e0b939aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-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\": \"\\\"0907dd3a-0000-0300-0000-69168b6a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"AppId\": \"f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0f0b38e-158d-4cae-9767-5abe5d3b54f8\",\r\n \"ConnectionString\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"CreationDate\": \"2025-11-14T01:52:36.9752274+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-1hufk4w38b_f5dda4ed-baee-401a-9b17-14d8809b3c0b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+13": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"\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-lf9t8w/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"\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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4124,39 +4535,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA48D421F5\"" ], + "ETag": [ "\"1DC55095EC6EA75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb27df16-ceea-4022-b02c-29a303e59a76" ], + "x-ms-request-id": [ "7b941f09-648d-4646-9cd4-8afd3d3056c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9b5c732-7d69-43be-8336-34e127aeb273" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8eb624a-2884-4e28-80f4-c8af75a77625" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "388fc471-43b1-4d93-8c85-4d93825d547b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114918Z:388fc471-43b1-4d93-8c85-4d93825d547b" ], + "x-ms-correlation-request-id": [ "38ba433a-fe53-4209-92a2-04fdd9be6c1f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015324Z:38ba433a-fe53-4209-92a2-04fdd9be6c1f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD349DDEB2454E77BB754B5B0E91D064 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:48:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 488301E151AC45D39824ED51CD2B78B2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8846" ], + "Content-Length": [ "8839" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:48:37.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:52:44.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "552" ], - "x-ms-client-request-id": [ "fefa0c86-24f9-4b1d-aec6-83722a04e27a" ], + "x-ms-unique-id": [ "654" ], + "x-ms-client-request-id": [ "7593e443-26ec-43ac-900a-0445bce6819d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4170,38 +4581,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA608C9F40\"" ], + "ETag": [ "\"1DC5509761FC895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0095800b-0260-42fc-a582-b110690fb0fe" ], + "x-ms-request-id": [ "b0a2c8cf-4d9f-42bc-abff-e0dc9c70c7d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5124cfdc-64c6-4037-a1d8-5f51b83be0b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114948Z:5124cfdc-64c6-4037-a1d8-5f51b83be0b0" ], + "x-ms-correlation-request-id": [ "66146698-2eef-4486-8705-4a5339243b15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015354Z:66146698-2eef-4486-8705-4a5339243b15" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F446E2DA2EAF4F1EB9103EDE09F20D5A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB520C6935FE4430AEC55A163D746E45 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8820" ], + "Content-Length": [ "8818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:49:18.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "5e64b645-7c46-4880-bc83-40fb72514320" ], + "x-ms-unique-id": [ "655" ], + "x-ms-client-request-id": [ "675a98f5-a826-480f-9efd-d21f198b6609" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4216,38 +4627,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA608C9F40\"" ], + "ETag": [ "\"1DC5509761FC895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c729eaa-2e31-4bf6-a808-0a99b0f7432e" ], + "x-ms-request-id": [ "845f104e-a1df-455e-813f-1fbb013d267b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5f91fc60-4df0-457a-9a15-13d4194811fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114949Z:5f91fc60-4df0-457a-9a15-13d4194811fb" ], + "x-ms-correlation-request-id": [ "d5861414-dfd9-4081-9cb3-d24d41021cc8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015354Z:d5861414-dfd9-4081-9cb3-d24d41021cc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC425FC93132461389253C5EE1F05BA8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B40CECBE2F14DDE9675634375A65901 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8820" ], + "Content-Length": [ "8818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:49:18.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "222a50f6-4fca-4c80-9b7d-3e49e675e48b" ], + "x-ms-unique-id": [ "656" ], + "x-ms-client-request-id": [ "cae483f2-639e-4bd0-b46b-8d0fffde350f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4263,36 +4674,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bbf910a9-a8c6-49ed-8ac0-ed7260bac568" ], + "x-ms-request-id": [ "da625acc-81bb-4e84-b808-f9c6a8c6b064" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d6762a4-4eac-4619-9b5d-fe4c7ea03cb9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09c4fd53-726e-47f8-b894-0776ad898053" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "920a5c2c-9c5e-4857-9c7f-c0a07df4a6e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114949Z:920a5c2c-9c5e-4857-9c7f-c0a07df4a6e1" ], + "x-ms-correlation-request-id": [ "c8a6820c-2ba8-47b3-a4f8-4ff49d187000" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015355Z:c8a6820c-2ba8-47b3-a4f8-4ff49d187000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B1B0C3A98674341ABE6F7D5B9828E67 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7AF9FD41344D40CAB24A380037E75172 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "aee2de1b-6f7d-4be5-92af-b844b62a5eef" ], + "x-ms-unique-id": [ "657" ], + "x-ms-client-request-id": [ "bc831eeb-b6cd-45f6-b712-2b34e60ff660" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4308,37 +4719,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a22b65e9-c35d-436b-842b-e83e79f236eb" ], + "x-ms-request-id": [ "795f930d-74a7-462f-978f-98485b4a8b66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2aabaf3-8e81-48c3-82d4-e3f811443400" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5340b286-d566-476a-b9e3-04c7fbcbc040" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92af566e-3224-484d-95d9-78dd47224d0a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114949Z:92af566e-3224-484d-95d9-78dd47224d0a" ], + "x-ms-correlation-request-id": [ "5f5b37a5-6e08-48b6-83f8-8212deeef168" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015355Z:5f5b37a5-6e08-48b6-83f8-8212deeef168" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E972221ED424C26BCFCB3C306693B42 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9B1931E145F42F28DEE8B5FAEE2EF42 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":31822,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69464,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "556" ], - "x-ms-client-request-id": [ "c6d37a6f-869a-4fba-9d30-07f68c447d52" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "c8f79ec2-05fa-4a52-9319-f7612f7f8aed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4353,38 +4764,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA608C9F40\"" ], + "ETag": [ "\"1DC5509761FC895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b88327d9-aa5a-4baa-b121-00ca6c6a18e2" ], + "x-ms-request-id": [ "ee481af5-72b7-40f1-afe2-24cdbab6ab24" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "621807c1-5492-4642-a2af-cd82c073ad4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114950Z:621807c1-5492-4642-a2af-cd82c073ad4e" ], + "x-ms-correlation-request-id": [ "8b1549fe-01bb-49a7-871f-6be4096f0637" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015355Z:8b1549fe-01bb-49a7-871f-6be4096f0637" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA6567D838E641DC88E285D10FA18FCC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D570A544EE9047408D7D3B09A56DDD9F Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8820" ], + "Content-Length": [ "8818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:49:18.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+19": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "557" ], - "x-ms-client-request-id": [ "a337056e-de5d-4c8e-9521-bdd837b7c02a" ], + "x-ms-unique-id": [ "659" ], + "x-ms-client-request-id": [ "de195182-531d-4c69-ab13-281aab55a69d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4400,36 +4811,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98df543e-6941-4301-bb78-c371915cdc24" ], + "x-ms-request-id": [ "b09a02b7-e9b0-49bd-9e0b-59a32f62d658" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5106ac59-c36f-4075-b4b0-6fe5cde64ab0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b81bef2e-416f-44be-8cbf-cdcbf1ce1354" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "32404f9c-bc0c-4c94-92bc-4b7c61005020" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114950Z:32404f9c-bc0c-4c94-92bc-4b7c61005020" ], + "x-ms-correlation-request-id": [ "276abe4f-fb10-4af5-874a-c7405a3cda4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015356Z:276abe4f-fb10-4af5-874a-c7405a3cda4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E09E8971D4E440E9B9EE20A41097AD6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD12539F4CFB497D8236326108EAD256 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01+20": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "3a1aa8aa-6b81-4d78-aa40-1a52d9557123" ], + "x-ms-unique-id": [ "660" ], + "x-ms-client-request-id": [ "b3091914-fe66-4810-a444-9285c59e38fd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4445,39 +4856,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49b32e1e-656e-4dfe-8310-a39931d023a3" ], + "x-ms-request-id": [ "c3d4b1df-e533-4921-a2fa-bd83556d7aa9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc2dce5f-52f3-45a1-819b-fe9799fd5eca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f028681a-7057-4010-84e3-2431170613da" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd5c3e0c-31fb-4e76-8f1e-57882b6ca091" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114950Z:bd5c3e0c-31fb-4e76-8f1e-57882b6ca091" ], + "x-ms-correlation-request-id": [ "de1f9658-20c2-444f-a214-29bf6e398e74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015356Z:de1f9658-20c2-444f-a214-29bf6e398e74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0A41D9BDED14EAB8A5AE7FC1960EF06 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 496D14B909844890AA32E7D54773397E Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":31822,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69464,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+20": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "559" ], - "x-ms-client-request-id": [ "d7e0dd46-72f1-45f5-82ca-ff22c57fa45a" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "661" ], + "x-ms-client-request-id": [ "09defbd3-f8d9-4ee6-a9ac-5ba32ba465ee" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -4490,40 +4901,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA608C9F40\"" ], + "ETag": [ "\"1DC5509761FC895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f30a05e-42d1-4771-828f-0bb179035b16" ], + "x-ms-request-id": [ "af4b1caf-be4b-4694-9197-c03ddbea9324" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/206dbdea-6100-4ac0-b36e-88f96863b2ee" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f41cd48b-9e0e-477d-ab61-51c1d441934e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114959Z:f41cd48b-9e0e-477d-ab61-51c1d441934e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eb303d72-e83e-4641-b8cb-7af79c19d897" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015356Z:eb303d72-e83e-4641-b8cb-7af79c19d897" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7B33DCD122D4C91A5CE4481CCA29C52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1AA1F99FF804827B4BDD9DF978B0B1D Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:56 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8818" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+21": { "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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "25e2b076-ccb7-4dc6-aeaa-077766e3909a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -4532,39 +4948,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8db4822-c4f2-40d5-a5f9-58726ef6131d" ], + "x-ms-request-id": [ "8c82a36c-5843-47e8-9f19-7fcbf39a7f86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7eb51e8a-9a5d-473a-bcad-5165d1da3bdf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "189184fa-b303-481b-bbee-2552b96e5220" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T114959Z:189184fa-b303-481b-bbee-2552b96e5220" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d0f2fea-3ba4-4f95-895a-95cc4d3849a3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ee85f67c-8462-430c-ab47-8fa2cf825c20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015357Z:ee85f67c-8462-430c-ab47-8fa2cf825c20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92B8F562337443BDA38766308CD5DA5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:49:59Z" ], - "Date": [ "Wed, 12 Nov 2025 11:49:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB327D3BEC434A2EBD0E61180546CB80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+22": { "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "561" ], - "x-ms-client-request-id": [ "bccfb2d5-9520-4025-8a72-bb796614bf1a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "663" ], + "x-ms-client-request-id": [ "c3bd4c6b-7fd5-4f08-9ebd-f63d0d506e86" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -4577,36 +4992,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7ca50aa0-64b2-4936-ad52-304b0eaf36a2", "ce443ddb-405f-48c7-a984-2a654642469d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b5332f34-a5f9-469c-822f-f80650b87b13" ], - "x-ms-correlation-request-id": [ "b5332f34-a5f9-469c-822f-f80650b87b13" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115000Z:b5332f34-a5f9-469c-822f-f80650b87b13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4b76fa35-8c6b-4037-add4-0194ddd13527" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8eee37c9-5935-437a-a400-c1096117d57f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bfd7b03c-80c3-47bc-90aa-070ae4457ef8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015357Z:bfd7b03c-80c3-47bc-90aa-070ae4457ef8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D708C23189154E5396C5AA9A7EBFBEA9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6173353BC1E432DAFC139FD01424B82 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "12094" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "4192" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69464,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "562" ], - "x-ms-client-request-id": [ "59737d58-5bf1-4220-a7b7-3b8d33ae888c" ], + "x-ms-unique-id": [ "664" ], + "x-ms-client-request-id": [ "573dab45-260c-429f-8328-17e162816b08" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4622,38 +5039,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86dfd729-7ee9-4dea-a1a7-f3f6647c6b2e" ], + "x-ms-request-id": [ "9eabd97f-8861-4acf-a55e-f47b2aec1a4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a26f561c-9a64-4493-9483-caa8e9619d01" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115001Z:a26f561c-9a64-4493-9483-caa8e9619d01" ], + "x-ms-correlation-request-id": [ "6785e98a-8412-4593-9f68-9b028f5ff458" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015357Z:6785e98a-8412-4593-9f68-9b028f5ff458" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 625EAA40EF994BE5BF1F2A08752E85B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B77E00E290B409095392A0880544A74 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:53:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"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-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "563" ], - "x-ms-client-request-id": [ "a3bc205d-c7b2-4f15-a75d-98ec7f5237e7" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "665" ], + "x-ms-client-request-id": [ "aa85e04e-b6a0-4bc3-8101-f10c120ef142" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -4666,44 +5083,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5509761FC895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4364f733-99b2-4c7c-92d3-2b2fd26fd855" ], + "x-ms-request-id": [ "2a128643-9e27-429c-8b2c-05ada12d4855" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e099f57c-a146-4219-b584-07e788315c2a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115001Z:e099f57c-a146-4219-b584-07e788315c2a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ce09977-0343-43f2-aa6e-23fa417e2b1d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "8cc05431-709e-4455-a303-4d6aa9f6df4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015406Z:8cc05431-709e-4455-a303-4d6aa9f6df4f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E70B00C08D3142A79F91F20C4EECA770 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13A3C677945C435EA2E818D2A44D5927 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": null, "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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "4149c5e6-ba4c-4a86-ab27-2db1e696f6a6" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -4712,38 +5125,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1dff8ae0-2f2b-40a3-b42a-ca28baf40d8b" ], + "x-ms-request-id": [ "25f1ef86-8cb4-464d-8fd7-4fa0d4c5b0e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12eb4343-2914-4c19-b2d3-e68b1eafebf2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "21ce6d86-75a2-4fbb-b8be-e29fc9e06e23" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115001Z:21ce6d86-75a2-4fbb-b8be-e29fc9e06e23" ], + "x-ms-correlation-request-id": [ "c0ee72b0-07ac-4983-9792-d1dc248d4a79" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015406Z:c0ee72b0-07ac-4983-9792-d1dc248d4a79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75168EE7B71F4F89A979B32FBC42D836 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C448DD45715048DC88EC59852385C483 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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/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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "565" ], - "x-ms-client-request-id": [ "b74ff381-4d1a-4309-bd76-3b729c663095" ], + "x-ms-unique-id": [ "667" ], + "x-ms-client-request-id": [ "e9c68534-a5cf-4b24-aea3-2a94a4e27ac1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -4756,37 +5170,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f4dd186-d057-4251-8de2-06ab9a2315a2" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "x-ms-original-request-ids": [ "01477006-54ef-4f49-b990-22056a5f2bef", "b607ab97-2289-40fe-ba04-1c19e410b2aa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "27f57909-bcb5-46e5-bc15-7c9f2cf33895" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115001Z:27f57909-bcb5-46e5-bc15-7c9f2cf33895" ], + "x-ms-request-id": [ "536be6f7-f11f-415e-b3ed-5c17dd1e97df" ], + "x-ms-correlation-request-id": [ "536be6f7-f11f-415e-b3ed-5c17dd1e97df" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015407Z:536be6f7-f11f-415e-b3ed-5c17dd1e97df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7040EB6B1CF48F5A6CC8BD99C9B8F37 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:01Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E0A4878BD4445DFB242657B3A78401E Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:06Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "10323" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "566" ], - "x-ms-client-request-id": [ "d80557ac-698d-402d-95f4-29a83145e3c2" ], + "x-ms-unique-id": [ "668" ], + "x-ms-client-request-id": [ "16b26ff2-1a9d-46ae-b530-14eead18790f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4802,36 +5215,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07f82313-2d15-4433-9b4a-5ff5dc06a40c" ], + "x-ms-request-id": [ "a16fa5b5-2587-4201-b0b7-9f260216408a" ], "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": [ "9afa6b68-38c7-4ac9-acf9-b6bdb14ce8f5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115002Z:9afa6b68-38c7-4ac9-acf9-b6bdb14ce8f5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3831b861-1aa5-42f7-8c09-e599f37e2ac3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015407Z:3831b861-1aa5-42f7-8c09-e599f37e2ac3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A433EE349AE54525A05E05AAB1410724 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:02Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F8D4489BA62427E82BBC5A3A71EFFC9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "a2971e09-4b40-463c-98c5-c82e3a1db009" ], + "x-ms-unique-id": [ "669" ], + "x-ms-client-request-id": [ "db7d5052-c11d-4978-a3bd-836c1b7fcb81" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4847,36 +5260,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "402a99d0-c881-471a-9229-cd163afd5a67" ], + "x-ms-request-id": [ "3bf5912c-931d-43f7-97a0-3f0804462fb2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "151e272a-59d3-496a-bedb-ead1cc7d1140" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115003Z:151e272a-59d3-496a-bedb-ead1cc7d1140" ], + "x-ms-correlation-request-id": [ "2c1145ca-34ae-43a0-85b9-4a6c3edbb3b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015407Z:2c1145ca-34ae-43a0-85b9-4a6c3edbb3b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31A016302370425F8E267153EC65CA97 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:02Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5E0E2D652CD4DBF91A995E98A572A10 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:07Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+9": { + "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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "ef9df988-41fa-4c9d-a1c9-030c61202c79" ], + "x-ms-unique-id": [ "670" ], + "x-ms-client-request-id": [ "90fe28f8-7791-4938-af3e-ef919c083f9b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4892,38 +5305,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec632aae-43bf-4d1f-851e-5a554db48be0" ], + "x-ms-request-id": [ "ee24ed13-d6bc-4d50-b6ae-c984bdd1d7bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "87dcb732-a602-4175-99e9-bf357c5a83fd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115004Z:87dcb732-a602-4175-99e9-bf357c5a83fd" ], + "x-ms-correlation-request-id": [ "ea3a5f0c-37d2-4be7-8c73-70f6771311e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015408Z:ea3a5f0c-37d2-4be7-8c73-70f6771311e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D0BA2410515441F8584ECA353F43E6D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:03Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2881C87E48E7418D85FF021F593DBDA0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1700" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { + "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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "feda33b4-7e93-4069-ad40-13e38a935288" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "671" ], + "x-ms-client-request-id": [ "bed9f274-c747-4b6c-a229-f0d51c44145a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -4936,36 +5349,171 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0c21b864-a0d5-452e-b8f0-744e2b81bebd", "20d1c54f-3df4-42a5-a756-3e75b9d194f5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ad79c30f-3f97-4e2c-a371-9826e4c65d00" ], + "X-AspNet-Version": [ "4.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": [ "510ed3a0-a014-4fb6-9aaf-399b7ff98e90" ], - "x-ms-correlation-request-id": [ "510ed3a0-a014-4fb6-9aaf-399b7ff98e90" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115005Z:510ed3a0-a014-4fb6-9aaf-399b7ff98e90" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-correlation-request-id": [ "52dce625-be17-4fcc-bd07-3893fae18773" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015408Z:52dce625-be17-4fcc-bd07-3893fae18773" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F23CB67E6F514420B85D4966F4E562DA Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5652854FBB8411380E9E0987B9587B4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "1814" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "945662c9-14b5-4c47-87d6-7bb43a6061b1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a3e2a537-f5d6-4331-8b41-c2b529b69e2a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0edbf15e-aa2f-4efa-aa37-0b1e77ff8066" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015408Z:0edbf15e-aa2f-4efa-aa37-0b1e77ff8066" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7AD9CB5CFCB44BB687634081BDEC393C Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:08Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "db66f0e8-c1b7-492b-97e7-34a24acb270b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "63f3d5dd-b49b-401e-904e-5a6de70ae9f2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d29b790f-2ff9-481f-a9c8-a0a1e56614ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015409Z:d29b790f-2ff9-481f-a9c8-a0a1e56614ee" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CD8B1CDBFB5E436CA287BA008E0700F8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1691" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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": [ "674" ], + "x-ms-client-request-id": [ "ade2c25a-bb8d-4300-9ec7-ee74f1023c8f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "f23d019a-db35-4ca0-af7b-ad7028b74b64", "4ecb5398-586e-4916-8333-522aeaf52253", "291c4ef4-d336-4ef3-a991-b03a7782d054" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ace24f6b-6e7d-492f-b0be-78237f769c25" ], + "x-ms-correlation-request-id": [ "ace24f6b-6e7d-492f-b0be-78237f769c25" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T015410Z:ace24f6b-6e7d-492f-b0be-78237f769c25" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7B10A27612444A9CB02C4FF496BBFB92 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:09Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+11": { + "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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "570" ], - "x-ms-client-request-id": [ "135e2b4c-feea-4488-a9ec-18501594662e" ], + "x-ms-unique-id": [ "675" ], + "x-ms-client-request-id": [ "ca4c1aa5-e44b-4ccc-b134-0c4ce1116291" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4980,30 +5528,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e9995838-da11-4ffc-9b75-498fb017a1f3" ], + "x-ms-request-id": [ "68e8775c-849b-4732-8035-c33ca9e0951a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/38a3966b-add7-4c42-af41-3853a8b92e88" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ba832afc-d8d8-41b6-8794-18cf78b6577c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "89689cff-a124-4e67-97e1-d395da6ab56d" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T115005Z:89689cff-a124-4e67-97e1-d395da6ab56d" ], + "x-ms-correlation-request-id": [ "ee8cd5ba-833b-4fe5-84a0-f836ead809bc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015410Z:ee8cd5ba-833b-4fe5-84a0-f836ead809bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C6AD89323924725948BB4B46BE188E6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 427A05424C7945928DD1EAE751D6ADD6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-01+12": { + "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-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Insights/components/Functions-PowerShellTest-u074f23mpl?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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": { @@ -5023,30 +5571,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b550947e-a428-41de-8b21-10dd747e3bdc" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "6a875ce9-a9aa-4431-af96-6123c08bd867" ], - "x-ms-correlation-request-id": [ "6a875ce9-a9aa-4431-af96-6123c08bd867" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115007Z:6a875ce9-a9aa-4431-af96-6123c08bd867" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/31c13172-cd44-48b7-801d-6c335b71d54a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "36816ed8-77b1-4410-af29-4317ff547b14" ], + "x-ms-correlation-request-id": [ "36816ed8-77b1-4410-af29-4317ff547b14" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015415Z:36816ed8-77b1-4410-af29-4317ff547b14" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B7C3246192541DDB34A546CFD184F1A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E3087E8C2714473A4871864DA62E313 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:10Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7206cd58-0000-0300-0000-6914746e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\r\n \"name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"AppId\": \"10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"78cb4fe9-b95f-4c81-a7da-462e1c332bc2\",\r\n \"ConnectionString\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\r\n \"Name\": \"Functions-PowerShellTest-u074f23mpl\",\r\n \"CreationDate\": \"2025-11-12T11:48:32.0439985+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-u074f23mpl_10da85e8-cdbb-43f7-8ba1-7772e0b939aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-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\": \"\\\"09076952-0000-0300-0000-69168bc30000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"AppId\": \"f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0f0b38e-158d-4cae-9767-5abe5d3b54f8\",\r\n \"ConnectionString\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"CreationDate\": \"2025-11-14T01:52:36.9752274+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-1hufk4w38b_f5dda4ed-baee-401a-9b17-14d8809b3c0b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+13": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"\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": { }, @@ -5060,39 +5608,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA8F309FE0\"" ], + "ETag": [ "\"1DC5509A895DFD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a30bdad6-94f3-4303-aa02-9c6f516107a8" ], + "x-ms-request-id": [ "f00dd944-30b2-4178-9134-17b57ba425e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f2ef819-7a43-4d46-89f7-0d37f214b80f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d0fc34ac-3020-42ef-a762-fbf15f0bd054" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "6d896de2-ef7f-4c97-8d22-b8a5dfd20870" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115050Z:6d896de2-ef7f-4c97-8d22-b8a5dfd20870" ], + "x-ms-correlation-request-id": [ "68834cef-24de-48f1-ab27-53cf70713cb0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015458Z:68834cef-24de-48f1-ab27-53cf70713cb0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A6F858751264CC09313A47F9B34698A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:50:07Z" ], - "Date": [ "Wed, 12 Nov 2025 11:50:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87B576DA9BFA4EA18653D34CADF80DEB Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:16Z" ], + "Date": [ "Fri, 14 Nov 2025 01:54:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8654" ], + "Content-Length": [ "8642" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:09.5033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:18.59\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "573" ], - "x-ms-client-request-id": [ "34f45402-3a59-4df1-8e70-702b2a2e330a" ], + "x-ms-unique-id": [ "678" ], + "x-ms-client-request-id": [ "27f782ad-36d9-4b53-8310-610bfae5b8e4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5106,38 +5654,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA979D3335\"" ], + "ETag": [ "\"1DC5509AE5658F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39d1d9ec-42b4-40a4-b536-d6211f655781" ], + "x-ms-request-id": [ "0ef271d3-647e-4142-a3b4-ac320da142f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7dc1363a-43d3-4c20-b854-0d82a2a64fe8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115121Z:7dc1363a-43d3-4c20-b854-0d82a2a64fe8" ], + "x-ms-correlation-request-id": [ "59902b05-07f9-4cfa-8a12-aa0825a6fc87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015528Z:59902b05-07f9-4cfa-8a12-aa0825a6fc87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA7809B6CB124DF690218BACC90EAD63 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D906FAC537B84F3B8F0A7FDEC0F7B30F Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8628" ], + "Content-Length": [ "8621" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:50.6433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "574" ], - "x-ms-client-request-id": [ "eca2809c-0038-4ff6-8ec8-c22138597d92" ], + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "5ed01101-c546-4fd9-aa0b-10ee8f00e0d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5152,38 +5700,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA979D3335\"" ], + "ETag": [ "\"1DC5509AE5658F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdbb827c-c9a5-4180-a569-22c19d245d4d" ], + "x-ms-request-id": [ "95e41fd8-e91d-4601-a187-c63666858e87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3716b0a3-4596-44d0-81ba-4496b758b9a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115121Z:3716b0a3-4596-44d0-81ba-4496b758b9a6" ], + "x-ms-correlation-request-id": [ "ffabc92f-9d93-41ce-9ab4-e1fac224b3e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015529Z:ffabc92f-9d93-41ce-9ab4-e1fac224b3e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72FAE8994DE645B3A3CDE3E1A09979D2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31DEFA4226C24D35A6649DE5307BC7E5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:28Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8628" ], + "Content-Length": [ "8621" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:50.6433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "575" ], - "x-ms-client-request-id": [ "217de053-8fad-48d8-b205-def7ed7d91ed" ], + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "133442b8-0316-468d-a235-8a87d98d709b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5199,36 +5747,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "545e7c91-f589-4a34-b9ad-0cd9e6723fd8" ], + "x-ms-request-id": [ "f0e62839-f4c0-4d3f-bf33-5e61d896c8d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b95f61d-c350-4a29-b127-77e82ca6f6a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de124583-6981-488b-8ea5-b990dc1173ef" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e7459f8c-71bc-4397-9945-40e1cdd272b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115121Z:e7459f8c-71bc-4397-9945-40e1cdd272b9" ], + "x-ms-correlation-request-id": [ "b3fa0da4-9c95-4034-8a58-6f1f86e1f01e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015529Z:b3fa0da4-9c95-4034-8a58-6f1f86e1f01e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 424E860315E64713BA4BBF1D4F2F6D17 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8CAD3D639A145CCBCB6C7A792CEDCF2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "576" ], - "x-ms-client-request-id": [ "78f57044-fe1c-438d-9bed-7f9fbf547280" ], + "x-ms-unique-id": [ "681" ], + "x-ms-client-request-id": [ "5a6b43a2-6c96-4c9a-b196-24cc7b1ad973" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5244,37 +5792,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd4b5247-5404-4c5e-a048-e97b943f52b4" ], + "x-ms-request-id": [ "84acbce0-ad29-40d5-8eb0-3fbc11f20003" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3461b811-9e87-4deb-8a3a-3e0b292d2b6b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b9a756a-d55b-413e-8550-6fb3e8ad7bc1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "faea34df-1f18-4078-92ec-7dea1444f78b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115122Z:faea34df-1f18-4078-92ec-7dea1444f78b" ], + "x-ms-correlation-request-id": [ "838b5f8d-97cd-4d09-8a85-c79695c603f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015529Z:838b5f8d-97cd-4d09-8a85-c79695c603f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C1F2D7BCBFD485791B67FFD3E077CFC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 988C104AD71047428FE0C3884111231C Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":31823,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69466,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "577" ], - "x-ms-client-request-id": [ "ab977221-f935-477c-9b27-f63a63c118a4" ], + "x-ms-unique-id": [ "682" ], + "x-ms-client-request-id": [ "39effd06-dbdc-4995-a076-94d1d3dc01c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5290,36 +5838,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da7a71cc-a261-462d-8bd4-6edeb271fab4" ], + "x-ms-request-id": [ "663353df-2731-4f12-b7be-3d8f2f58734a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54c83ef6-f444-46aa-8b5b-743267e11a89" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7aa1f0dd-fb4b-479e-a2c5-762c44d8e6be" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "823c4677-fdb2-41dc-9300-f00d76d230ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115122Z:823c4677-fdb2-41dc-9300-f00d76d230ac" ], + "x-ms-correlation-request-id": [ "cffa2265-b4da-41bc-800e-94b00cb2434e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:cffa2265-b4da-41bc-800e-94b00cb2434e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D2C5A0E5CC4406381D89DE9EEA9C3BE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7305580134F4873B0B6A5F7D1477E95 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:29Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "578" ], - "x-ms-client-request-id": [ "3832d7a0-c14f-42a4-b51a-911545246f0b" ], + "x-ms-unique-id": [ "683" ], + "x-ms-client-request-id": [ "4069fd28-d52e-4539-aace-9340300a62db" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5334,38 +5882,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA979D3335\"" ], + "ETag": [ "\"1DC5509AE5658F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b3319fc3-3104-4a7a-8f34-72ddb7d1429a" ], + "x-ms-request-id": [ "8f8e3d00-63bf-4b51-8770-10767cb4abb7" ], "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": [ "1734435a-521c-443b-9202-ff2d58c56325" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115122Z:1734435a-521c-443b-9202-ff2d58c56325" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "773257cb-f6cb-45ff-aba9-64115e18a078" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:773257cb-f6cb-45ff-aba9-64115e18a078" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC96E59C9EF241CFAE5995C3C9FE9637 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D2759078F7384D9CA75FC0DA6BD08614 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8628" ], + "Content-Length": [ "8621" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:50:50.6433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"9b35c1bc-c121-467f-a25d-3c43f0852848\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+20": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "579" ], - "x-ms-client-request-id": [ "7e0b7336-b5e3-4c6e-8521-2b698c4f1554" ], + "x-ms-unique-id": [ "684" ], + "x-ms-client-request-id": [ "eea0054f-ceaf-4885-adae-80551b1e1a65" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5381,36 +5929,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0e2e4cd-a14e-4e0b-a7a8-e77f1b5a788c" ], + "x-ms-request-id": [ "cff7c9e4-87d9-464a-ae5c-d128c37da5d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/832dfcb5-60fd-49dc-9203-fcbfb65b910d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/194d209e-cb17-4877-bbe1-f103f35c5139" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5fe68d40-1500-43e3-a504-e1069ff5bec4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115123Z:5fe68d40-1500-43e3-a504-e1069ff5bec4" ], + "x-ms-correlation-request-id": [ "aa68ef32-f5bd-421c-a91d-aeda59f588d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:aa68ef32-f5bd-421c-a91d-aeda59f588d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 908D51B156414B6BAA495480D7EFCF70 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D9E5FE05C494989B67387B42BA29710 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01+21": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "580" ], - "x-ms-client-request-id": [ "3c11395a-cd36-4e78-93ab-cda9db880945" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "d4a4b065-b46b-4db4-84aa-af16124aada0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5426,39 +5974,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d85252b5-bb4b-4b8c-9c6f-1873193e3632" ], + "x-ms-request-id": [ "db5cb869-3835-4f66-ba7e-43d133d00135" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/736cdb30-6f94-4a42-9617-1c3ea2338eb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c32a26f-54d1-414d-a62a-ed2c32c28620" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2bd7e646-ae83-4733-adad-4c3acad2b3fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115123Z:2bd7e646-ae83-4733-adad-4c3acad2b3fe" ], + "x-ms-correlation-request-id": [ "5014eb3b-2e58-41d3-8a81-3eafe9982cda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:5014eb3b-2e58-41d3-8a81-3eafe9982cda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 94FD19DA928F4BDDA43FD66DB3A2151D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 769C57615E3E409BA8D851C1DC1CA7D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:30Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":31823,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69466,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+21": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "581" ], - "x-ms-client-request-id": [ "8a64b570-1b0b-4cab-8247-ebee60ab39a6" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "686" ], + "x-ms-client-request-id": [ "2e2fb76c-b087-4d56-aff2-8d8bdda02c82" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -5471,40 +6019,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CA979D3335\"" ], + "ETag": [ "\"1DC5509AE5658F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69855809-73be-497c-bace-01bacf030c5a" ], + "x-ms-request-id": [ "3aea1bed-24fc-450d-a4c6-c517c9735e34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9f7f5cf-c245-489e-b229-2bfef69235e4" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "563126f3-d3c3-4a09-b5d8-0d98cd00b22a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115133Z:563126f3-d3c3-4a09-b5d8-0d98cd00b22a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7847699b-991e-4be3-bb5d-0a9cd79e62af" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015531Z:7847699b-991e-4be3-bb5d-0a9cd79e62af" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06B8997697DC4EEE90858E5C2B7FB818 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 035F5DC709FB4E5FBA4E29436C0472B3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:30 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8621" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+22": { "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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "687" ], + "x-ms-client-request-id": [ "0acd529d-7e9a-4b12-80d7-f2222b10aa8e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -5513,39 +6066,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70462c1c-9b92-47fe-a02c-992f587d965a" ], + "x-ms-request-id": [ "40ddd446-75dd-4a7e-8a3c-d6b0c81552bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f50a284-80dd-4d05-9237-7863f6092a4c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "39c902e9-f033-4983-82f9-06131447bd6d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115133Z:39c902e9-f033-4983-82f9-06131447bd6d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f1c7e38-eb5a-4815-8e25-12ca4c6eff3b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0784b01a-a512-4999-9889-15f4fbc9fed7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015531Z:0784b01a-a512-4999-9889-15f4fbc9fed7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D1E22B73C9B4CD6AB4B7D86EA3A02B1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD91BE16EC8748C2B4549D02F17519E4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+23": { "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-we3pd25b9g\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "688" ], + "x-ms-client-request-id": [ "f7126c1f-e766-4c1a-869d-aafa25b99014" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] } }, "Response": { @@ -5554,39 +6111,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48b1c782-1da8-4968-a810-6e8d20062c49" ], + "x-ms-request-id": [ "e672b465-739f-43f1-b5da-df2b3d0ac2df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8afd3fb3-a556-491a-9365-2cd397c3065a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b42753e9-2903-440b-81fe-11b3b79fb892" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4643e123-1d98-4b26-a216-c61c211fff90" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115135Z:4643e123-1d98-4b26-a216-c61c211fff90" ], + "x-ms-correlation-request-id": [ "4a306826-38da-4775-8e62-95ac75aefd84" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015531Z:4a306826-38da-4775-8e62-95ac75aefd84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B46860BA8134B0687820DD2BBF6FB3F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8B4EF41193B4AEA99FB7ED69C4E261A Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69466,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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 DotNet function app in consumption for Linux sets the LinuxFxVersion property+$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 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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+24": { "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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "584" ], - "x-ms-client-request-id": [ "64df22fd-1cec-45b6-9561-70c90c7a22c9" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "x-ms-unique-id": [ "689" ], + "x-ms-client-request-id": [ "2b30d997-3e29-4592-a96a-26bf0230b261" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -5600,39 +6157,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbeceab9-3e4d-4c6c-a66b-50bfaba3b888" ], + "x-ms-request-id": [ "5c33c92e-532b-4e35-8a54-c1dbdb0e6d8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5c6774c3-9201-46ff-9f55-03cd56e3532d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "04de1ec4-f667-4733-8e93-81541ff413cc" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115135Z:04de1ec4-f667-4733-8e93-81541ff413cc" ], + "x-ms-correlation-request-id": [ "5492e8a1-c3b1-4346-b421-ab9fcba2b10e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015532Z:5492e8a1-c3b1-4346-b421-ab9fcba2b10e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6392AC3D912A48E2AAEB5CD570CC6493 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB9935F66DD4405C86181A669AFB057D Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37704" ], + "Content-Length": [ "1826" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"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 DotNet function app in consumption for Linux sets the LinuxFxVersion property+$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 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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "585" ], - "x-ms-client-request-id": [ "ceee7405-e27c-4206-a623-040ccd0e358e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "690" ], + "x-ms-client-request-id": [ "77317979-c1bb-4f4e-add2-b0dd67ce6845" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -5645,43 +6201,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d9aba991-f5e8-4657-aea8-feb81d132773", "564a5abf-0237-4f44-ba03-1de3c1ff1af4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "619ab516-fad6-43b1-ad2e-2fc37333deac" ], - "x-ms-correlation-request-id": [ "619ab516-fad6-43b1-ad2e-2fc37333deac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115136Z:619ab516-fad6-43b1-ad2e-2fc37333deac" ], + "ETag": [ "\"1DC5509AE5658F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0557b005-7c2e-4bb1-8557-116b966ea620" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5f32f9a-d344-4ff3-b463-5ea60af2cb39" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "007bc29a-511a-49d3-b69d-7d8ca9df0ed8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015544Z:007bc29a-511a-49d3-b69d-7d8ca9df0ed8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 537A9645B95E4235AAB8B3C6E447F99C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D807C283EA554A64A573AE9D522070D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:32Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": 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-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01+4": { + "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/providers/Microsoft.Web/checknameavailability?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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01", - "Content": null, + "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-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "586" ], - "x-ms-client-request-id": [ "39599ca2-e57d-42c3-8683-dc79a0a37472" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -5689,37 +6242,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0206953c-916e-4930-b2c3-985698dcc492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f197d2e8-d67b-4a99-8560-35c8feed5bc2" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "00d62ce8-0dd7-4fc5-940e-efd8ad8466a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115136Z:00d62ce8-0dd7-4fc5-940e-efd8ad8466a8" ], + "x-ms-request-id": [ "eb40b7f5-c035-4e92-9254-66bce35e216c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd337057-e712-4bd2-b646-404f55fd8e7f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a3451f7d-5f7b-4140-8070-3af1543c54c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015544Z:a3451f7d-5f7b-4140-8070-3af1543c54c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0B0777D823443F7BEE7EE0EA0C0846F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F231B156BD6488886F3BB15E4EBE356 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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-cjes6i/providers/Microsoft.Insights/components/Functions-DotNet-we3pd25b9g?api-version=2015-05-01+5": { + "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Insights/components/Functions-DotNet-we3pd25b9g?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": "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-ah7tpo8wyj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] + "Content-Length": [ "64" ] } }, "Response": { @@ -5727,38 +6283,212 @@ "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-ms-request-id": [ "02e9e9a4-9faf-4c15-8588-92e89ac24695" ], + "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e3b6e0f-f12c-4940-bfe5-1a193fc41576" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "670c6e9f-0794-42f5-9160-822d3f29ab14" ], - "x-ms-correlation-request-id": [ "670c6e9f-0794-42f5-9160-822d3f29ab14" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115142Z:670c6e9f-0794-42f5-9160-822d3f29ab14" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/69f43560-f90b-4cd6-99e0-61e91bb5b029" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d42f49b3-ddbb-47a6-87df-d520027edb17" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015545Z:d42f49b3-ddbb-47a6-87df-d520027edb17" ], + "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26DD3A5A19C14CAEA9968001D7627ED6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:51:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9AC90C838226410AB6F09FFBEBF8C4D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1638" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"72063574-0000-0300-0000-691474ce0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-DotNet-we3pd25b9g\",\r\n \"name\": \"Functions-DotNet-we3pd25b9g\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-we3pd25b9g\",\r\n \"AppId\": \"2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9fca4f76-d133-4a00-955e-b079cbb13fb8\",\r\n \"ConnectionString\": \"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\r\n \"Name\": \"Functions-DotNet-we3pd25b9g\",\r\n \"CreationDate\": \"2025-11-12T11:51:37.1890585+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-we3pd25b9g_2ef6a493-ad79-4c82-bc89-061e4dc0a23e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-we3pd25b9g-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?api-version=2023-12-01+6": { + "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/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-we3pd25b9g\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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": [ "693" ], + "x-ms-client-request-id": [ "a15a7d70-5c07-4296-8cc9-9191e1ae65ff" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "5a3af466-e4d3-4495-93dc-e3e2c7240878" ], + "X-AspNet-Version": [ "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/4648ec38-fe7e-4b1e-8817-accf9a42481a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b71de377-79d1-497e-bca2-4890d4d0148d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015545Z:b71de377-79d1-497e-bca2-4890d4d0148d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4B0B5936A7D6449D8DD8538289C28C0E Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:45 GMT" ] + }, + "ContentHeaders": { + "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;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]+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/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": [ "694" ], + "x-ms-client-request-id": [ "1093ab30-68e8-434c-9590-84b057e08cfe" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "7c392abc-d329-4dd7-9eac-ba78501d61e9", "b6b10aef-50a2-45a5-8c00-f8d2277a0492", "a6948e83-8bfa-4155-83e4-03ef2efb0490" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f29d43b2-1f65-4e8e-9c67-8fca020c190b" ], + "x-ms-correlation-request-id": [ "f29d43b2-1f65-4e8e-9c67-8fca020c190b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015545Z:f29d43b2-1f65-4e8e-9c67-8fca020c190b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DFCEA8D5765B424FB64E0A5A398BB072 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "695" ], + "x-ms-client-request-id": [ "94846ad9-44f3-457c-a045-35630cd44a7b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "14875600-96d9-4b8f-94a8-dbca38f52a54" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9f2a8b63-4303-41a3-a57e-d806f80e970e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a85cc66d-596a-4f07-8e3b-7533ffc00d9e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015546Z:a85cc66d-596a-4f07-8e3b-7533ffc00d9e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 031262621C4F47E598C3CE8B5C899C3B Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"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-le3f9v/providers/Microsoft.Insights/components/Functions-DotNet-ah7tpo8wyj?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-le3f9v/providers/Microsoft.Insights/components/Functions-DotNet-ah7tpo8wyj?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/02cd4f41-9f67-423a-bea8-27ff116b7802" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "3187f075-1f05-4d51-95f7-3f276427d91f" ], + "x-ms-correlation-request-id": [ "3187f075-1f05-4d51-95f7-3f276427d91f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015551Z:3187f075-1f05-4d51-95f7-3f276427d91f" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7AB2625BDC0640429B662A1E69EF1E05 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:55:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"09070a6c-0000-0300-0000-69168c270000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-DotNet-ah7tpo8wyj\",\r\n \"name\": \"Functions-DotNet-ah7tpo8wyj\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-ah7tpo8wyj\",\r\n \"AppId\": \"3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"938fb9f4-abbc-4b77-8eaf-23fe410af510\",\r\n \"ConnectionString\": \"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\r\n \"Name\": \"Functions-DotNet-ah7tpo8wyj\",\r\n \"CreationDate\": \"2025-11-14T01:55:47.0020078+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-ah7tpo8wyj_3a9c27b8-7e9f-4a7b-8db4-7b31939efa18_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-ah7tpo8wyj-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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-ah7tpo8wyj\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, "ContentHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ "1714" ] @@ -5769,39 +6499,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAB840E9B5\"" ], + "ETag": [ "\"1DC5509CF2B65AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26c8b3d2-aa2f-44e9-b97d-e0d3945df7c9" ], + "x-ms-request-id": [ "c19063fa-08ad-46fc-9ac2-0cbc3cb0ae08" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ba7d449-e103-4b0f-b125-3b760abfcbfb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c70e235-a67d-4055-999d-5f95d8036379" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "f0154dff-b566-422e-b170-0a436f86d371" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115204Z:f0154dff-b566-422e-b170-0a436f86d371" ], + "x-ms-correlation-request-id": [ "5308287d-8347-412c-b638-d169d3778016" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015612Z:5308287d-8347-412c-b638-d169d3778016" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D52AE94CDA234EF691D0ED57F02B9AA6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:51:42Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D472E540150B4918A40B14FD3A4F3323 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:51Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8757" ], + "Content-Length": [ "8300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:51:44.59\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:55:52.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "589" ], - "x-ms-client-request-id": [ "771a6eaf-6a7d-4b22-bdc9-477bd1988a8f" ], + "x-ms-unique-id": [ "698" ], + "x-ms-client-request-id": [ "deb1c034-4e0d-4516-ad52-b578b52e33ce" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5815,38 +6545,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAC3537CC0\"" ], + "ETag": [ "\"1DC5509DA8ED7D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ae87b5d-d42e-44f3-b408-da4602923282" ], + "x-ms-request-id": [ "9ef6bb15-c7a3-4ae7-b1da-7b79ea94aead" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4d7b382f-ed52-4901-854a-3eaf9897f2ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115234Z:4d7b382f-ed52-4901-854a-3eaf9897f2ac" ], + "x-ms-correlation-request-id": [ "fb549b53-782a-4dad-8e95-bb1ee06a5db8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015643Z:fb549b53-782a-4dad-8e95-bb1ee06a5db8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F457A6EAF684FB284C87E7D2599AD24 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D736B7EF6F434F29A0E0EF614D3C5325 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:42Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8743" ], + "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:03.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "590" ], - "x-ms-client-request-id": [ "85838def-9ebf-49ec-86df-6562c5133c31" ], + "x-ms-unique-id": [ "699" ], + "x-ms-client-request-id": [ "bb7ba463-4133-4b9e-8444-245a5c826917" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5861,38 +6591,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAC3537CC0\"" ], + "ETag": [ "\"1DC5509DA8ED7D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad833409-b758-4bc7-9052-94bcdf71dabc" ], + "x-ms-request-id": [ "b71d6ce5-b2fd-40a2-ae06-fd591d1decec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a740a1aa-8905-4b36-8973-8dca914110b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115235Z:a740a1aa-8905-4b36-8973-8dca914110b8" ], + "x-ms-correlation-request-id": [ "47af5298-6dc5-4a91-807e-33ff825382b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015643Z:47af5298-6dc5-4a91-807e-33ff825382b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C750E272CEA4C6DAD9FABCD3DDD3337 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF1755697A2247A6B512CBACDDE5D777 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8743" ], + "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:03.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "591" ], - "x-ms-client-request-id": [ "1986a4ba-367e-4e33-9370-68b56829962a" ], + "x-ms-unique-id": [ "700" ], + "x-ms-client-request-id": [ "0e9c8f09-7be5-45ae-bfb5-0d5ddcd0f8b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5908,36 +6638,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9f579ed-7ae2-47d3-a659-df1e64f0d5c8" ], + "x-ms-request-id": [ "5a248397-8f8d-4b49-8a99-873072fa39bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9034730b-7a0b-4278-9a25-f7e2a966d915" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d8034a4-5173-48f5-b4d7-08511cff7124" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9f8a8fd5-b96e-4290-a346-b3e52cbb6a80" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115235Z:9f8a8fd5-b96e-4290-a346-b3e52cbb6a80" ], + "x-ms-correlation-request-id": [ "eaeab083-23a7-43ef-99dc-f3d6e00df1b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015643Z:eaeab083-23a7-43ef-99dc-f3d6e00df1b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 609A94AE0A574AD880456960BB94FC06 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C4B69720890472DA2B0FA2800083830 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-we3pd25b9g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-ah7tpo8wyj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "592" ], - "x-ms-client-request-id": [ "6debc137-76a8-439a-b1e5-54f57f735aba" ], + "x-ms-unique-id": [ "701" ], + "x-ms-client-request-id": [ "c296b5c7-feee-4d12-b3d7-9ccf169e94ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5953,37 +6683,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "661fabf5-55f7-4eac-a1da-3dfb6cb6705b" ], + "x-ms-request-id": [ "8516c609-5d7e-4c18-be9c-9a7541613c9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76ce91ed-6fc9-4077-a44c-2b8ad63811a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58bec533-562d-46cf-971c-6f5cd96493f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bc797934-5215-47d1-b0e6-8e0017252b0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115235Z:bc797934-5215-47d1-b0e6-8e0017252b0d" ], + "x-ms-correlation-request-id": [ "08a744c2-4f89-47c8-ae04-1fdcec3e94d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015644Z:08a744c2-4f89-47c8-ae04-1fdcec3e94d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6126B76EAD294153AB63F2522D1DC69B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53371D1C8615451BAF989D8F73780541 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:43Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "593" ], - "x-ms-client-request-id": [ "47572700-04ab-478e-9a9a-41c67f6a68bf" ], + "x-ms-unique-id": [ "702" ], + "x-ms-client-request-id": [ "57b6d1b8-312e-46ff-8d94-8f619243fa1c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5998,38 +6728,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAC3537CC0\"" ], + "ETag": [ "\"1DC5509DA8ED7D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f7ed6d5a-e430-4d91-94a9-67c3281ec78f" ], + "x-ms-request-id": [ "30de23c0-503d-481a-9b1b-b83f157a33b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fcc8ad51-0964-483d-8238-b5f86d117900" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115236Z:fcc8ad51-0964-483d-8238-b5f86d117900" ], + "x-ms-correlation-request-id": [ "30aad361-c665-41f0-b3e2-77e335420a1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015644Z:30aad361-c665-41f0-b3e2-77e335420a1d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D9F9558F8234BB1AB3456627F53E251 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:35Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D89DFBA92B984521AA4B029F924A897B Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8743" ], + "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-we3pd25b9g\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-DotNet-we3pd25b9g\",\"repositorySiteName\":\"Functions-DotNet-we3pd25b9g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"functions-dotnet-we3pd25b9g.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-we3pd25b9g.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-we3pd25b9g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:03.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-we3pd25b9g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-we3pd25b9g\\\\$Functions-DotNet-we3pd25b9g\",\"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-cjes6i\",\"defaultHostName\":\"functions-dotnet-we3pd25b9g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "594" ], - "x-ms-client-request-id": [ "ed08b172-4954-4ae5-bb17-08cc6ec5431f" ], + "x-ms-unique-id": [ "703" ], + "x-ms-client-request-id": [ "f1dfd2e4-6fd3-47d5-a594-35c17cd0dcbd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6045,36 +6775,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee576046-8a2a-4443-a5eb-375416839df2" ], + "x-ms-request-id": [ "80391344-fd17-4600-a0d1-f3b3bb9b38a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f74a4ae-e12a-4756-ad2a-2ee289dbe8d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46e7ac05-12e1-4cff-9e11-9bd3b8ba4762" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "21121e6f-23cb-431a-8fc3-c77855aa740c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115236Z:21121e6f-23cb-431a-8fc3-c77855aa740c" ], + "x-ms-correlation-request-id": [ "c4954a6d-d4f0-4e18-8450-3ca78a16d588" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015644Z:c4954a6d-d4f0-4e18-8450-3ca78a16d588" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF737907295046029423B8110F164373 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55DFFFEE58D544B79777CDA33BCDB0F4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-we3pd25b9g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-ah7tpo8wyj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "595" ], - "x-ms-client-request-id": [ "6c325815-7b1e-48a0-ba4f-491dca62dbf1" ], + "x-ms-unique-id": [ "704" ], + "x-ms-client-request-id": [ "94b7fab5-8ccf-4307-91ed-346be57ce537" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6090,39 +6820,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42949523-ad16-41a0-9103-7b2f164b1df7" ], + "x-ms-request-id": [ "6c1f4f51-244f-4df0-b7df-328ae1d5cd10" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0300d2ec-0de5-4631-be00-c2929a4e5317" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/269cec6b-7ec1-41a5-a812-9b46b8f9ecd8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88cb1ed9-c18c-4337-a230-809a1cf62a1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115236Z:88cb1ed9-c18c-4337-a230-809a1cf62a1d" ], + "x-ms-correlation-request-id": [ "df76c343-1801-4e31-a476-ac4d85755b29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:df76c343-1801-4e31-a476-ac4d85755b29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86922CB96D2C442FBFF6CB0B9E69C1D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 287F993119DB41F0B3B8F3638B764E40 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:44Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g/config/web\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01+14": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-DotNet-we3pd25b9g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "596" ], - "x-ms-client-request-id": [ "d8454150-7896-4c34-a611-20300c1c5892" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "x-ms-unique-id": [ "705" ], + "x-ms-client-request-id": [ "69cdb456-78d2-44fe-bb10-3f335b811256" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6135,40 +6865,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAC3537CC0\"" ], + "ETag": [ "\"1DC5509DA8ED7D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0dbad1ef-52da-4fd6-8b62-3d65c6a49175" ], + "x-ms-request-id": [ "2e39df30-d6e2-4648-a84c-03c68f5d3a86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9e23a23-ec43-49de-a300-48512d9c2d7c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "6f7b1e05-c814-4354-8504-ad9741bc82b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115246Z:6f7b1e05-c814-4354-8504-ad9741bc82b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ff64e14f-f4fc-4980-8237-c19a38b8463f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:ff64e14f-f4fc-4980-8237-c19a38b8463f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4982748F2FD44A959B028C07A4C8BC2C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:36Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF5D93370CF0441AADF0F8C4CFA578C8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8286" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01+15": { "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-u074f23mpl\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "706" ], + "x-ms-client-request-id": [ "84b02b37-95a0-4391-ab96-f2c02a2d173e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -6177,39 +6912,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4858156c-018b-4078-a1b4-110f56a346d6" ], + "x-ms-request-id": [ "639911ee-eee9-4e76-b298-2284fd1eb8e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf2675a5-a793-4424-86ee-97a78436e30b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "50bb473c-1815-44ae-a917-21d7b186febc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115247Z:50bb473c-1815-44ae-a917-21d7b186febc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/169daaba-0327-4a92-b9b7-f2f8e759b6f0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "fb5fcf62-6e70-42ca-9ff9-9a85062640cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:fb5fcf62-6e70-42ca-9ff9-9a85062640cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 880F61627DCB4CF7831D0D86B8A06031 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:46Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88275946C0E04F678CC5AC520AC80613 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-ah7tpo8wyj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"}}", "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.Web/serverfarms?api-version=2023-12-01+2": { + "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01+16": { "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "598" ], - "x-ms-client-request-id": [ "0e0bf24a-0a69-4b20-882e-5da00ff1b06c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "707" ], + "x-ms-client-request-id": [ "ad5ea5d9-c99e-456f-9829-45ec7a992b9e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6222,36 +6956,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "24d3a723-4e11-41c6-9ee6-0d73268d2608", "6bddbd6e-1425-428a-bcd0-8849dc97709a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d9839278-f357-4eaf-871d-9e50cabe3f2b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11ed52f9-fe83-404d-b611-cb80d78bab9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "11262aaf-00ba-44f0-bccc-91cac3671a04" ], - "x-ms-correlation-request-id": [ "11262aaf-00ba-44f0-bccc-91cac3671a04" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115247Z:11262aaf-00ba-44f0-bccc-91cac3671a04" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-correlation-request-id": [ "1bfcf068-6d22-4f32-aa84-c8e8165911d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:1bfcf068-6d22-4f32-aa84-c8e8165911d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3D096794AD64CC6B823C05BADD40514 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 273D817A793644B2A0186AA515E83864 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:45Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "12094" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "4187" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "599" ], - "x-ms-client-request-id": [ "46ecf470-d799-4b42-8c47-d9a9147d5058" ], + "x-ms-unique-id": [ "708" ], + "x-ms-client-request-id": [ "af30b7eb-a07b-4d41-b643-79576d582291" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6267,38 +7003,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f1018ee-c6d1-4a0c-bddc-c9c2aac402de" ], + "x-ms-request-id": [ "3abd4b8e-e71e-4a45-9b12-164a4fb8ff3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "85d8f6d4-e0d3-4a6f-92a1-543e4e0c71be" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115248Z:85d8f6d4-e0d3-4a6f-92a1-543e4e0c71be" ], + "x-ms-correlation-request-id": [ "1c4839f4-623f-4f39-91ce-67e16610aaad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015646Z:1c4839f4-623f-4f39-91ce-67e16610aaad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 124071122A844DECA4498B4A18318834 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58133620BC2F42DA9F9A940D41122981 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "600" ], - "x-ms-client-request-id": [ "97b0267b-dace-4360-8cd1-4759a5fef5d1" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "709" ], + "x-ms-client-request-id": [ "628fa007-6bd7-4a6c-b318-5ddf2bbbbaaa" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6311,44 +7047,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC5509DA8ED7D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7511edc0-4a65-4832-9d12-8c999e29f582" ], + "x-ms-request-id": [ "c73eee94-fc7f-4213-8f8d-58f546264ebe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fc33c2f6-a268-4798-93dc-ce99f460a9e0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115248Z:fc33c2f6-a268-4798-93dc-ce99f460a9e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bae96194-58e1-4555-b286-825e2ba40f36" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "e3cf4157-4da5-4d8b-95c5-a5477a65e44e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015654Z:e3cf4157-4da5-4d8b-95c5-a5477a65e44e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE439FC7DC90429A85D8E3C639EBCA08 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7361287627394C27A09D197FA0224C35 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:46Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": 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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+5": { + "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/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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "601" ], - "x-ms-client-request-id": [ "91bd4395-e5da-42b0-a9b9-45fd74600a80" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -6357,38 +7089,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "432eee22-2519-47c8-9cba-5a92e5a1966f" ], + "x-ms-request-id": [ "e1e0743a-fe98-42c1-9fd1-63b1b4cbf848" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4de9b67-0cc2-41c5-8ce9-b45530a03cb5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80da2b11-43b4-4c67-b515-23de203c5e36" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115249Z:80da2b11-43b4-4c67-b515-23de203c5e36" ], + "x-ms-correlation-request-id": [ "619e86af-0ee7-44fa-a50a-a8e3af9d9a43" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015654Z:619e86af-0ee7-44fa-a50a-a8e3af9d9a43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60AFFD018E2D4901A4898D1E9808FDC8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:48Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4966A30DD92145729FEB12088C1EF4A0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:54Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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/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-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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": [ "602" ], - "x-ms-client-request-id": [ "3f7e5883-cf96-4fa0-a3bf-cc252a3c4dca" ], + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "dfff5a4f-20de-495f-8eab-5b3769b09279" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6401,37 +7134,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe869a67-0264-4810-a5d4-bb7a37b38b53" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "x-ms-original-request-ids": [ "568fb601-6e45-415e-af6b-c4585361fe48", "afa98ac6-fe13-4842-bc7c-111c8f05ec68" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f4fb747e-fbfa-434a-ba39-15d14c2ee31e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115249Z:f4fb747e-fbfa-434a-ba39-15d14c2ee31e" ], + "x-ms-request-id": [ "6c8777d0-b462-4cde-bdd5-a132eeb612a4" ], + "x-ms-correlation-request-id": [ "6c8777d0-b462-4cde-bdd5-a132eeb612a4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015655Z:6c8777d0-b462-4cde-bdd5-a132eeb612a4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FEEF757873F4C9CB77ADA04DAA323AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8F53DF305C64DE98B0547519BF48EAD Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "10323" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-Linux-Consumption-le3f9v/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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "603" ], - "x-ms-client-request-id": [ "5e7fa3d3-e432-4e41-8304-4333bbc04790" ], + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "d820f8b1-cc21-4e51-9b79-b8c3184033e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6447,36 +7179,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3eb1e59-0232-49e6-bf14-15170882e2c7" ], + "x-ms-request-id": [ "e68f9a61-f018-4109-9490-2e81c05baa04" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1c7f0600-0665-45a9-9ecb-811c01734b76" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115249Z:1c7f0600-0665-45a9-9ecb-811c01734b76" ], + "x-ms-correlation-request-id": [ "14a19167-aee5-4cf0-87b2-e2d1445fe214" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015656Z:14a19167-aee5-4cf0-87b2-e2d1445fe214" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6A773A9A0454BFFACA9DB8FD71A8F19 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABB2730611214D76976C134E750CE51E Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:55Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "604" ], - "x-ms-client-request-id": [ "14942d98-c798-4930-be92-43494771b8fc" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "dce19982-d720-48d3-9d45-76e98d238f59" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6492,36 +7224,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a47f1e10-0f76-40ef-8313-4c9db8a8b320" ], + "x-ms-request-id": [ "01ab0fc2-ab8e-493e-bd91-c9fc23b9b377" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d0d27f2c-a4a8-4df3-8c77-c26b7ab9f064" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115250Z:d0d27f2c-a4a8-4df3-8c77-c26b7ab9f064" ], + "x-ms-correlation-request-id": [ "8507c7ff-48aa-40e7-a23a-eae608dcfb48" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015656Z:8507c7ff-48aa-40e7-a23a-eae608dcfb48" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75FBAA83590A44578D7D23F9B093AC52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31F9DA00F3BC4133BD03208F322D28DC Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "605" ], - "x-ms-client-request-id": [ "6834bb82-fd77-4218-84f7-8728e97233bd" ], + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "6f91ea7f-9fcd-4f67-a286-62c1211a596f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6537,38 +7269,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "705e14ae-c6c7-4827-8c6f-beffda953d52" ], + "x-ms-request-id": [ "2c02c710-ef82-4a65-bd2c-db17d5ac87f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "040a8ea2-1654-4434-9e1d-f81ba0c55158" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115250Z:040a8ea2-1654-4434-9e1d-f81ba0c55158" ], + "x-ms-correlation-request-id": [ "b67decb1-b19a-4880-b462-4827c4d1cb72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015656Z:b67decb1-b19a-4880-b462-4827c4d1cb72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 718294C744EB4A6EAF01E791ADFEA2DB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12D8F414A8BC40C3ADC922EDBC02A6C2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:56Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "606" ], - "x-ms-client-request-id": [ "f0d8bd0c-6370-47ef-beeb-0605cf383efc" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "cfe040cc-5865-41bb-82a1-a0563365e4e2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6581,38 +7313,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6560cd24-3d88-4f7e-ad84-26e3d22879a2", "61686afc-93c3-47b1-8dec-2b239ddc5495" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "91c23bd4-3883-4aa5-8bb1-1a53a91b6b6c" ], + "X-AspNet-Version": [ "4.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": [ "8237c167-65a3-4714-a786-6c63e3873b50" ], - "x-ms-correlation-request-id": [ "8237c167-65a3-4714-a786-6c63e3873b50" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115251Z:8237c167-65a3-4714-a786-6c63e3873b50" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-correlation-request-id": [ "1bf2d53f-8e1f-4d23-b34d-5a4c7227688b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015657Z:1bf2d53f-8e1f-4d23-b34d-5a4c7227688b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E1BDDEF98F949C297F0907C2B81067B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:50Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A7C07E3696242EFAF4335F9790DE892 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1814" ], + "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-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "607" ], - "x-ms-client-request-id": [ "e853cd61-e2af-42d8-bd6a-3ade0b1434e1" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "x-ms-unique-id": [ "716" ], + "x-ms-client-request-id": [ "702cfb68-e411-4318-9d34-0fcbefa06292" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -6625,31 +7358,165 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "aea28a01-c4a5-40ad-b416-20ca24a5560a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/9e010ec9-8183-4253-8b71-07a0c7eaca47" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a403f479-88d4-4bb4-811c-9d0e5a5961d8" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T115251Z:a403f479-88d4-4bb4-811c-9d0e5a5961d8" ], + "x-ms-request-id": [ "66d4f164-ddb6-470f-87f5-6d96f0b794bd" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4fa73ccc-0863-4095-9943-4aadbf10c81b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015657Z:4fa73ccc-0863-4095-9943-4aadbf10c81b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 466DD102CC8149ED819878542245E57F Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "717" ], + "x-ms-client-request-id": [ "ba4e8646-410a-45d6-8978-503659d12d66" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "68fdf178-1622-4b02-aafe-14791c081dfe" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eba7446b-c4ea-4838-b2f0-f64f6e24cf69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015658Z:eba7446b-c4ea-4838-b2f0-f64f6e24cf69" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8012BBF6CBF3453585473FA24BDD41AF Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:57Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1691" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "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": [ "718" ], + "x-ms-client-request-id": [ "95c03fc9-5e8d-4566-8ece-45fd226e9c21" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ec6b4fe7-45ef-4e18-899e-20f0bdaef4e1", "7c568650-a778-4054-93e8-c6ebee8324ef", "ad1d988c-2be4-4352-b7c5-14bfbb0b6d5e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "b0b1f9ab-65a8-4694-af76-ada7bac82630" ], + "x-ms-correlation-request-id": [ "b0b1f9ab-65a8-4694-af76-ada7bac82630" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T015659Z:b0b1f9ab-65a8-4694-af76-ada7bac82630" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ABE4C6CE95974F3CB5B4A9EB0A767406 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:58Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "719" ], + "x-ms-client-request-id": [ "efc27654-4781-4d9d-a154-95edcbbd7901" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "13924e73-95f7-4efe-b72a-967ac6ed5026" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b4f67910-d884-495e-b740-d11b91cb67f1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ffce7fd0-6681-4d66-8ba0-353d7ede9cba" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015659Z:ffce7fd0-6681-4d66-8ba0-353d7ede9cba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F45062F6AD64CAF9975EB41C0717D27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:51Z" ], - "Date": [ "Wed, 12 Nov 2025 11:52:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4C2667CFF2E4B72BFFC9CCD3D11D9B2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:59Z" ], + "Date": [ "Fri, 14 Nov 2025 01:56:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01+12": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-u074f23mpl\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6663,39 +7530,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAE124F36B\"" ], + "ETag": [ "\"1DC5509F8002D20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a816631-6aeb-49ad-b9c7-7c169affc476" ], + "x-ms-request-id": [ "af73cfcb-ca9d-43df-af9f-8c6526ad6209" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91815eb3-dae1-49b4-bce7-7f6e136f0282" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45c28f1f-3130-4cfe-a549-1074dc2fd14f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "6b052346-ccbf-4ef1-9318-8e10e691fd81" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115334Z:6b052346-ccbf-4ef1-9318-8e10e691fd81" ], + "x-ms-correlation-request-id": [ "b6d0f786-c736-4c90-89e6-5c9ccfffa7c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015742Z:b6d0f786-c736-4c90-89e6-5c9ccfffa7c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 36D07764D4624254884EDF3B8B1F82B5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:52:52Z" ], - "Date": [ "Wed, 12 Nov 2025 11:53:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32A8D2E4A52A4301BC6CE5AE8887BB90 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:59Z" ], + "Date": [ "Fri, 14 Nov 2025 01:57:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8514" ], + "Content-Length": [ "8507" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:52:53.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\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:01.0366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "609" ], - "x-ms-client-request-id": [ "b810916c-8006-402a-8832-2952cd0523b6" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "103f57f3-437b-440b-8c5e-65c5738064d3" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6709,38 +7576,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAF954F7AB\"" ], + "ETag": [ "\"1DC550A102B1B4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ed473cf-8498-4317-8d0b-691930a2b7c6" ], + "x-ms-request-id": [ "dda868bf-0f09-4cba-bb0d-ae455f0f826a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e2ddba87-6c2c-4c01-8004-054b7b4b375e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115405Z:e2ddba87-6c2c-4c01-8004-054b7b4b375e" ], + "x-ms-correlation-request-id": [ "1527e8db-5fb6-4021-b804-0b68ae117935" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015812Z:1527e8db-5fb6-4021-b804-0b68ae117935" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD83E7C0D2534AA18DD6064D000ADD80 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E408CB300844946A270BCC7E428C9E4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:12Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:53:34.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "610" ], - "x-ms-client-request-id": [ "09c43a84-53fb-42a2-836a-4c709b1d7d10" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "874f70cc-3e79-41e0-a22e-6a974fc80fe6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6755,38 +7622,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAF954F7AB\"" ], + "ETag": [ "\"1DC550A102B1B4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a283291c-8564-4f0b-837f-24ec1309d04e" ], + "x-ms-request-id": [ "b63acc71-7c6e-4717-9cb5-3894665d055b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f29b711a-a377-4ac0-a058-14af36d79b1c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115405Z:f29b711a-a377-4ac0-a058-14af36d79b1c" ], + "x-ms-correlation-request-id": [ "68c8b136-3ba3-4a60-ab5a-92f36e8d07eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015813Z:68c8b136-3ba3-4a60-ab5a-92f36e8d07eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 234B7EAB75644132967CCF2E5E46215C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B8046CDED7E4A368CC455DD613EF196 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:53:34.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "611" ], - "x-ms-client-request-id": [ "a4c55811-aaeb-4b95-b02b-05117a6ec783" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "91b5e67b-bc81-41e0-8c0c-8dec247e8498" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6802,36 +7669,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af4191d7-faea-47d9-968b-dfa19fe26302" ], + "x-ms-request-id": [ "86c86354-d459-4471-8c72-10c4c5e0752c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbb81df8-cd63-4211-886e-83c00a76e577" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/959d9c31-c134-46ff-92d7-6c9659fcaff3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "893c5633-0643-4d57-b4ce-9ab544a9320b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115405Z:893c5633-0643-4d57-b4ce-9ab544a9320b" ], + "x-ms-correlation-request-id": [ "50c464b0-0d96-4c71-9ce1-e9ac9bbc4e0e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015813Z:50c464b0-0d96-4c71-9ce1-e9ac9bbc4e0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD9A266E39574ACFA352A3C4155F734D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6E24ABE43274D7D8DBE966D6B31CE1F Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "612" ], - "x-ms-client-request-id": [ "2f6ebfa2-7966-44c4-bf7c-0069e7ec073d" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "4ad5664c-6cb8-4461-a812-ca123403d118" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6847,37 +7714,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3940108e-1631-4982-9433-abb649f0e58d" ], + "x-ms-request-id": [ "bd0c3160-64b1-41a8-a85a-e1b9c205aa43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1b7e170-e811-46c6-9c37-0066cf7329bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a894beba-05bb-4e89-9e44-7da11e5cf447" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e15ff54b-1156-4726-b9ec-697230dc06b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115406Z:e15ff54b-1156-4726-b9ec-697230dc06b7" ], + "x-ms-correlation-request-id": [ "e3672aaf-6fae-4e08-bf08-6c34e4c306db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015813Z:e3672aaf-6fae-4e08-bf08-6c34e4c306db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FA396C2092B4CF3890F11EF54DC03C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:05Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAB91511CFB6439E947E8ED49ADAAE80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "613" ], - "x-ms-client-request-id": [ "40ff1854-1a85-4dfe-847f-3a964bb85cca" ], + "x-ms-unique-id": [ "725" ], + "x-ms-client-request-id": [ "57d22844-fe22-4443-98a4-b4bcb947aaf1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6893,36 +7760,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a398d2eb-8d4b-4c26-bd25-1b040d32b6cf" ], + "x-ms-request-id": [ "5714ae94-0a55-4c2a-9fc8-c8be71021e4a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a5e1884a-addc-49f2-9999-a497c49cb1b6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f46afedf-43f0-4ecd-8775-76218f95e249" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b5e8e222-e338-4016-9789-88cc1372f3e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115406Z:b5e8e222-e338-4016-9789-88cc1372f3e2" ], + "x-ms-correlation-request-id": [ "7e1b4e3a-bb60-4fcf-897b-abdebc1c5d1e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015814Z:7e1b4e3a-bb60-4fcf-897b-abdebc1c5d1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 733C068FFE2440B19703C17BC328832D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB6BD9DEA6A84EFA8C359D7AC4E563DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "614" ], - "x-ms-client-request-id": [ "d38fced2-2bfb-4e48-9775-bb225e0c176a" ], + "x-ms-unique-id": [ "726" ], + "x-ms-client-request-id": [ "4b9de9f1-ec25-442c-a87f-0dde4dd966f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6937,38 +7804,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAF954F7AB\"" ], + "ETag": [ "\"1DC550A102B1B4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85a06ad4-43ad-40bd-8863-2a2ef9c6759c" ], + "x-ms-request-id": [ "a5f490cb-d068-4639-a05d-046f038f65a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66322a3e-e889-42c9-85c2-277743556d96" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115406Z:66322a3e-e889-42c9-85c2-277743556d96" ], + "x-ms-correlation-request-id": [ "55fcbdb3-6b34-4a52-a944-990fe510c649" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015814Z:55fcbdb3-6b34-4a52-a944-990fe510c649" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D412F701DBF04010B2FD4BDB04C52C88 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A86F335EB6E4F949383D56A63923E85 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:14Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShellTest-u074f23mpl\",\"repositorySiteName\":\"Functions-PowerShellTest-u074f23mpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"functions-powershelltest-u074f23mpl.scm.azurewebsites.net\"],\"siteProperties\":{\"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-u074f23mpl.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-u074f23mpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:53:34.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-u074f23mpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-u074f23mpl\\\\$Functions-PowerShellTest-u074f23mpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershelltest-u074f23mpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01+19": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "615" ], - "x-ms-client-request-id": [ "5d65563b-9afb-41eb-984b-8baa9a92ed90" ], + "x-ms-unique-id": [ "727" ], + "x-ms-client-request-id": [ "a620932c-ebfe-4337-874e-1d11d52b8eae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6984,36 +7851,173 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b89445d7-7c89-4a59-881b-090c92c7bb53" ], + "x-ms-request-id": [ "5eb2dbbb-ac3e-43a2-97c0-9354a198e4f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d12be71-f589-4d60-a156-1a85004dd8d8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1418d4b6-8e28-4dff-9a70-859dacc151c1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3f947746-b26e-4ed0-b03e-d0fc70b4a24d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115407Z:3f947746-b26e-4ed0-b03e-d0fc70b4a24d" ], + "x-ms-correlation-request-id": [ "b49ddc72-0668-4121-bd60-2697f9d3cb1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015814Z:b49ddc72-0668-4121-bd60-2697f9d3cb1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F10371B8C74A4001B0204680452AD734 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:06Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18EA72377C834425A03080D2A042D862 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:14Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-u074f23mpl\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "616" ], - "x-ms-client-request-id": [ "79a3c0da-9593-4662-8d08-16e450cb3c26" ], + "x-ms-unique-id": [ "728" ], + "x-ms-client-request-id": [ "e0079c71-b20a-476d-978a-c516b25e61ef" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "b4c4b2e1-da7a-450a-9dea-f45d179e09a9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6372231f-0d17-48f6-925f-8e9668b90998" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eb55e326-70ce-4595-ae51-26a06899ac8e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015815Z:eb55e326-70ce-4595-ae51-26a06899ac8e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2C5D67FFCEA14F229D9E6919B4B7447D Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:15Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4191" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "8c4c522e-3a75-40d4-a555-831314f3a550" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A102B1B4B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7e4e44a0-2efe-49c2-9d1a-4b92b5887b03" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e66c9f96-6d51-4562-b778-e0de3ba20192" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015815Z:e66c9f96-6d51-4562-b778-e0de3ba20192" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0DDF993DF2704F029D9E989E1C8459BC Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:15Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8481" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "d74b141a-8b62-40a2-b91e-7ef7ef4ce60e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0266d80b-79c8-4836-90b1-0731228dc197" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2edc30f7-00af-4a76-b60a-80e21fca8cfb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "cd8a0b3c-fd20-465f-848b-a3b12fec6be6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015816Z:cd8a0b3c-fd20-465f-848b-a3b12fec6be6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2045D3C0EC9C46809582ED762A3C3561 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:15Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1119" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "733ea0cd-c2ce-4aaa-aff7-ceea85307127" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7029,37 +8033,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e559b4e-f24b-4349-a715-5cc0ed38d124" ], + "x-ms-request-id": [ "edd9a844-e274-4adb-9982-c326b685e721" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5631dccb-6136-4367-8f20-3d0f0c7cbc38" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1d30ab9-c6e5-4d0c-be38-fef6b213706e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "94ce6b0a-97e0-400f-aa9c-d9389d6cd226" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115407Z:94ce6b0a-97e0-400f-aa9c-d9389d6cd226" ], + "x-ms-correlation-request-id": [ "36a6a1c1-3c0b-49ca-b425-4f69e059b939" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015816Z:36a6a1c1-3c0b-49ca-b425-4f69e059b939" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F822E860F9B42649EA6AE566C485BB1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:07Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 587A37F8BBB14F1EB0E506B72EE81628 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:16Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl/config/web\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "732" ], + "x-ms-client-request-id": [ "149f3793-98f3-4261-a913-57b9599f7adc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "32116f15-3241-446f-8ddb-f479109f23e0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c1d0494e-9044-4720-9aa3-82a02881844f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015816Z:c1d0494e-9044-4720-9aa3-82a02881844f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C9C8EFF399F04F1EAF5E77BBD25E62FE Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:16Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShellTest-u074f23mpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "617" ], - "x-ms-client-request-id": [ "108afc12-7fb1-4ed1-b579-2ea3e6ea32c5" ], + "x-ms-unique-id": [ "733" ], + "x-ms-client-request-id": [ "7dd0b3d5-81c9-4565-a23f-b41f205d5505" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7074,20 +8123,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CAF954F7AB\"" ], + "ETag": [ "\"1DC550A102B1B4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8dc0a8f-5147-4b48-a560-88b8047284d2" ], + "x-ms-request-id": [ "19262633-9e78-4016-83c5-10d8facb97e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33c062c8-7cc7-410d-be32-3c8534315f3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c7fcea3-cb97-46cc-83db-31263dd9f78f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f4cc6d75-5c02-4ec2-ae42-80c358aca52e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115416Z:f4cc6d75-5c02-4ec2-ae42-80c358aca52e" ], + "x-ms-correlation-request-id": [ "d7e2dd38-5823-43f5-a6de-7c5dc2439080" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015824Z:d7e2dd38-5823-43f5-a6de-7c5dc2439080" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6971F9A77A6D4411A2D660DDD086A7BE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:07Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E25ED6EE1C87437D8389BA8E2970BD5F Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:16Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7101,7 +8150,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-pxi52b0hul\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-la9uw4623c\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7116,18 +8165,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96ad524a-d6a6-4c56-a2cb-d8f45365a0d8" ], + "x-ms-request-id": [ "606b20e8-89fe-456e-bc76-91c302d10df0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/170f8d3d-e2ef-4578-ac81-785f92ea02e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/885580b9-7fa8-4d0b-9354-5d1666d062f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "893d21c7-3ead-41e9-80fd-faa51ed46d6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115417Z:893d21c7-3ead-41e9-80fd-faa51ed46d6f" ], + "x-ms-correlation-request-id": [ "981d4ca6-261c-4c1e-801f-5cd056cf2c44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015825Z:981d4ca6-261c-4c1e-801f-5cd056cf2c44" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91336EC5FD364331AF2042AB85CF67AC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:16Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91D4EC5515344C38ACBFFCF843CC4FC6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:24Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7145,8 +8194,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "15666eff-f5df-433c-b2ed-32dd4a8f26cf" ], + "x-ms-unique-id": [ "735" ], + "x-ms-client-request-id": [ "585751dd-67d7-4aa2-9c47-f22dc93d8c71" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7162,18 +8211,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50a3e991-d56d-49bd-9263-745f5986737f" ], + "x-ms-request-id": [ "344d2bfa-0580-4daa-a5c3-fb0f552d7505" ], "X-AspNet-Version": [ "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/4a3a2c68-c543-4e76-af85-b45bbcc3c9ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2a0d88ae-f045-4df2-ad02-389df07472a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b11d9822-edff-45ba-8f45-cc6dcc5e57c2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115417Z:b11d9822-edff-45ba-8f45-cc6dcc5e57c2" ], + "x-ms-correlation-request-id": [ "b578014a-bd10-4f94-a5ce-d991a11ca727" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015825Z:b578014a-bd10-4f94-a5ce-d991a11ca727" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9179E3493571463BA996821C85A79A39 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4AF6162E9CD3409D9D36D751D81D6BFE Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37704" ], @@ -7191,8 +8240,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "620" ], - "x-ms-client-request-id": [ "9e893c63-0588-4a08-91bb-8c350beaa7de" ], + "x-ms-unique-id": [ "736" ], + "x-ms-client-request-id": [ "a140ee33-c8e9-481b-925c-1a351f033195" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7207,36 +8256,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "15b8bbdb-7618-406d-9973-bc95d877f88d", "9b696c76-c7ef-4d49-a32f-ad72b6bbdecc" ], + "x-ms-original-request-ids": [ "2e0d1ea3-4e17-40fe-a098-95452b7ae7ba", "3f7e6050-7592-46f4-8399-e2979a1b20b3", "f0a4af07-8d65-4685-ac75-7a65b5b3b422" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d30e3f46-3309-4ef1-a7f8-1d563df76145" ], - "x-ms-correlation-request-id": [ "d30e3f46-3309-4ef1-a7f8-1d563df76145" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115418Z:d30e3f46-3309-4ef1-a7f8-1d563df76145" ], + "x-ms-request-id": [ "7d7d850a-2687-40c6-849e-f516cde76a97" ], + "x-ms-correlation-request-id": [ "7d7d850a-2687-40c6-849e-f516cde76a97" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015825Z:7d7d850a-2687-40c6-849e-f516cde76a97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42A26429285C467AB6C7E39B8D0F80E8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A924E2E47E714F3C807E439167F2E166 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "621" ], - "x-ms-client-request-id": [ "4e0bd0be-0db9-4c56-8ef0-610506e0d4d7" ], + "x-ms-unique-id": [ "737" ], + "x-ms-client-request-id": [ "4a04c075-4cc8-4f14-aa8f-105c4b64ba93" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7251,30 +8300,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0c46d4d0-29d0-4c70-ad2a-a5d2a8d9dccd" ], + "x-ms-request-id": [ "10830dc7-0085-4649-b80a-8c49675db749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9f06cbf-e630-44a1-9beb-3dc1a9335ca7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6849be27-51cf-41d9-871f-d66b2397485f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0a713e20-4b76-4b11-9f42-057786914a5f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115418Z:0a713e20-4b76-4b11-9f42-057786914a5f" ], + "x-ms-correlation-request-id": [ "3a55a214-6ff2-4f56-bc22-3afb2987c757" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015826Z:3a55a214-6ff2-4f56-bc22-3afb2987c757" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0144C641462F4189B266F6BAF7447560 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1FA176B9A0A484CB9D41D60B8B70045 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"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-cjes6i/providers/Microsoft.Insights/components/Functions-Java-pxi52b0hul?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-le3f9v/providers/Microsoft.Insights/components/Functions-Java-la9uw4623c?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-cjes6i/providers/Microsoft.Insights/components/Functions-Java-pxi52b0hul?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Insights/components/Functions-Java-la9uw4623c?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": { @@ -7294,30 +8343,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c90780f-8e5f-43c5-a409-cf5c88ee1e11" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e0b0dacf-9c4a-4be1-a84e-27b351f8b3ea" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "3e10c81f-6de7-4679-bb28-bf111d3eaab6" ], - "x-ms-correlation-request-id": [ "3e10c81f-6de7-4679-bb28-bf111d3eaab6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115425Z:3e10c81f-6de7-4679-bb28-bf111d3eaab6" ], + "x-ms-request-id": [ "4c6d24ae-53cf-4431-a7be-103c075c7104" ], + "x-ms-correlation-request-id": [ "4c6d24ae-53cf-4431-a7be-103c075c7104" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015831Z:4c6d24ae-53cf-4431-a7be-103c075c7104" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 814F83696B8E422EA7429FD25432F734 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E2B55DE62224D12A032E720EAD4A144 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7206d49f-0000-0300-0000-691475710000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Java-pxi52b0hul\",\r\n \"name\": \"Functions-Java-pxi52b0hul\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-pxi52b0hul\",\r\n \"AppId\": \"ec32f43d-e585-4348-9f48-b7426ac14ba7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"391f0399-d4c9-408d-9ee9-e4a7e7611b1f\",\r\n \"ConnectionString\": \"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\",\r\n \"Name\": \"Functions-Java-pxi52b0hul\",\r\n \"CreationDate\": \"2025-11-12T11:54:19.3903837+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-pxi52b0hul_ec32f43d-e585-4348-9f48-b7426ac14ba7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-pxi52b0hul-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\": \"\\\"0907f997-0000-0300-0000-69168cc70000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Java-la9uw4623c\",\r\n \"name\": \"Functions-Java-la9uw4623c\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-la9uw4623c\",\r\n \"AppId\": \"05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"648968d1-9cd1-4892-b588-9346d9996b83\",\r\n \"ConnectionString\": \"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\r\n \"Name\": \"Functions-Java-la9uw4623c\",\r\n \"CreationDate\": \"2025-11-14T01:58:26.5139808+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-la9uw4623c_05eee5e2-fef4-4c8b-b5fb-f8c7393746f2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-la9uw4623c-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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-pxi52b0hul\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"\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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-la9uw4623c\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7331,39 +8380,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB18FCE90B\"" ], + "ETag": [ "\"1DC550A2EF1BA60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3085713e-9d2e-4e18-8c21-73eeeb7446be" ], + "x-ms-request-id": [ "f58cb139-45b7-45c6-b0a5-dd092899734f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa614777-6209-46f9-a5e5-b348d79e27c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b538c31a-1a0d-4a48-a8ee-be4baa9ca917" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e98d0e3d-71ae-4d2b-9b23-a7061d1b380d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115446Z:e98d0e3d-71ae-4d2b-9b23-a7061d1b380d" ], + "x-ms-correlation-request-id": [ "8d91620d-9dee-4dc1-8b55-24b943238d05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015853Z:8d91620d-9dee-4dc1-8b55-24b943238d05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D31ED0196834C259027C8D799027A56 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:54:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:54:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8CF192A6BFF34C4798ED0E858C8AF9F1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:31Z" ], + "Date": [ "Fri, 14 Nov 2025 01:58:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8725" ], + "Content-Length": [ "8264" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:26.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:33.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "624" ], - "x-ms-client-request-id": [ "076f4caa-95cd-4617-88fa-a43cc46372de" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "353b095e-8447-4b78-b31e-cde5215fc9ff" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7377,38 +8426,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB242BF7C0\"" ], + "ETag": [ "\"1DC550A3A6677A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b7b8c481-183c-4abb-8442-1518f4b927dc" ], + "x-ms-request-id": [ "37de4d7a-75fd-418c-871d-ef07d2ae8d4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "770c241d-411d-478f-b3e2-6b16954b91c1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115517Z:770c241d-411d-478f-b3e2-6b16954b91c1" ], + "x-ms-correlation-request-id": [ "2c37588a-acdf-4868-b8d0-1a62cdf7d6ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015923Z:2c37588a-acdf-4868-b8d0-1a62cdf7d6ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74DC459E554B445E86010C35F0F5C46F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1280D9458DF4D8E8C9DBF7E4198A8A1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8709" ], + "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:46.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\":\"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-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "625" ], - "x-ms-client-request-id": [ "e7187430-8f99-477f-8b45-5598bade812c" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "2d62f6b3-2a4f-417d-8e18-ea68bf5ace76" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7423,38 +8472,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB242BF7C0\"" ], + "ETag": [ "\"1DC550A3A6677A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e077c58-fff6-4439-8b0f-ea7608bc02b6" ], + "x-ms-request-id": [ "2a8383d2-96de-447a-b90d-41b2468e9489" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8fb1bca5-5136-4dc3-88ce-4adeb467325d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115517Z:8fb1bca5-5136-4dc3-88ce-4adeb467325d" ], + "x-ms-correlation-request-id": [ "3e93736d-a32b-4384-a592-6d97159ef993" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015924Z:3e93736d-a32b-4384-a592-6d97159ef993" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FE8885D1485409885FD7A24FD270747 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 02652AE72EB5415B83B3E9EDF6160B5D Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:23Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8709" ], + "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:46.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\":\"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-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "626" ], - "x-ms-client-request-id": [ "ac123c60-aec6-4ba3-bd2f-b1276ae6ea32" ], + "x-ms-unique-id": [ "742" ], + "x-ms-client-request-id": [ "0319502f-9106-40c2-afec-850810cc50d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7470,36 +8519,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1a7a451-20e0-4d21-afad-d7ae6d9f7f3a" ], + "x-ms-request-id": [ "0c1a6a97-25a6-4c69-9fa7-1a9283e22e55" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/556d7955-4b20-4e46-b085-5126273682bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/906fccfd-5bb8-405d-859b-f19d809f880b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4db0e189-0884-4687-be8b-9d7ff14e4b54" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115517Z:4db0e189-0884-4687-be8b-9d7ff14e4b54" ], + "x-ms-correlation-request-id": [ "458585fc-6a75-4204-913c-cfb65ee66fff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015924Z:458585fc-6a75-4204-913c-cfb65ee66fff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 624357481C2047EF9AAE78363B43FB99 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:17Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C71E1DBE3F6342E1A6EECF3EC328E31D Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:24Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-pxi52b0hul\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "627" ], - "x-ms-client-request-id": [ "4a31ee22-105f-40d0-9886-11f3caf219d7" ], + "x-ms-unique-id": [ "743" ], + "x-ms-client-request-id": [ "3d5738f1-f5b8-4c0f-ada2-27ddeea5410a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7515,37 +8564,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38d167c0-3d9c-4ddb-96d2-0dc0f1673714" ], + "x-ms-request-id": [ "ecd7df07-ec41-400b-b573-85d2130b6968" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c2987be4-b870-4789-9bef-db88c9693592" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b72afeb6-e11c-4a6a-912e-1f0340789f6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b260e870-0117-49f9-bd37-707a1ef6040b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115518Z:b260e870-0117-49f9-bd37-707a1ef6040b" ], + "x-ms-correlation-request-id": [ "5f12ddd8-2470-401b-8f1c-1bd4b1dca834" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015924Z:5f12ddd8-2470-401b-8f1c-1bd4b1dca834" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6C1A3732FD0485782FE16531891E755 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53C7E64B51BA448E8784C0B967BE8724 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:24Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/web\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "628" ], - "x-ms-client-request-id": [ "1189ec1b-52a4-4bf2-b00b-f41a68c9650f" ], + "x-ms-unique-id": [ "744" ], + "x-ms-client-request-id": [ "7a36d758-fea1-4aaa-b860-8662fb62385e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7561,36 +8610,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44a40fd2-5ddd-4785-9413-aa1122f0e454" ], + "x-ms-request-id": [ "3175037a-adc6-49ec-a148-c960a00666d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5bd82b37-ed08-4a26-a792-e5b6146d2f14" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15e564ee-f243-4fee-8128-88668d0d0ade" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9929a54a-fa5e-4acb-b94c-6a082c312fd0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115518Z:9929a54a-fa5e-4acb-b94c-6a082c312fd0" ], + "x-ms-correlation-request-id": [ "ec4029e0-df34-4fe9-928d-6a2e63e59856" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015925Z:ec4029e0-df34-4fe9-928d-6a2e63e59856" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A0A53F1E6A84A458B512A1192B096FF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF6C8C74C84B4EBBA3090501E7207424 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:24Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-pxi52b0hul\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "629" ], - "x-ms-client-request-id": [ "0ff40e6e-0650-4585-a760-b702e30debd5" ], + "x-ms-unique-id": [ "745" ], + "x-ms-client-request-id": [ "5ce8cb8e-175e-4332-b820-aaba0f2aaf3a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7605,38 +8654,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB242BF7C0\"" ], + "ETag": [ "\"1DC550A3A6677A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "501a3b7e-ec61-42f6-98cc-8b112f4804e9" ], + "x-ms-request-id": [ "a4271e36-5691-4875-bd91-032dfec3d9ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1be90f9-8f27-4847-a37f-a847553d219f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115518Z:c1be90f9-8f27-4847-a37f-a847553d219f" ], + "x-ms-correlation-request-id": [ "998c36f3-580b-44df-9915-0e0a58403d9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015925Z:998c36f3-580b-44df-9915-0e0a58403d9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95838F30C7764EADA7A799DD5A78016A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:18Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88C00E1FDBC0444FB613A3ADBE3703A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8709" ], + "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-pxi52b0hul\",\"state\":\"Running\",\"hostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Java-pxi52b0hul\",\"repositorySiteName\":\"Functions-Java-pxi52b0hul\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-pxi52b0hul.azurewebsites.net\",\"functions-java-pxi52b0hul.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-pxi52b0hul.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-pxi52b0hul.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:54:46.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\":\"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-pxi52b0hul\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-pxi52b0hul\\\\$Functions-Java-pxi52b0hul\",\"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-cjes6i\",\"defaultHostName\":\"functions-java-pxi52b0hul.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "630" ], - "x-ms-client-request-id": [ "0453759c-3629-4ab0-b2dc-303fe1926c5d" ], + "x-ms-unique-id": [ "746" ], + "x-ms-client-request-id": [ "f6eeeb47-24af-4254-8538-c194760f2d8f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7652,36 +8701,173 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1194ba97-7314-46fc-a0c6-a5cf40e7eb35" ], + "x-ms-request-id": [ "7b44d1ab-2c83-417d-ac7a-ad0df2c95878" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76a34d78-f4c5-4b2b-94bb-42e2cdb0c941" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5bf7fa98-2bcd-4eb6-8122-89f222e40a52" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c15f2961-a97d-48f2-91ba-afc254732b96" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115519Z:c15f2961-a97d-48f2-91ba-afc254732b96" ], + "x-ms-correlation-request-id": [ "55e42720-57f9-4f75-93b8-ccb10a136c51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015925Z:55e42720-57f9-4f75-93b8-ccb10a136c51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1B6EF39ACB74EBB96BE05D5E34B11F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE326629FF4540F6B0AC017B319E8853 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-pxi52b0hul\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "631" ], - "x-ms-client-request-id": [ "ecc6c12a-c8a0-4b4e-b66b-2b5fd781dabb" ], + "x-ms-unique-id": [ "747" ], + "x-ms-client-request-id": [ "208ef877-749d-4559-b96f-3e6f90d1093f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "f1e9761f-92d0-4be3-b70c-a75351e3ed0e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4724e731-f1f0-499a-ac0f-2dc5171e9046" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "35439e55-7272-49dd-85fe-9a410e073fc2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:35439e55-7272-49dd-85fe-9a410e073fc2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F416D33636044619AADD05A198163F80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:25Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4180" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "748" ], + "x-ms-client-request-id": [ "2b386e8a-f9fa-40e2-9dfe-36d80d6d2604" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A3A6677A0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8f69c012-1426-4c00-8b4d-b44a6907d793" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4bfdb2c5-9191-49b9-beea-f30350d8d83e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:4bfdb2c5-9191-49b9-beea-f30350d8d83e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 119FBF2227854E4C8CD8E31E289005E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8247" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "749" ], + "x-ms-client-request-id": [ "1e665245-defd-4477-a985-cdd1c9232270" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2a9def7d-cbf6-4504-83fd-4ee202066d8e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f27e6431-e322-4add-bd4d-b6510f4d327b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bb24ce7a-8686-4a22-8296-a2e43826df3a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:bb24ce7a-8686-4a22-8296-a2e43826df3a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B0696303139F41F6A9F5113B94093787 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1207" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", + "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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "750" ], + "x-ms-client-request-id": [ "415f17cb-d383-4827-ac54-8f3d30a80702" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7697,37 +8883,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c28f7a72-65e0-4ce2-8047-24674ea2439c" ], + "x-ms-request-id": [ "88451744-9ab2-4ba1-84cb-b4274e011684" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/618fd597-f488-43e3-811d-e12983fb1085" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f8ed57f-d263-4648-ace5-62a5a179124e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b6db308-cf51-48b6-9c11-b205e98ca8d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115519Z:5b6db308-cf51-48b6-9c11-b205e98ca8d7" ], + "x-ms-correlation-request-id": [ "e767f8d1-c2a8-4f63-b309-4c9bf1ae68bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:e767f8d1-c2a8-4f63-b309-4c9bf1ae68bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A712481F15A44B3865E73F5CD20E5E8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6062519764C74778A4E6D2187137DE25 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:26Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul/config/web\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "751" ], + "x-ms-client-request-id": [ "7e3f0173-065e-4b3b-8874-1207b8277ebc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f2b2ec7f-e530-4fcd-898b-bca66e8a00b1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a528c7c8-8502-4638-8c51-88d0382d08f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015927Z:a528c7c8-8502-4638-8c51-88d0382d08f6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D472CEC6FFA749CDB00120C3066DF4BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1817" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Java-pxi52b0hul?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "632" ], - "x-ms-client-request-id": [ "d313299f-26c5-4bc2-adf9-6d75de98a98d" ], + "x-ms-unique-id": [ "752" ], + "x-ms-client-request-id": [ "eb9eb8b9-8134-4e8b-ab70-d8d6e62a6ad7" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7742,20 +8973,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB242BF7C0\"" ], + "ETag": [ "\"1DC550A3A6677A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5dd404f9-d8d2-4447-a5db-b67c27bb6293" ], + "x-ms-request-id": [ "46415c81-7358-46d9-aca5-793f5c140fdd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9662e5ec-425f-475e-b21d-022d2630855a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17761fd3-9436-4bb1-ab24-a3802772e5e8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "81805e3e-1d62-41c3-8131-6f00522e6953" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115526Z:81805e3e-1d62-41c3-8131-6f00522e6953" ], + "x-ms-correlation-request-id": [ "459d0527-b4d9-49b1-a6e9-9fde38728021" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015934Z:459d0527-b4d9-49b1-a6e9-9fde38728021" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5AF5E4C299440F6B25386911FC57603 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:19Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7E36C25071546E1A78E8F8DC42B4CCC Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:27Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7769,7 +9000,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Node-qb4h0d3z2x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-zur6igjh15\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7784,18 +9015,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ead5d360-7fcb-46da-b709-5b40fd2dc5e4" ], + "x-ms-request-id": [ "27f29a7e-f9fc-43a4-be32-e0521ccc0c1f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15699eee-acfa-4ac9-ad43-ac7597f41607" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7eb25314-b20e-4ebd-b448-95ff196ca374" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "565b8d05-acc8-48cb-882c-a3e18f75be04" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115527Z:565b8d05-acc8-48cb-882c-a3e18f75be04" ], + "x-ms-correlation-request-id": [ "8c46e202-f1ce-4b8d-984f-112a511a08df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015934Z:8c46e202-f1ce-4b8d-984f-112a511a08df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC857CDEA2A24C1BBD6B3FF1A812A7E4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E09A82F5E5A4CC0AEBF9AB1F5F57094 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:34Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7813,8 +9044,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "634" ], - "x-ms-client-request-id": [ "e4e40ec5-fb00-4ee7-9646-bd0f6e2ebfb5" ], + "x-ms-unique-id": [ "754" ], + "x-ms-client-request-id": [ "f64bcdb2-e27d-46e5-a060-a971e2ca7dec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7830,18 +9061,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87b9c0b2-0537-455d-adc4-0c5225ea67e7" ], + "x-ms-request-id": [ "31a5659c-620a-4513-881a-0bd5f9655667" ], "X-AspNet-Version": [ "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/ab527900-1f24-4c93-814a-441eea50d011" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/56c21052-a33f-4d8a-ba0e-cd3389f09a7c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ddc6054b-8d51-49f7-b397-096191534cdd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115527Z:ddc6054b-8d51-49f7-b397-096191534cdd" ], + "x-ms-correlation-request-id": [ "32849701-8537-47c0-bd57-b287edcf89c4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015935Z:32849701-8537-47c0-bd57-b287edcf89c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D72BC51734CE42E388E964AF3C3E3BD4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55FCCE45BE7A47B7813DE20142612E33 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37704" ], @@ -7859,8 +9090,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "635" ], - "x-ms-client-request-id": [ "530d3bfd-d5e8-4378-93ac-0dda0aed65eb" ], + "x-ms-unique-id": [ "755" ], + "x-ms-client-request-id": [ "b47ec3e7-e4eb-4cc6-afc7-17a0dcddfc5c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7875,36 +9106,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "bbd620c0-f56f-48c4-abf2-c3d8433749d2", "7fce4e04-6d3e-4fcc-9457-22076c639aa0" ], + "x-ms-original-request-ids": [ "9dd9d114-e973-4028-a419-21ec9e5c1767", "7e495607-644c-4ccd-9d19-d6570ca73cb4", "45e1269d-b4fb-4899-8a6c-e29e8f900dfa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d6dded7b-c6d5-452d-b0b7-54d938abcc99" ], - "x-ms-correlation-request-id": [ "d6dded7b-c6d5-452d-b0b7-54d938abcc99" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115528Z:d6dded7b-c6d5-452d-b0b7-54d938abcc99" ], + "x-ms-request-id": [ "511e08c4-6aa5-413b-8980-26a7657aa9ec" ], + "x-ms-correlation-request-id": [ "511e08c4-6aa5-413b-8980-26a7657aa9ec" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015935Z:511e08c4-6aa5-413b-8980-26a7657aa9ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBF41935AC4D492ABA7A62B54B09F4EC Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FD9A36FDB5E49DAB680028AFE63510C Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "636" ], - "x-ms-client-request-id": [ "ca1ef50a-860c-4f72-9709-117629673760" ], + "x-ms-unique-id": [ "756" ], + "x-ms-client-request-id": [ "f5120a9b-9dd5-41d5-b6ea-27afc1053750" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7919,30 +9150,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "95f6276a-b172-4df4-aae5-2d15c29867ab" ], + "x-ms-request-id": [ "540649e3-1521-4b9a-90f0-bd49a9ccb63d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8a3fa15a-a4b7-45af-b20b-ab7bba9408b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2f297da7-4a4d-4a70-ac29-4c5ea95affe1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "afdd996c-20a2-4eb2-99cb-8b879db50347" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115528Z:afdd996c-20a2-4eb2-99cb-8b879db50347" ], + "x-ms-correlation-request-id": [ "04c675c8-c012-4715-862c-a8126e144aa0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T015935Z:04c675c8-c012-4715-862c-a8126e144aa0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7774FF3E51A3427B8B7E992CC191773C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98A7F2C270374927BB41380C53372331 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:35Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PkOsZ312CvRBnx+09YZM3twLKin89aON8CP8Ui/KPQ1xPt7ngeuUeyhDRDPLQreoD6KqvSzc0IQT+AStwXW9PQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"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-cjes6i/providers/Microsoft.Insights/components/Functions-Node-qb4h0d3z2x?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-le3f9v/providers/Microsoft.Insights/components/Functions-Node-zur6igjh15?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-cjes6i/providers/Microsoft.Insights/components/Functions-Node-qb4h0d3z2x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Insights/components/Functions-Node-zur6igjh15?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": { @@ -7962,36 +9193,219 @@ "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/da0aff3c-048c-4451-9d24-2fe642c5c335" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4867e088-9eb4-40d6-954f-64a75bc7ee9c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "56e2e407-5b59-4cf6-9ce5-4e05b27f969c" ], - "x-ms-correlation-request-id": [ "56e2e407-5b59-4cf6-9ce5-4e05b27f969c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115533Z:56e2e407-5b59-4cf6-9ce5-4e05b27f969c" ], + "x-ms-request-id": [ "ef993912-38ba-4f39-89ff-bd8f7f7dcd07" ], + "x-ms-correlation-request-id": [ "ef993912-38ba-4f39-89ff-bd8f7f7dcd07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T015941Z:ef993912-38ba-4f39-89ff-bd8f7f7dcd07" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4C0DDF828D749B9854E22BCE263F23E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:28Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBAE8A72D12C45908ABF031A18A1BAA6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:36Z" ], + "Date": [ "Fri, 14 Nov 2025 01:59:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"720651b1-0000-0300-0000-691475b50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Node-qb4h0d3z2x\",\r\n \"name\": \"Functions-Node-qb4h0d3z2x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-qb4h0d3z2x\",\r\n \"AppId\": \"eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0f83d0db-c8a1-4f7e-8398-8cbda33e68e9\",\r\n \"ConnectionString\": \"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\r\n \"Name\": \"Functions-Node-qb4h0d3z2x\",\r\n \"CreationDate\": \"2025-11-12T11:55:28.9646342+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-qb4h0d3z2x_eb0309fc-c8ce-4195-9fc9-a0e6050cac3f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-qb4h0d3z2x-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\": \"\\\"09077fad-0000-0300-0000-69168d0d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Node-zur6igjh15\",\r\n \"name\": \"Functions-Node-zur6igjh15\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-zur6igjh15\",\r\n \"AppId\": \"aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"65307571-de3f-45bb-a709-be13ce2fa192\",\r\n \"ConnectionString\": \"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\r\n \"Name\": \"Functions-Node-zur6igjh15\",\r\n \"CreationDate\": \"2025-11-14T01:59:36.5096857+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-zur6igjh15_aa7e26c1-6166-4bf1-826a-9504ce5b2585_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-zur6igjh15-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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-qb4h0d3z2x\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"\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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-zur6igjh15\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1609" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A5881AE80\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3c016979-0bc4-427d-bdd9-7f5cb16334cc" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/021dd0dd-867b-42a6-a02f-f86df934d615" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a5ca05dc-adf3-4d9c-85f1-60e65ffb0e4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020003Z:a5ca05dc-adf3-4d9c-85f1-60e65ffb0e4d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E7178B01703F454CBA5D84CCDD150165 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8264" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:59:42.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "759" ], + "x-ms-client-request-id": [ "20281445-5d14-4d09-80b9-03a4bd8b60b1" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A63B65580\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "77c5121e-9c87-40c4-932a-559e8a2b495c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bc3f8f19-a6f2-4c78-a3e1-09e2ca3c0c87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020033Z:bc3f8f19-a6f2-4c78-a3e1-09e2ca3c0c87" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A708AB9A07184661BFEA703113161B87 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8247" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "760" ], + "x-ms-client-request-id": [ "f84244d8-9b7e-4b38-a28e-f3f8498d1417" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A63B65580\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a0125afe-aa9a-4ccb-94eb-e0f27f1e7e40" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8d9cb656-159c-409a-a085-306715dfb4c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020033Z:8d9cb656-159c-409a-a085-306715dfb4c0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 18EFD325E6B147DE8ED9A2D6B454960F Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8247" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "761" ], + "x-ms-client-request-id": [ "048604c2-e3d7-4740-9807-a22a6ff0b1de" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9c5bdc09-313a-48ef-9fe7-ff4d4df1ee41" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae18029c-75de-4d8d-931f-5dd91184ace4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "08276cd6-ba49-43e7-b7ac-57aba6aba32e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020034Z:08276cd6-ba49-43e7-b7ac-57aba6aba32e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EA90F2278A65450D95E4BC8F1ACCA55D Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1207" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", + "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "762" ], + "x-ms-client-request-id": [ "fb489400-4550-48b9-8376-e04636a16751" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1609" ] } }, "Response": { @@ -7999,43 +9413,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB415C3260\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adf6dd31-2430-48f1-bd6b-9229f48b24d1" ], + "x-ms-request-id": [ "5fdf293e-0236-4a8d-a0f4-8b1677b31a9a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/861e756d-62dc-40cc-9a9d-2e20e5af3e80" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5f3cf370-c0ec-4ce5-91d8-33c6194c759c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115554Z:5f3cf370-c0ec-4ce5-91d8-33c6194c759c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9803de2-8df3-4610-92ca-2a0248c23e82" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "340fc67a-8cde-4082-ba49-00f43cc5f448" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020034Z:340fc67a-8cde-4082-ba49-00f43cc5f448" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FECE0D0AB178472AB72AD781F5E3840D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:55:33Z" ], - "Date": [ "Wed, 12 Nov 2025 11:55:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1705CE27FA4347E9A3157A7F6674E09B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8731" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:34.7433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "639" ], - "x-ms-client-request-id": [ "4ecec616-d4b5-4543-8612-29076f3d7a21" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], + "x-ms-unique-id": [ "763" ], + "x-ms-client-request-id": [ "31c7f082-4c51-4d8c-9904-9f97879da605" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -8045,38 +9459,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB4C745DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "918b48bf-2392-4562-83f6-a4f8a3de6bae" ], + "x-ms-request-id": [ "630124c4-434e-483b-9124-d506ebe74f49" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d645239-cafc-4353-a405-ad4a24bd0511" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115624Z:0d645239-cafc-4353-a405-ad4a24bd0511" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2bd8685-64a3-4ff9-9e9b-95994e173475" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0c9b2706-7546-4602-b3b9-749fb9813a96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020034Z:0c9b2706-7546-4602-b3b9-749fb9813a96" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A624717770C4E8F87E8C7264D30758C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E52854ABC254B4BA2A559B27591BA5E Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8714" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:54.0433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "640" ], - "x-ms-client-request-id": [ "16365849-7bbb-4caa-856c-5cd72c65181f" ], + "x-ms-unique-id": [ "764" ], + "x-ms-client-request-id": [ "848ae61a-dc54-4c48-aa91-6bf1538aae76" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8091,38 +9504,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB4C745DB5\"" ], + "ETag": [ "\"1DC550A63B65580\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f838f10-8ff9-487f-804f-cb052dc03b99" ], + "x-ms-request-id": [ "631f08a5-51b3-473f-9d63-0e4cd210331b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7553c106-9c58-4724-8002-0134dbc8a5bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115625Z:7553c106-9c58-4724-8002-0134dbc8a5bf" ], + "x-ms-correlation-request-id": [ "c4f052bd-d7f5-4120-be06-ba2cb4560801" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020035Z:c4f052bd-d7f5-4120-be06-ba2cb4560801" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A80E701D205404793CCA51A438B944C Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D2CC402EDDC84AB98E3F032258693D84 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8714" ], + "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:54.0433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "641" ], - "x-ms-client-request-id": [ "edb76c39-7c7b-4a7f-a71c-07776497b670" ], + "x-ms-unique-id": [ "765" ], + "x-ms-client-request-id": [ "8b7256af-a46d-41a9-baff-6acbb9cdfaa1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8138,36 +9551,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50a5a275-4f86-4c81-a86c-ba96240a385b" ], + "x-ms-request-id": [ "3fdead51-00ed-4d0f-8860-506638b68fcb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49828203-86e0-4695-9c05-f98d63a912d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a8f60db-a3ff-4561-a61c-2c5a37878ce9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2965efa2-da22-4fe1-bc82-821822ac7716" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115625Z:2965efa2-da22-4fe1-bc82-821822ac7716" ], + "x-ms-correlation-request-id": [ "00ef9d55-e631-4a3c-b0d9-5e24819e3091" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020035Z:00ef9d55-e631-4a3c-b0d9-5e24819e3091" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3CE0DFE2BA304E5C8F0AA06D86C0A4AE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF587D5B13594B1FBE62086C3D36DA15 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-qb4h0d3z2x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "642" ], - "x-ms-client-request-id": [ "72500864-e5b4-4cbd-837b-d2c8e8bc9d1d" ], + "x-ms-unique-id": [ "766" ], + "x-ms-client-request-id": [ "e5baeb6b-f658-49de-a565-cc5a8e0a61df" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8183,39 +9596,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "867db684-67da-4b5a-8780-8830f7613b12" ], + "x-ms-request-id": [ "488983e6-471d-40a5-8cc3-a48a695cda65" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18814004-d5eb-4713-bbe2-7d2ef0f855f1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f8f2dbcc-e181-4724-85c9-8bb6bfaba376" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d4dc7f55-3a9f-4c1e-ab42-7e1bc8bedb08" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115625Z:d4dc7f55-3a9f-4c1e-ab42-7e1bc8bedb08" ], + "x-ms-correlation-request-id": [ "12826658-9be2-4842-ad7e-266b1ab9e3e0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020035Z:12826658-9be2-4842-ad7e-266b1ab9e3e0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 598329C44E8E48F78CA41D11BFFBA602 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABFDDC037C4347BCB6E816736862AC46 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?api-version=2023-12-01+11": { + "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01+15": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "643" ], - "x-ms-client-request-id": [ "b5146ff9-cceb-4778-a0ad-8c3816dc938c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "767" ], + "x-ms-client-request-id": [ "0fc9cdc3-09f8-4b7e-bf46-3f35c3cf6aa1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -8228,39 +9641,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A63B65580\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ed55be1-246e-4de3-877a-56fc9f91dfdc" ], + "x-ms-request-id": [ "99d5ae10-9fbc-4586-a5b9-05030a742879" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e615c32-a47c-4dbc-91b0-41c52487fd74" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "646e317e-65b2-442a-9d01-ee36eb43681e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115626Z:646e317e-65b2-442a-9d01-ee36eb43681e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7461e0eb-d9c8-4dfc-854f-203f45005410" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020036Z:7461e0eb-d9c8-4dfc-854f-203f45005410" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70C78AB3F7EC49BCA81F28473FBBC09D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6B8CE6F772F4A3082418D19DB2BE69D Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1207" ], + "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-qb4h0d3z2x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-01+12": { + "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01+16": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "644" ], - "x-ms-client-request-id": [ "12530b82-b97b-4579-a352-2a9b38c30bda" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "768" ], + "x-ms-client-request-id": [ "56d66293-ed66-445d-a1bd-e74013b96ddb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -8273,40 +9687,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB4C745DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "963d07c8-3e9b-4982-a9a8-61328c06e3f9" ], + "x-ms-request-id": [ "7704cf66-c1e2-4b70-842f-04e4c03c99be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5c11649a-9403-425c-b986-f0d5cc8ca03f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115626Z:5c11649a-9403-425c-b986-f0d5cc8ca03f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0169e56f-1283-41f5-8d34-3cb84414878d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e36c3c95-4912-4354-9697-f95b9e5ecc73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020036Z:e36c3c95-4912-4354-9697-f95b9e5ecc73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72AC45879C684103B0AF59602A822F41 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D06E3169027C43329BE61BC67F930C2F Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8714" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-qb4h0d3z2x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Node-qb4h0d3z2x\",\"repositorySiteName\":\"Functions-Node-qb4h0d3z2x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"functions-node-qb4h0d3z2x.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-qb4h0d3z2x.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-qb4h0d3z2x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:55:54.0433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-qb4h0d3z2x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-qb4h0d3z2x\\\\$Functions-Node-qb4h0d3z2x\",\"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-cjes6i\",\"defaultHostName\":\"functions-node-qb4h0d3z2x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", "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-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/appsettings/list?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01+17": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "645" ], - "x-ms-client-request-id": [ "b935207e-2c5b-415e-9a5e-a8ea44899a5a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "769" ], + "x-ms-client-request-id": [ "c7f6b32a-d87b-4527-8918-c8157d3d2a63" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -8320,38 +9733,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c5bd24a-2961-497f-b27f-0ba4881a116c" ], + "x-ms-request-id": [ "35ea2bb7-2640-45cc-9bca-0307ba703a86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/374b265c-80a3-43da-8318-e2498c9bf257" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e0ed0561-584e-4401-b99c-4ae337b4627a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115626Z:e0ed0561-584e-4401-b99c-4ae337b4627a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d555fb70-a1f7-4c24-af51-eed2327f324e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b8b84374-b075-45f7-90ae-9b2f74063e11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020036Z:b8b84374-b075-45f7-90ae-9b2f74063e11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14F4D0CA5FC446D28C9DB3045443C459 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EEF48232EAD4A0B99A02D6E343184B4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1207" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-qb4h0d3z2x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "646" ], - "x-ms-client-request-id": [ "ba819d12-1cbe-4777-ab6d-39768a5729e0" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "770" ], + "x-ms-client-request-id": [ "40fa65b8-4f4d-45a6-93e9-a85c88618e92" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -8365,37 +9779,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3043524a-e23d-4d7b-9758-9fd3ce6e9462" ], + "x-ms-request-id": [ "d2743b5a-cc09-4349-b515-325d60d1b412" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5eb7cadb-1165-4cf1-94d3-7a67f3b1759b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "ac3f0031-d20b-40b3-9d05-c3ee652b1a5d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115627Z:ac3f0031-d20b-40b3-9d05-c3ee652b1a5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7c051392-d8e2-4f6a-a59f-f0db79ecfa4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020037Z:7c051392-d8e2-4f6a-a59f-f0db79ecfa4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FEF295B10C74C28A645D91911C83C5F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6364A71D09E64691AB92EBF5A256A91B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4180" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x/config/web\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Node-qb4h0d3z2x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "647" ], - "x-ms-client-request-id": [ "4fccf6a1-8369-4c80-8733-467106b4c183" ], + "x-ms-unique-id": [ "771" ], + "x-ms-client-request-id": [ "db253f6b-2315-4eb1-9e95-dd1f7beff529" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8410,20 +9823,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB4C745DB5\"" ], + "ETag": [ "\"1DC550A63B65580\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be588f7d-a2a9-4cf0-8a41-de535da2598d" ], + "x-ms-request-id": [ "d6b9cc38-1818-4c14-a05b-ae31c6e730c6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2feae33c-57b3-40e4-b1eb-4d316ffa2377" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e584abc-72b6-45da-823e-2ba864905164" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "e3ad8bf4-178b-420b-8e62-91414a8f5236" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115638Z:e3ad8bf4-178b-420b-8e62-91414a8f5236" ], + "x-ms-correlation-request-id": [ "8d3cbec2-74f4-4f26-bb26-db9c1b7f0466" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020045Z:8d3cbec2-74f4-4f26-bb26-db9c1b7f0466" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 097D914AE452433F8AF0D3B65D697635 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB2C8542CBF741E1B971C3579F86F9B3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8437,7 +9850,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-Isolated5ivf3pq4d9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -8452,18 +9865,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "779c4262-ccd3-44fb-aab0-cec2862c63e9" ], + "x-ms-request-id": [ "f51601df-e86e-4482-9c82-f6f9563bde39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54d73844-1ab5-48d3-9769-0d7d27ad6512" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e4d74207-6a0d-4ed7-8952-4831499a2f5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c900f9c7-1e97-4f5b-b641-e93145086dbd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115638Z:c900f9c7-1e97-4f5b-b641-e93145086dbd" ], + "x-ms-correlation-request-id": [ "f3c8245c-d809-4011-83c2-1b4d384f9f6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020045Z:f3c8245c-d809-4011-83c2-1b4d384f9f6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62D7AD8F7EF949E98026EA591831CC40 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B39C03D03CEB41BC8B200FD9380CC461 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:45Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -8481,8 +9894,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "649" ], - "x-ms-client-request-id": [ "0bb5cb59-1b5b-42b1-9ec0-a353f4158864" ], + "x-ms-unique-id": [ "773" ], + "x-ms-client-request-id": [ "853ae781-7aab-4400-aa8a-de7c2a4e6704" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8497,36 +9910,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b5bb91fa-815c-4cdf-8a5a-a688b29577d5", "f5ae157c-7fd9-4b73-b455-255cf9c217b0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], - "x-ms-request-id": [ "1d5c60cf-16cf-4e48-a209-95fbba7807d4" ], - "x-ms-correlation-request-id": [ "1d5c60cf-16cf-4e48-a209-95fbba7807d4" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115644Z:1d5c60cf-16cf-4e48-a209-95fbba7807d4" ], + "x-ms-original-request-ids": [ "65ddd3b7-8b10-481b-b58d-d64d21c02ee1", "b1ddd8b1-38c7-4faf-a520-574c276c5b3e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c9e1f587-c850-4ecb-a3f0-eb937f41f880" ], + "x-ms-correlation-request-id": [ "c9e1f587-c850-4ecb-a3f0-eb937f41f880" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020047Z:c9e1f587-c850-4ecb-a3f0-eb937f41f880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9CE1FE33BB84576A84482530B0EDBF1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:38Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 590D2FF85B8B414CB5445BFBF645E02E Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13768" ], + "Content-Length": [ "11997" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "650" ], - "x-ms-client-request-id": [ "81978652-d268-46e6-a73a-e6222d49ee26" ], + "x-ms-unique-id": [ "774" ], + "x-ms-client-request-id": [ "bce3c1be-1ae5-4431-a2cb-8f74580c705b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8542,36 +9955,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6201bade-39c4-488e-bddd-97e8295738b1" ], + "x-ms-request-id": [ "a7f1a019-2bb1-438f-b63b-5c62cb81adbd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f1f92a66-2388-48d8-8b70-aac2f9ce74d9" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115644Z:f1f92a66-2388-48d8-8b70-aac2f9ce74d9" ], + "x-ms-correlation-request-id": [ "1213ec51-8808-4f69-9877-8d995eeb67a7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020047Z:1213ec51-8808-4f69-9877-8d995eeb67a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 291046CB4DBB4066BBA0E5674F0BE54D Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:44Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79F41E9C0D4645B1B9F4E150DE1F2A6B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "651" ], - "x-ms-client-request-id": [ "452ec834-3e9c-4b93-9db0-11bf7aec6a3c" ], + "x-ms-unique-id": [ "775" ], + "x-ms-client-request-id": [ "1eab4182-448a-4601-8927-c889761a0e2e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8587,36 +10000,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "671940f3-8522-400f-9808-07e024c08da8" ], + "x-ms-request-id": [ "7b1b050d-b659-48ff-8f2e-7f1567e10989" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "26c6c3bf-8ad3-4974-97ce-0096c75d2600" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115645Z:26c6c3bf-8ad3-4974-97ce-0096c75d2600" ], + "x-ms-correlation-request-id": [ "5ec4a605-31dc-4894-bcaa-4cdfc74f7d0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020047Z:5ec4a605-31dc-4894-bcaa-4cdfc74f7d0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C6049547A134B65BB6D00FEFDDA1C45 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:44Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 785BB54CFA4C4EF48A1E03B812348DCF Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "652" ], - "x-ms-client-request-id": [ "d984591c-f17d-4793-baaa-b9c96ad1edb7" ], + "x-ms-unique-id": [ "776" ], + "x-ms-client-request-id": [ "38cd142b-a5f9-495e-8449-9ea189e3930c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8632,81 +10045,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c13dc17-b6bf-4b8d-8036-3f66ce110208" ], + "x-ms-request-id": [ "34403ee9-1d27-49c6-8aa9-04c3ed2379c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4f6b0a68-56b1-47ba-8814-b9b06c50cdc1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115645Z:4f6b0a68-56b1-47ba-8814-b9b06c50cdc1" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C1FA59D9F5745C3BF52CAD787EF1BBF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1746" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "653" ], - "x-ms-client-request-id": [ "fa59bd01-fafc-4220-9844-8d8fd882d0a5" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7cd7dba-99f9-4b1b-b1c5-62486cb02b7c" ], - "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": [ "d975130c-bb3b-4e59-9b4a-ad01d129db19" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115645Z:d975130c-bb3b-4e59-9b4a-ad01d129db19" ], + "x-ms-correlation-request-id": [ "980e0578-7daf-4e21-baa9-573e5652e88b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020048Z:980e0578-7daf-4e21-baa9-573e5652e88b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D79F23CC4DB54AA7B2892CB9AF5072D6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C91A8EEBAD1046CF9D35D506DEA84EC4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "654" ], - "x-ms-client-request-id": [ "e36ee9f4-742c-4790-8ee0-477732140cb6" ], + "x-ms-unique-id": [ "777" ], + "x-ms-client-request-id": [ "c28ce151-ba38-4e99-8f1f-00d98b7d4724" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8722,36 +10090,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b24bde3-f726-4d4d-b17c-178faee8dea4" ], + "x-ms-request-id": [ "18c0637e-477c-42ee-8d82-2bc6076aab2c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "073c7c55-0825-441e-96cb-309c99547f37" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115646Z:073c7c55-0825-441e-96cb-309c99547f37" ], + "x-ms-correlation-request-id": [ "7f1f7bf1-0f6e-44aa-a8a1-ad669c3f339a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020048Z:7f1f7bf1-0f6e-44aa-a8a1-ad669c3f339a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA5B2B0A16CB4D6C971C2FBBF1969753 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:45Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41936DB4F77349158DD1C3265686286A Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "9b273881-531f-468f-8024-b008b6685f2d" ], + "x-ms-unique-id": [ "778" ], + "x-ms-client-request-id": [ "46ffe308-dc90-4030-b18b-d69baaa7d1ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8767,36 +10135,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0d2723b-25e7-4e48-a8b3-7e0014937cc3" ], + "x-ms-request-id": [ "d3ae8b0f-ea3b-435d-ab1c-e1268ba3fe64" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e8c926fe-9ad8-4967-baa4-c9d72d675bcb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115646Z:e8c926fe-9ad8-4967-baa4-c9d72d675bcb" ], + "x-ms-correlation-request-id": [ "10241028-1918-4811-8a8b-4f24bd67edaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020048Z:10241028-1918-4811-8a8b-4f24bd67edaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED53B84EF2E846A18EEAEC82DC2CC807 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:46Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C17A12FD010458D937F7879EAA79F5B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "656" ], - "x-ms-client-request-id": [ "bc9b648b-8c1b-4252-9b9f-149bc8c1f42d" ], + "x-ms-unique-id": [ "779" ], + "x-ms-client-request-id": [ "0814a235-fdea-47af-8462-a8e9f5bbc6f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8812,36 +10180,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91714992-3878-4f37-a49d-d6e050a8998c" ], + "x-ms-request-id": [ "41f9b5c5-42b4-462a-b533-79e4e3219df5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d246c669-c0b5-490a-90d4-358835b5f874" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115647Z:d246c669-c0b5-490a-90d4-358835b5f874" ], + "x-ms-correlation-request-id": [ "ca83f1fd-5dd1-4693-8916-517c9115376a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020049Z:ca83f1fd-5dd1-4693-8916-517c9115376a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF282898A14141BC9B2A47DC0D73EBDE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:46Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB75BD5410FC4E73A05C3B9B64197D19 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "657" ], - "x-ms-client-request-id": [ "0fd19c81-3e11-4888-8a0e-e994e815fd28" ], + "x-ms-unique-id": [ "780" ], + "x-ms-client-request-id": [ "e631fe34-25ac-4614-84ef-e63485505e41" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8857,36 +10225,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84c6879d-3f31-4925-88eb-4bc3b240a5c9" ], + "x-ms-request-id": [ "dca03f5f-9972-43d0-b5a7-74c94d50ae93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e103313-11a3-4d3a-876b-027ba7c8dd47" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115647Z:0e103313-11a3-4d3a-876b-027ba7c8dd47" ], + "x-ms-correlation-request-id": [ "b4dfc55e-6984-481d-b90f-c6b6719e27c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020051Z:b4dfc55e-6984-481d-b90f-c6b6719e27c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76700D0AEADB478792C4B8183E08F788 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 841CBFD71C334AB791ACE7EED41AC2C1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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/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": [ "658" ], - "x-ms-client-request-id": [ "0192f755-2693-4d4f-a70d-27b5aa412657" ], + "x-ms-unique-id": [ "781" ], + "x-ms-client-request-id": [ "67ccb1e8-7295-4215-83c7-d54bc4cba69d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8901,36 +10269,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d305bcd6-3146-4b2e-9122-25ddc014772d", "24c70f86-ba5c-4d22-bcd1-c6327d4bf938" ], + "x-ms-original-request-ids": [ "149dc7dc-825b-4b2c-9a05-e0e08a6877b8", "7f7792ab-1066-465c-b124-2d56d0d48aab", "3536f15a-2b09-424b-98f0-219b19d4f440" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a9b32a03-206f-4b41-9566-e42572fb10aa" ], - "x-ms-correlation-request-id": [ "a9b32a03-206f-4b41-9566-e42572fb10aa" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115649Z:a9b32a03-206f-4b41-9566-e42572fb10aa" ], + "x-ms-request-id": [ "182768d4-cecd-472e-b5a1-3f7ae29f9204" ], + "x-ms-correlation-request-id": [ "182768d4-cecd-472e-b5a1-3f7ae29f9204" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T020052Z:182768d4-cecd-472e-b5a1-3f7ae29f9204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 306C33E1A6FE4F089959E861D1FA18A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:47Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44F04F6FF45746339376DDABD23BCA3A Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+12": { + "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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "659" ], - "x-ms-client-request-id": [ "27aa192d-43a4-48ba-8e06-77f6b6cc8e57" ], + "x-ms-unique-id": [ "782" ], + "x-ms-client-request-id": [ "0fc8b262-b229-485b-95e2-ad9c7e7b829b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8945,30 +10313,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "691eb232-31cd-4802-b44c-1dc3e94e2342" ], + "x-ms-request-id": [ "6bdef282-d69f-4621-9ef0-ebd664ed3dce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/50c77ee7-2037-4786-a0a6-d7c1efd0f6d8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/881fa5ae-896a-4357-af84-9cf37d8c1970" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d80d47af-3f15-488e-a698-dfe7930f78da" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115649Z:d80d47af-3f15-488e-a698-dfe7930f78da" ], + "x-ms-correlation-request-id": [ "a92fb4a3-c23a-4568-8ff4-458fe034b37e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020052Z:a92fb4a3-c23a-4568-8ff4-458fe034b37e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3DACF9B74BBF47C7AB7A6A0F916E04C3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A42780A532F040AB80B8922F01D7B868 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2015-05-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-DotNet-Isolateduhnte46q0o?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-lf9t8w/providers/Microsoft.Insights/components/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-DotNet-Isolateduhnte46q0o?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": { @@ -8988,30 +10356,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d50a6a73-b590-412d-8705-83f6d773665f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/accc5976-8f39-450e-a70e-297bb1102453" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "60188977-fd0a-4d70-ad62-488fdb9375be" ], - "x-ms-correlation-request-id": [ "60188977-fd0a-4d70-ad62-488fdb9375be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115655Z:60188977-fd0a-4d70-ad62-488fdb9375be" ], + "x-ms-request-id": [ "fc2a43d0-e038-4ca3-b30e-ee6c9f14f833" ], + "x-ms-correlation-request-id": [ "fc2a43d0-e038-4ca3-b30e-ee6c9f14f833" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020056Z:fc2a43d0-e038-4ca3-b30e-ee6c9f14f833" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2174E1EBD4414C87B0A364A88A58A975 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:49Z" ], - "Date": [ "Wed, 12 Nov 2025 11:56:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 668701C2C43549ECB3E99717434989F8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:00:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1683" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"72069dc6-0000-0300-0000-691476070000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"name\": \"Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"AppId\": \"58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6d43c560-5f34-4318-87ba-95d3aa047695\",\r\n \"ConnectionString\": \"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\r\n \"Name\": \"Functions-DotNet-Isolated5ivf3pq4d9\",\r\n \"CreationDate\": \"2025-11-12T11:56:50.257685+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-isolated5ivf3pq4d9_58148da6-f1bc-4e01-b683-6b3ee1fe827e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated5ivf3pq4d9-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\": \"\\\"09071ec2-0000-0300-0000-69168d580000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-DotNet-Isolateduhnte46q0o\",\r\n \"name\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"AppId\": \"20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66\",\r\n \"ConnectionString\": \"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\r\n \"Name\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"CreationDate\": \"2025-11-14T02:00:53.143562+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-isolateduhnte46q0o_20f53ecf-4616-4b66-83b2-6b97bbcb3dc7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolateduhnte46q0o-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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01+14": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated5ivf3pq4d9\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"\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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolateduhnte46q0o\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9025,43 +10393,226 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB72ABCB00\"" ], + "ETag": [ "\"1DC550A85640EF5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dade6685-a1fd-47a8-9f6e-12ca3736ae7b" ], + "x-ms-request-id": [ "6f8424bc-1d8f-4280-9009-7319242bbaa4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f85edfec-8fad-4eb7-930a-ed5a5c651173" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d54cf02-d463-41a7-89f5-ca9b71411ccc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e9df8abc-585a-4fcb-ae4a-445596d6953c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115737Z:e9df8abc-585a-4fcb-ae4a-445596d6953c" ], + "x-ms-correlation-request-id": [ "6d4af1e6-1616-40b6-ab2e-289bd6b4551f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020139Z:6d4af1e6-1616-40b6-ab2e-289bd6b4551f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48DCD82DF3D6453FBCD9BC7729D26CAB Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:56:55Z" ], - "Date": [ "Wed, 12 Nov 2025 11:57:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89F2B089F0414A65807FFD421AEEB1F7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:57Z" ], + "Date": [ "Fri, 14 Nov 2025 02:01:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8502" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:56:57.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:58.58\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "662" ], - "x-ms-client-request-id": [ "4bbbd61c-a649-4f41-9043-fe99f6636012" ], + "x-ms-unique-id": [ "785" ], + "x-ms-client-request-id": [ "16cc4de1-d4e5-4822-a970-eeaf89edcac3" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A9D136480\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d56d034e-16de-45ca-afa3-e9c1b9cc7c2a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bd838ddf-1629-4125-8c47-8878befa16f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020209Z:bd838ddf-1629-4125-8c47-8878befa16f6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B9C4CACA0E564509A4C2D5E4D5FDD861 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:09Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8476" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "786" ], + "x-ms-client-request-id": [ "cc6f4c28-a88f-4db3-8acc-4b6880f4a0f4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A9D136480\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8434c34e-83ab-4488-b84a-9d70e774dc85" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c16d4743-1e8a-4a09-adda-462fec801e9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020209Z:c16d4743-1e8a-4a09-adda-462fec801e9c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8C74102526FC4532BD3199FC397C74CA Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:09Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8476" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "787" ], + "x-ms-client-request-id": [ "b8cf74ad-ff19-470d-9f6e-45b143e3919d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2980bb3e-928e-47b8-b326-42a4aff67be8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f815a06-b3a2-4a39-b5a0-180170b4a453" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6966c755-4bcf-4732-a5e5-70ce2297127e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020210Z:6966c755-4bcf-4732-a5e5-70ce2297127e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4A17C1B93BAA43E9B9E64E77B01BF261 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:09Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1232" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "788" ], + "x-ms-client-request-id": [ "67fc5535-0195-48b6-b497-1ec32250064c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "cce4b308-2942-4d45-b551-3a3e67093eaf" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f862046e-5114-4a86-b8bc-580ea60aa30d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "69664aca-e048-4cec-bd3f-c74af2af0a9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020210Z:69664aca-e048-4cec-bd3f-c74af2af0a9f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 84A6B7DD554F46BBB43B0FAE2E39E85D Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:10Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4189" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01+18": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "789" ], + "x-ms-client-request-id": [ "37ade602-3005-4e22-9bcf-8b93fe8a92b3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -9071,38 +10622,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB8A232DA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "427df30a-c3c4-4a74-9d31-d2e09f35a0f0" ], + "x-ms-request-id": [ "de5adc43-a38e-4955-a827-b2f0b09bd86e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d193d5a2-0dc2-4b9a-96ae-ac9f881aca4a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115808Z:d193d5a2-0dc2-4b9a-96ae-ac9f881aca4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fd1de272-3d31-429d-b713-bdf7bbc87d02" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "deb2db79-7dd0-40c9-ac8a-9fc8f294b43d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020210Z:deb2db79-7dd0-40c9-ac8a-9fc8f294b43d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8423C98B448142E3B60EA388C2A4982F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3222951CA86545F490DAD4B416213A07 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:10Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:57:37.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "663" ], - "x-ms-client-request-id": [ "d60ae1f9-da61-47a2-b67d-b3b4b6ff4461" ], + "x-ms-unique-id": [ "790" ], + "x-ms-client-request-id": [ "2d533ec8-27f6-4186-837f-66d53d277d11" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9117,38 +10667,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB8A232DA0\"" ], + "ETag": [ "\"1DC550A9D136480\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb560b67-2210-42c6-8215-02cfa589d38a" ], + "x-ms-request-id": [ "568e56d0-4650-4481-b7f1-e507156ecd9f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "161b5572-9876-4fea-bda8-17b4d874b29c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115808Z:161b5572-9876-4fea-bda8-17b4d874b29c" ], + "x-ms-correlation-request-id": [ "f1c56fa5-42b3-4c24-a8a7-e7bff2d36184" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020211Z:f1c56fa5-42b3-4c24-a8a7-e7bff2d36184" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62628F0A8C3F4C7C92216149E19CFB1B Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 532FC811B90E4E18B8DA92170A96EE38 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:10Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8476" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:57:37.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "de395195-0ffb-467f-9f24-a7fdeb2d301d" ], + "x-ms-unique-id": [ "791" ], + "x-ms-client-request-id": [ "e2bfa34e-25d3-4766-8a28-dbfec34a8581" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9164,36 +10714,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31ecaa95-52ef-41b9-9f31-90797fc80564" ], + "x-ms-request-id": [ "e5b0b311-c806-4661-a7ef-ed47c9c2bdaf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f8278f76-51d1-497b-b8b6-36cb535eb122" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d897afc6-bfeb-48eb-8e55-8fe7305de844" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a9f2feb0-dd95-41fe-b8a2-88064ac73e90" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115808Z:a9f2feb0-dd95-41fe-b8a2-88064ac73e90" ], + "x-ms-correlation-request-id": [ "7f57f7cb-8a57-4d36-b51e-c71231600bca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020211Z:7f57f7cb-8a57-4d36-b51e-c71231600bca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB8FE605523543A3B5F82D1D513CD3A0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:08Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B5EFFAE57F144169386B15A481F6F08 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:11Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ivf3pq4d9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "665" ], - "x-ms-client-request-id": [ "7422bfe0-f4b4-49d6-8892-66a3358b0398" ], + "x-ms-unique-id": [ "792" ], + "x-ms-client-request-id": [ "b292cc2f-d472-4837-b3e7-51883a626ba4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9209,39 +10759,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2875a5dc-2f05-4dd6-9014-2e17a48b079d" ], + "x-ms-request-id": [ "a94003c6-e667-4776-8008-9a8a85b098f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28a578f3-c494-4103-9738-a8ed43aa9ed3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcd11cba-b914-4b46-b59f-675e154edf58" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "59c66b71-ccbf-40f7-97e3-57832cd7c902" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115809Z:59c66b71-ccbf-40f7-97e3-57832cd7c902" ], + "x-ms-correlation-request-id": [ "4ddd5a87-bb94-40b6-a24f-ff7dc389b5b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020211Z:4ddd5a87-bb94-40b6-a24f-ff7dc389b5b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6D3E993563A43C39C62793149EF670A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4ABD869E8EBE4C7581B5D28AB7BA3E81 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:11Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "666" ], - "x-ms-client-request-id": [ "2f723292-5fce-4481-9f39-de9cf98806e6" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "793" ], + "x-ms-client-request-id": [ "21f989b3-d0ad-4e23-9292-d8b8ab6556bf" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -9254,39 +10804,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550A9D136480\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea4658c9-5f40-4d2d-9b8a-b948784c0a38" ], + "x-ms-request-id": [ "300fb1c4-eec9-46fd-99cb-08a2d03004dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7ea8176-08f6-4a62-8e51-f795d6cb3146" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "38e9756a-6503-4c7f-a09b-84e2c730d11c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115809Z:38e9756a-6503-4c7f-a09b-84e2c730d11c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "81b6f71a-7c91-45f8-b2e6-4839c1827808" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020212Z:81b6f71a-7c91-45f8-b2e6-4839c1827808" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53BF484395D94464B604F296EF0A7233 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7BD87C14AB7463DBF54CDDB05AA2F5F Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:11Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "8476" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ivf3pq4d9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "667" ], - "x-ms-client-request-id": [ "9c648dee-86c8-45c9-a30e-b5abf570dac4" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "794" ], + "x-ms-client-request-id": [ "f00c74c7-c9d2-43d1-b15d-80abd6a3dea8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -9299,40 +10850,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB8A232DA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07c15cf8-ca65-43c7-9be6-a3454ee12efc" ], + "x-ms-request-id": [ "2142919b-8589-43af-bb9c-7ac236d9265d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "096746ab-6a5e-4d1e-8917-12149ff7d4fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115809Z:096746ab-6a5e-4d1e-8917-12149ff7d4fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e70c3ce5-043d-422e-af63-73b9c8cf5e44" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5f0df9e1-23cf-4cdf-9217-b104bc86ff6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020212Z:5f0df9e1-23cf-4cdf-9217-b104bc86ff6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88873B11DAF2432EBBFF29E05047A21A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:09Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 123D142BA995432C95F43AE7B2AEAECD Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:12Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-DotNet-Isolated5ivf3pq4d9\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"functions-dotnet-isolated5ivf3pq4d9.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ivf3pq4d9.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-isolated5ivf3pq4d9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:57:37.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolated5ivf3pq4d9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolated5ivf3pq4d9\\\\$Functions-DotNet-Isolated5ivf3pq4d9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-dotnet-isolated5ivf3pq4d9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "668" ], - "x-ms-client-request-id": [ "9ebd26ca-2106-4bbc-9c67-7188391a8827" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "795" ], + "x-ms-client-request-id": [ "9a914880-3295-4663-a53b-e18e4bb8e1bb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -9346,38 +10896,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "548c9373-3681-4c55-b996-fd47715befe2" ], + "x-ms-request-id": [ "262f820f-1ca2-44ed-b5e2-fefb8194a76b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c18cdeb9-fdff-4224-8219-f459cbe708ed" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0374ea6c-4d2f-4f87-b94a-96db851b2db9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115810Z:0374ea6c-4d2f-4f87-b94a-96db851b2db9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c77dfad8-df0a-4963-83b4-b885d1476b1d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ff7f1183-4a75-4db2-8ffa-cd062bbb8e7e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020212Z:ff7f1183-4a75-4db2-8ffa-cd062bbb8e7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3F9FE6A73C748518FA4F3BF0F2B569F Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06CA57E052284ADF977DF0E18B77D06E Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:12Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ivf3pq4d9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "669" ], - "x-ms-client-request-id": [ "bf682f2d-82e4-4dfb-9948-f7dfac6ad7dd" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "796" ], + "x-ms-client-request-id": [ "5a3adc3b-0b72-465a-87df-81e2ffc3e256" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], "Authorization": [ "[Filtered]" ] @@ -9391,37 +10942,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0609cc2-e559-4003-b6d1-596a518b9550" ], + "x-ms-request-id": [ "6241d39b-cb1b-4d23-ab56-e02367e1ff43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b893e40d-3243-49c7-9b59-804a595406cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bc9b12c2-7cac-4b75-87a5-5da278b7433e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115810Z:bc9b12c2-7cac-4b75-87a5-5da278b7433e" ], + "x-ms-correlation-request-id": [ "f28c22c3-e179-4cda-8596-b26cd2a2a80c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020213Z:f28c22c3-e179-4cda-8596-b26cd2a2a80c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E05E49D6068746FC866B077BDF446AE1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C0931345E7D41158FE785B7166894E2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:12Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4189" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9/config/web\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ivf3pq4d9?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "670" ], - "x-ms-client-request-id": [ "88ffaa11-e44b-498c-895a-355add91d70c" ], + "x-ms-unique-id": [ "797" ], + "x-ms-client-request-id": [ "81c8bd68-cd7e-4937-be3c-1ea9e77ab9c4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9436,20 +10986,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CB8A232DA0\"" ], + "ETag": [ "\"1DC550A9D136480\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da876bf1-7122-494f-b3fe-cc05e7887e29" ], + "x-ms-request-id": [ "8149254c-e80e-4cd1-9c60-42d8645b917d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e9c5613-c8fc-45a6-b34b-4205ca77cc0b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa6f227e-e00a-4370-897a-46c5444e3f45" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "04d58782-1287-4523-8032-8429b7cfa3e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115821Z:04d58782-1287-4523-8032-8429b7cfa3e6" ], + "x-ms-correlation-request-id": [ "c24aeb82-ce46-4870-ba6b-243a7ad12b1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020221Z:c24aeb82-ce46-4870-ba6b-243a7ad12b1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0826E6D3203C4A1492B218C5E2F01AA3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:10Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75DA5745FE8C4253B3227953C4F7F5F1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:13Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9463,7 +11013,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-CustomHandlerh7ucdtvris\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9478,18 +11028,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c7e0be9-a299-4724-85fb-31b8193a7733" ], + "x-ms-request-id": [ "3c04d28f-011c-4b69-86d3-b1316da106eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5ad3799e-c0ff-48aa-8b08-ebe4a041a935" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d08c12c-906e-4697-8622-be005775a56e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "35bd17d7-6db8-44af-8a58-8bcabca87aad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115822Z:35bd17d7-6db8-44af-8a58-8bcabca87aad" ], + "x-ms-correlation-request-id": [ "d485f8b9-304b-4d0b-9cb0-1a067baa7daf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020221Z:d485f8b9-304b-4d0b-9cb0-1a067baa7daf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD070C63E02E45F68CC1EDDDAB6EA5E5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:21Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45534549DD3C48119D4D2544BAAAF67B Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:21Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9507,8 +11057,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "672" ], - "x-ms-client-request-id": [ "1a751723-d74a-4172-ad7e-168f9bdffa22" ], + "x-ms-unique-id": [ "799" ], + "x-ms-client-request-id": [ "dab86db7-8633-422b-92ff-c7a56f08fa2a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9523,36 +11073,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c752ff4b-70da-4a2e-a88c-cb7966fc495e", "76e48fd6-ae02-4ffd-a79b-4ee502739e5a" ], + "x-ms-original-request-ids": [ "d1d8bf5d-475a-491c-ae48-67b735d8f3f1", "6bc2ae90-02aa-431a-9d65-dd445b599900" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3cff05c7-4688-4b83-a0cf-2f83176d0392" ], - "x-ms-correlation-request-id": [ "3cff05c7-4688-4b83-a0cf-2f83176d0392" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T115823Z:3cff05c7-4688-4b83-a0cf-2f83176d0392" ], + "x-ms-request-id": [ "d14c2039-766f-449e-b50d-5e60695ea72e" ], + "x-ms-correlation-request-id": [ "d14c2039-766f-449e-b50d-5e60695ea72e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020224Z:d14c2039-766f-449e-b50d-5e60695ea72e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DF878532EA844F3B4A6FDB63D5446D1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:22Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C3B7F8059A74074A54E1DEACC6BFA2C Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:21Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13768" ], + "Content-Length": [ "11997" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "673" ], - "x-ms-client-request-id": [ "35b478e3-703a-440c-a688-55183a5c2db8" ], + "x-ms-unique-id": [ "800" ], + "x-ms-client-request-id": [ "ad3c8844-f5c7-4bee-a213-d5d2b756dffe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9568,36 +11118,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae8b428c-ed7a-42ff-b834-f161e7238e55" ], + "x-ms-request-id": [ "19371c6a-74ca-4c38-81ad-19bcbd2f35bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b8a14263-7a2e-47e0-83e9-d4771fed49ec" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251112T115823Z:b8a14263-7a2e-47e0-83e9-d4771fed49ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "23aac843-e21c-4d25-80b9-49c776acdfa5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020224Z:23aac843-e21c-4d25-80b9-49c776acdfa5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C669B86ED0E34BC19BDE6D4E81C357CF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:23Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D89CA57307234ADAB8464D5C3BF8AF38 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "674" ], - "x-ms-client-request-id": [ "73a00ba4-0e8b-46ea-b0e9-06ca48804181" ], + "x-ms-unique-id": [ "801" ], + "x-ms-client-request-id": [ "8de6948a-404a-4492-8c16-5a6007f6a193" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9613,36 +11163,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ac08b15-695d-4c51-bebe-002cb333c88a" ], + "x-ms-request-id": [ "ec817aa3-2e94-441c-83d8-9263c32c7bc6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d1370cd-6743-4668-b529-0e66204400e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:1d1370cd-6743-4668-b529-0e66204400e6" ], + "x-ms-correlation-request-id": [ "2ac5c7cd-bb98-44f3-9189-8da8ef47b0ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020224Z:2ac5c7cd-bb98-44f3-9189-8da8ef47b0ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A23F2A1188D4AD1BB52611C0EEBFF18 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 613454588DFE47E4B63D44CA2C844C5A Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "675" ], - "x-ms-client-request-id": [ "fb8ddf6d-07e9-468e-a7b9-4f5426fcefcb" ], + "x-ms-unique-id": [ "802" ], + "x-ms-client-request-id": [ "05e037bc-8421-4664-8a72-464bf32311f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9658,36 +11208,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "973ea5d5-c9f1-46c8-ba32-03ba1848452a" ], + "x-ms-request-id": [ "f7be629c-b8b1-434c-9f84-b066f61ac20b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "350c3a8f-0e21-4ce6-afd8-a33f395227d8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:350c3a8f-0e21-4ce6-afd8-a33f395227d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b1adf41b-1c2f-441b-b27d-42b038e527b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020224Z:b1adf41b-1c2f-441b-b27d-42b038e527b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 952EF1A3B3294F26AF790A2D5947AC9A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37C09BFE092342A38747E59337CD4220 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "676" ], - "x-ms-client-request-id": [ "51c9949f-0412-4187-8610-ee1a67e2b27e" ], + "x-ms-unique-id": [ "803" ], + "x-ms-client-request-id": [ "20e9a379-b9a1-410f-9343-c1313fb9a608" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9703,36 +11253,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2d6ee21-92e4-4663-a993-fe352a046512" ], + "x-ms-request-id": [ "4f927e08-a66e-4a0f-85c5-08b4fc9a01ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0deed20c-53a1-4e56-b1e3-f08eae7b5d37" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:0deed20c-53a1-4e56-b1e3-f08eae7b5d37" ], + "x-ms-correlation-request-id": [ "93ba81be-bc23-475b-ba08-25ca961de64b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020225Z:93ba81be-bc23-475b-ba08-25ca961de64b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32D6E7CC55AF4875B1EDE20425F4B28E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB1B933C5F3E4FDDAB6D4E3E0EB83DE6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "677" ], - "x-ms-client-request-id": [ "af4a50b2-917e-45a2-82a9-099d180634c4" ], + "x-ms-unique-id": [ "804" ], + "x-ms-client-request-id": [ "0ae04bcc-3607-419d-ad3a-a392c24bdf31" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9748,36 +11298,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8c78d5f-c43d-4cbc-9be3-2922f6d7fa19" ], + "x-ms-request-id": [ "ea195269-1c3f-4ccb-ba54-13b38b2c96ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ebd850fb-3598-4b93-a45b-1111938bc663" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115824Z:ebd850fb-3598-4b93-a45b-1111938bc663" ], + "x-ms-correlation-request-id": [ "9081a455-5e3e-478e-a043-12ce99e64738" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020225Z:9081a455-5e3e-478e-a043-12ce99e64738" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32A53024FA6340DFB3F0E51ABD73B8DF Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:24Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C16EF50858943D1B0321D0D705938F0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "678" ], - "x-ms-client-request-id": [ "a414cfb7-638b-4ca3-afaf-d941f1d11710" ], + "x-ms-unique-id": [ "805" ], + "x-ms-client-request-id": [ "87094b1b-de81-46cd-8824-1386adc9d7a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9793,81 +11343,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8a55a1c-ca5e-4586-a7c5-2a28115619d4" ], + "x-ms-request-id": [ "852bb61e-52a2-476f-9423-669ee750820e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b1dbc2d7-8f34-4487-a34f-ad685e642d31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115825Z:b1dbc2d7-8f34-4487-a34f-ad685e642d31" ], + "x-ms-correlation-request-id": [ "316b56ab-cc14-4147-893c-d6d87afbd523" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020225Z:316b56ab-cc14-4147-893c-d6d87afbd523" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F77212996B044E991133B60649A0FF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 898BB64A5AD84813A3269895D3D70FA0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+9": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "679" ], - "x-ms-client-request-id": [ "a6615935-e5da-4d7f-b8e1-5520d9bccd25" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4d0e87e-ec51-42d7-85ea-a0994fcb6079" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c03e7ad9-0b7c-4a24-bdb9-1079f9c7105f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115826Z:c03e7ad9-0b7c-4a24-bdb9-1079f9c7105f" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6E59B193AEC4B8CA99703067D266430 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:25Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "680" ], - "x-ms-client-request-id": [ "4dc283b0-1f56-4791-942c-59f4ccd94484" ], + "x-ms-unique-id": [ "806" ], + "x-ms-client-request-id": [ "b143e622-fb5a-4d1c-beaa-c95ac989cb9c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9883,36 +11388,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b47402c-3bcc-45cb-a6a4-9d9ab019a686" ], + "x-ms-request-id": [ "72de5972-1c4b-4e19-9521-d7c150007bdb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "113bce11-3bf3-4699-9880-8099991b7c47" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115826Z:113bce11-3bf3-4699-9880-8099991b7c47" ], + "x-ms-correlation-request-id": [ "86122667-b847-45a5-a764-be51edfad5dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020226Z:86122667-b847-45a5-a764-be51edfad5dd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34F9D10EC9F0438BA91FE85F20CF79B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8F53C1106CE4189A52C4EB213DFD8FE Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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": [ "681" ], - "x-ms-client-request-id": [ "ad0745b0-04db-4570-9925-1550c14e4f70" ], + "x-ms-unique-id": [ "807" ], + "x-ms-client-request-id": [ "8c54301a-6180-4b18-9277-f65a8923e5f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9927,36 +11432,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "43b4beb9-34a9-4498-a414-561581fd2a49", "7f16c131-2b5e-4868-85a4-ee76e843b03d" ], + "x-ms-original-request-ids": [ "3a98f7fd-d6b7-416d-9f6f-b5fc3ffc2fd1", "19ecb088-b0cc-40bc-8ce2-3119d3a9f5bb", "735ed08c-c703-4ae2-9c86-5604c056abfa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0bb9645b-15f1-4074-a270-0cefee75c8a1" ], - "x-ms-correlation-request-id": [ "0bb9645b-15f1-4074-a270-0cefee75c8a1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T115827Z:0bb9645b-15f1-4074-a270-0cefee75c8a1" ], + "x-ms-request-id": [ "647197de-c51a-4ecb-995b-7175a23788b8" ], + "x-ms-correlation-request-id": [ "647197de-c51a-4ecb-995b-7175a23788b8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T020227Z:647197de-c51a-4ecb-995b-7175a23788b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0603D57759D46DE844460EC7DEFA73A Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:26Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3509B49EA04A4727AE4ACADD7142A357 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:27Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "8722e065-a46b-4635-9ba0-5090b64f95e5" ], + "x-ms-unique-id": [ "808" ], + "x-ms-client-request-id": [ "27795b20-0c07-47c5-89d0-dc78ca02666c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9971,30 +11476,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f6a4893e-c728-475b-973b-1f3194a38fc6" ], + "x-ms-request-id": [ "4b76dc0b-7a2b-4f7e-9533-f48ee0c5ec77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e6e38bd0-f84f-4636-8a6e-8c74968b8595" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8af66641-f280-4b36-8e3e-4f8a6f758f8f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c1a49cea-8b5b-4709-bdb8-44c8c9d3c4ac" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T115827Z:c1a49cea-8b5b-4709-bdb8-44c8c9d3c4ac" ], + "x-ms-correlation-request-id": [ "2b48b589-b469-4065-80cd-374ceff85da8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020227Z:2b48b589-b469-4065-80cd-374ceff85da8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A886859EBAE43EC84F459FAFD787983 Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4523993F739B498D91D712F13B89E943 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:27Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Functions-CustomHandlerh7ucdtvris?api-version=2015-05-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-CustomHandleri5nz8vgkem?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-lf9t8w/providers/Microsoft.Insights/components/Functions-CustomHandlerh7ucdtvris?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-CustomHandleri5nz8vgkem?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": { @@ -10014,30 +11519,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a379dd0-3a54-4168-a877-8eda8e01713a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "5326885b-6683-4df1-8f66-39c4ae65bcae" ], - "x-ms-correlation-request-id": [ "5326885b-6683-4df1-8f66-39c4ae65bcae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115833Z:5326885b-6683-4df1-8f66-39c4ae65bcae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a22e1542-8788-4922-96b1-ea74ccbd8843" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "4a684ad0-9ca3-48b4-96f6-5825bf7ee96d" ], + "x-ms-correlation-request-id": [ "4a684ad0-9ca3-48b4-96f6-5825bf7ee96d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020233Z:4a684ad0-9ca3-48b4-96f6-5825bf7ee96d" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C0F351F203A4440A02BE5DC650BBABE Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:27Z" ], - "Date": [ "Wed, 12 Nov 2025 11:58:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B67E8DC4CBC4DD1B765A6E4F52CE930 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:02:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1672" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7206bde0-0000-0300-0000-691476690000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-CustomHandlerh7ucdtvris\",\r\n \"name\": \"Functions-CustomHandlerh7ucdtvris\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlerh7ucdtvris\",\r\n \"AppId\": \"da9cceb4-1628-4015-b256-68f4e8b0a511\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"842eaed2-2241-4893-872c-1c95bd2f5a61\",\r\n \"ConnectionString\": \"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\",\r\n \"Name\": \"Functions-CustomHandlerh7ucdtvris\",\r\n \"CreationDate\": \"2025-11-12T11:58:28.4933694+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-customhandlerh7ucdtvris_da9cceb4-1628-4015-b256-68f4e8b0a511_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerh7ucdtvris-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\": \"\\\"0907b6de-0000-0300-0000-69168db80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-CustomHandleri5nz8vgkem\",\r\n \"name\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"AppId\": \"06745c29-799b-43b3-b8c9-54843eeb4670\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f372138b-4ab7-40fd-b010-fee6cc2bb239\",\r\n \"ConnectionString\": \"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\",\r\n \"Name\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"CreationDate\": \"2025-11-14T02:02:28.5948796+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-customhandleri5nz8vgkem_06745c29-799b-43b3-b8c9-54843eeb4670_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandleri5nz8vgkem-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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlerh7ucdtvris\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"\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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandleri5nz8vgkem\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -10051,39 +11556,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CBB208E72B\"" ], + "ETag": [ "\"1DC550ABEC9414B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f260ccee-499b-42b7-a662-a39f7d10ff62" ], + "x-ms-request-id": [ "3897a49f-266a-4734-91ba-c4df0aa695e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50091875-8ee3-4b0b-8834-fa2b2f24515c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3044eb5e-3ee2-41ef-9142-2d68b9217d7f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5bcf1744-2cc5-4c55-9c18-eec44933d09f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T115929Z:5bcf1744-2cc5-4c55-9c18-eec44933d09f" ], + "x-ms-correlation-request-id": [ "df5a20cc-9bee-4e7f-ba8f-803c45980646" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020316Z:df5a20cc-9bee-4e7f-ba8f-803c45980646" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22ED2345AFAD413686C8D5D50AEBC76E Ref B: CO6AA3150220009 Ref C: 2025-11-12T11:58:34Z" ], - "Date": [ "Wed, 12 Nov 2025 11:59:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 170E284485484C09971D6987A6A76C0C Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8486" ], + "Content-Length": [ "8479" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:58:43.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:02:34.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "685" ], - "x-ms-client-request-id": [ "f933367a-72e4-415a-bdb4-4935ab269343" ], + "x-ms-unique-id": [ "811" ], + "x-ms-client-request-id": [ "603caf6e-ce7d-4c4b-b5c1-a1e6e14a1af7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10097,38 +11602,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CBCCEF31CB\"" ], + "ETag": [ "\"1DC550AD72DA900\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a3fdbf2-a0ef-480e-acfe-0caea2a572f7" ], + "x-ms-request-id": [ "19c7401b-8f3f-46a0-8f4a-5f19ac845771" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e4f93af8-4034-41fe-9bad-37368bfd05b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120000Z:e4f93af8-4034-41fe-9bad-37368bfd05b4" ], + "x-ms-correlation-request-id": [ "e01a365d-5bab-46fc-aaae-a5b72dd21e91" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020346Z:e01a365d-5bab-46fc-aaae-a5b72dd21e91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C74432D700A94EE09B6C0EE8B034800C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:00Z" ], - "Date": [ "Wed, 12 Nov 2025 11:59:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0113889A72984F5C9543DD1397DC52D5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8460" ], + "Content-Length": [ "8448" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:59:29.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "686" ], - "x-ms-client-request-id": [ "13d52244-f7ad-4173-8185-315c6aef982f" ], + "x-ms-unique-id": [ "812" ], + "x-ms-client-request-id": [ "174d49d4-7647-4426-aac3-7376f348ba35" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10143,38 +11648,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CBCCEF31CB\"" ], + "ETag": [ "\"1DC550AD72DA900\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1feb67eb-9475-4853-88b1-c3f2a7812536" ], + "x-ms-request-id": [ "0c470914-c83f-4965-84a8-156496a2dacb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "82020060-851e-40d6-bf1d-e5b0b7bceb62" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120002Z:82020060-851e-40d6-bf1d-e5b0b7bceb62" ], + "x-ms-correlation-request-id": [ "c8f97749-6fd1-4b52-9459-d5d22cc3ae75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020347Z:c8f97749-6fd1-4b52-9459-d5d22cc3ae75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CCE4D140DA0347E5B2DF1082DBE555C9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDCDE0DC7D74455EBA6DA2BC67876677 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8460" ], + "Content-Length": [ "8448" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:59:29.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "687" ], - "x-ms-client-request-id": [ "c00f273f-9d44-4d7d-8a6a-80d7e4c052b6" ], + "x-ms-unique-id": [ "813" ], + "x-ms-client-request-id": [ "e201c48e-1d43-4517-95a8-4e18597cbaba" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10190,36 +11695,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90c7b7dc-df5e-4526-adbd-e341f617a94b" ], + "x-ms-request-id": [ "0da20589-3360-4daf-88a2-c3d98dafe422" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0108f5b-02f9-4dda-9b78-11a7133c4ddf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93699ba7-f5da-4d4f-a502-fca9e4eaa631" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "39857f44-0956-45d7-bc58-953865855810" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120006Z:39857f44-0956-45d7-bc58-953865855810" ], + "x-ms-correlation-request-id": [ "187c4f46-23e6-4ffd-8251-3ca2f4104ed6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020347Z:187c4f46-23e6-4ffd-8251-3ca2f4104ed6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCB58042313845CBBBD539D5BF0E6AD1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D2B24A97C564684888340F2D22C84D7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerh7ucdtvris\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "688" ], - "x-ms-client-request-id": [ "8c53fa65-b422-404d-8511-8ebb39b9845d" ], + "x-ms-unique-id": [ "814" ], + "x-ms-client-request-id": [ "e827b588-000b-4d37-b231-36cb3fe308a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10235,37 +11740,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1efa635-a0cc-48c8-a4bf-e0bcc6ea6d4d" ], + "x-ms-request-id": [ "4229fc08-499f-4e3b-a591-4015c44cec63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/573daf6a-fe71-463d-9115-794bfed34f5d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/100aa6ac-a7f1-4048-8b9e-70dd8e8a3592" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68d5ea00-0b69-4af1-a3c6-7389be4042c2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120009Z:68d5ea00-0b69-4af1-a3c6-7389be4042c2" ], + "x-ms-correlation-request-id": [ "b311e28a-64b1-4805-8bbe-051660d3f69e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020347Z:b311e28a-64b1-4805-8bbe-051660d3f69e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA09BBBD1CB0413BB7D18541E93676EF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4AA1A5840BB64CE6BF2919E6B9C740FC Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites/config\",\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites/config\",\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "689" ], - "x-ms-client-request-id": [ "0209c601-fe73-4b8e-adca-6b33cba1cb7c" ], + "x-ms-unique-id": [ "815" ], + "x-ms-client-request-id": [ "22680085-9c46-4be0-b90b-fab5aa896915" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10281,36 +11786,173 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a81b28b0-36c2-47c2-a617-aed310ab2564" ], + "x-ms-request-id": [ "d49bf282-1ed8-4974-ad83-95d33b180f6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/542e5c52-31a5-4dba-a11a-4c3eef0350c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/676c551e-7a3b-4c1c-be53-d317ec1e4735" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "83f029a7-126a-4f61-ae86-42f136b58b69" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120011Z:83f029a7-126a-4f61-ae86-42f136b58b69" ], + "x-ms-correlation-request-id": [ "1b6724fa-c099-4720-8461-fd55ce4fb214" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020348Z:1b6724fa-c099-4720-8461-fd55ce4fb214" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DCE351B47A9148DBA569BBBF6633B10F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6088F6F4571C44C5A05C2A97F245C9BC Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerh7ucdtvris\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "690" ], - "x-ms-client-request-id": [ "a2e28646-a87e-49fe-acd2-b8b35190acf7" ], + "x-ms-unique-id": [ "816" ], + "x-ms-client-request-id": [ "98b5e3ee-f8e4-4f93-86d3-5a116d311259" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550AD72DA900\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9d37564e-59a2-48ba-b3fe-dfc494e2ca29" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8c8e56e3-f942-4459-a6f8-00d30c349f95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020348Z:8c8e56e3-f942-4459-a6f8-00d30c349f95" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DE37B32B9C9D426DA6E738C943812D4A Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8448" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "817" ], + "x-ms-client-request-id": [ "9caea8f3-abe7-4135-93c5-6916824b087b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e96284a7-ad3a-429b-9003-2576fd40bc40" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8be59c38-8004-47a0-9ba1-b5868bbf256d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ca16b4b6-7f8f-4e82-9607-1099ec014926" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020348Z:ca16b4b6-7f8f-4e82-9607-1099ec014926" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A0D268B8D44D4047A01BB0C6A1BE5650 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1174" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "818" ], + "x-ms-client-request-id": [ "89c45747-a47d-4885-bc18-3ebbd2db0a02" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "d8c3f4da-d2b3-45d2-804e-4b6751082668" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57258e5e-4b74-4cca-a735-b1c05bed155d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "062310ac-1121-4620-a416-4452104b3907" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020349Z:062310ac-1121-4620-a416-4452104b3907" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3ED8EF2A43374ABC9A002B14763713EE Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4184" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "819" ], + "x-ms-client-request-id": [ "33f1e5f8-adc2-4d05-9843-ef45b9450ec8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10325,38 +11967,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CBCCEF31CB\"" ], + "ETag": [ "\"1DC550AD72DA900\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c164acf-0424-47c6-92d7-f3f47e03608c" ], + "x-ms-request-id": [ "2cb9072b-52f9-4867-bb52-03a8b1b679bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b39da265-4a52-459b-87f1-0cc70a713c88" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120014Z:b39da265-4a52-459b-87f1-0cc70a713c88" ], + "x-ms-correlation-request-id": [ "aef16c20-d08e-4581-96c8-2171f4ca2749" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020349Z:aef16c20-d08e-4581-96c8-2171f4ca2749" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C84F9A3A72443B3A5AE8114EFF3CD7E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49F84862DCFE44099F8516D9E87B5545 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8460" ], + "Content-Length": [ "8448" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-CustomHandlerh7ucdtvris\",\"repositorySiteName\":\"Functions-CustomHandlerh7ucdtvris\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerh7ucdtvris.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:59:29.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlerh7ucdtvris\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlerh7ucdtvris\\\\$Functions-CustomHandlerh7ucdtvris\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-customhandlerh7ucdtvris.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "691" ], - "x-ms-client-request-id": [ "fcf7c37b-e992-419e-937c-6c5d5b4fe5c4" ], + "x-ms-unique-id": [ "820" ], + "x-ms-client-request-id": [ "049c8670-31ad-42c5-a2c6-548ff1afe4fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10372,36 +12014,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "325de87e-c266-4676-a177-2e28f60028f9" ], + "x-ms-request-id": [ "f61d4bc9-2fb5-4462-9072-22d93439c8d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6e050be-5bb2-4a0f-891b-d615d1b222a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5cfcde7-e621-495f-af3f-5d6646c30b53" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c2d4e42c-63c8-4bb7-998c-c25d64be81d6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120017Z:c2d4e42c-63c8-4bb7-998c-c25d64be81d6" ], + "x-ms-correlation-request-id": [ "d2eb32fa-6007-4ffd-9d91-8e78b48cb1a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020349Z:d2eb32fa-6007-4ffd-9d91-8e78b48cb1a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 778C06B75B6947CA9CD311AB9C0DB574 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1737386B7273427AAD39ED06AD5B86FE Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerh7ucdtvris\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "692" ], - "x-ms-client-request-id": [ "85f32ed3-4b6d-4f4c-92b9-7d07cef8f6bc" ], + "x-ms-unique-id": [ "821" ], + "x-ms-client-request-id": [ "6b71b5e5-712b-421e-9071-f3bd5fe87500" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10417,37 +12059,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86c6efa2-e66d-4903-967f-babc790d70b6" ], + "x-ms-request-id": [ "5fbeb0f0-4397-4de5-b71e-c60b3a49b2cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2caa753e-a137-4a4f-b5e8-abfe38ee2c8e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9fab3c64-74d3-46f1-a863-d1d244209c52" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5d93d4f2-f983-426c-95c3-d6325d146ff9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120017Z:5d93d4f2-f983-426c-95c3-d6325d146ff9" ], + "x-ms-correlation-request-id": [ "d6812723-b930-4e44-88bc-16e79a71b258" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020350Z:d6812723-b930-4e44-88bc-16e79a71b258" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B930E1A8B37B457DAEB02238A55674B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 08153A290A7C47C7B4EAF32F21767D5D Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris/config/web\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"Microsoft.Web/sites/config\",\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "822" ], + "x-ms-client-request-id": [ "177067dd-d314-4930-810a-018aba0f78b9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "236e98d5-c6e6-4c80-a754-b5821de35156" ], + "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": [ "1ebc8cce-f678-4bd5-8c59-7726e738dcae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020350Z:1ebc8cce-f678-4bd5-8c59-7726e738dcae" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9D8BA0D6CABF45949042B795C9A02BF9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-CustomHandlerh7ucdtvris?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "693" ], - "x-ms-client-request-id": [ "2a9ec2f3-d8bb-4692-90a5-e7af12f9dfb3" ], + "x-ms-unique-id": [ "823" ], + "x-ms-client-request-id": [ "acadbb6d-d28a-4dda-8864-90e589284f75" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10462,20 +12149,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CBCCEF31CB\"" ], + "ETag": [ "\"1DC550AD72DA900\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37410850-29ac-485f-a7f6-93a2abde6251" ], + "x-ms-request-id": [ "c4aaf20f-b068-454c-bd1b-96cca6b121ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4540d58f-1e7a-4184-bdfe-15e7951214c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3adf238d-ffa0-430c-b555-2b88cb6bb875" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "5d4deeec-0ff5-42b7-b1cf-85228d0a574d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120027Z:5d4deeec-0ff5-42b7-b1cf-85228d0a574d" ], + "x-ms-correlation-request-id": [ "2af37d7e-c147-40ff-8ec0-e55abb59e400" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020358Z:2af37d7e-c147-40ff-8ec0-e55abb59e400" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7527F37B7F47405695C17406B06880B8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4BAAFA9D8DBD4616AB3CF04D60E6E869 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -10489,7 +12176,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -10504,18 +12191,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba5150f6-9f2b-4c21-834a-50309ac1a285" ], + "x-ms-request-id": [ "2b9369fc-62aa-4155-8cc7-5f3384150f84" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f0e3fb06-c36f-4334-8702-1959c1631a83" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92651133-d40f-4a76-864c-8aadae93dedf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff3a5f53-fd8b-478d-a19e-ddfc637b9700" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120027Z:ff3a5f53-fd8b-478d-a19e-ddfc637b9700" ], + "x-ms-correlation-request-id": [ "c1b4eb77-177d-4e52-b559-8fb15a2506c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020359Z:c1b4eb77-177d-4e52-b559-8fb15a2506c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 441D06BCF5194A998A70632147ACBF5F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35B03B8F4C0A48E5845F62484132D5AB Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:58Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -10530,7 +12217,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-f93hv67mky\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -10545,18 +12232,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9804384d-51bb-40f4-8140-23f12436d6a4" ], + "x-ms-request-id": [ "4592d45b-84bd-4a7a-a207-22625ca6fa09" ], "X-AspNet-Version": [ "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/3b2b5993-0964-4900-8982-f6c3dc2254bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e321ce30-63ba-4644-b4c8-a512540c4b2a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6122de1-7eab-4584-b694-a4e658f2c030" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120028Z:c6122de1-7eab-4584-b694-a4e658f2c030" ], + "x-ms-correlation-request-id": [ "f93f8f0f-db24-447a-bd6f-ec1509b56975" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020359Z:f93f8f0f-db24-447a-bd6f-ec1509b56975" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 709130AB44224BD0B8BCBD78E33A2EFB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42E746E03099436987567D408272A94A Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:59Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:58 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 c145233ac2c9..2c32a8cba3b9 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "696" ], - "x-ms-client-request-id": [ "c5f309ed-d23d-4188-b08a-f722877ae5c2" ], + "x-ms-unique-id": [ "826" ], + "x-ms-client-request-id": [ "f9989e7d-c7b6-49dd-b7e9-9bb9b8a8b515" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "351fb77e-aa7b-4925-becb-f3571151a32a" ], + "x-ms-request-id": [ "27eeeeae-d6c8-4f24-b5d1-7ca6262e9ef8" ], "X-AspNet-Version": [ "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/2c554dea-7536-4b0a-8200-ef3fa15bc848" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/79e916b6-355b-4f9d-9d88-2a4974a3854f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1fb1f77d-cb66-4a6e-8c0f-5e054c22e57b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120028Z:1fb1f77d-cb66-4a6e-8c0f-5e054c22e57b" ], + "x-ms-correlation-request-id": [ "d51f8776-144b-4e3d-98d4-ab0218e98dfa" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020400Z:d51f8776-144b-4e3d-98d4-ab0218e98dfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5CEB70CC76F4F3BAF4211A80319C453 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:28Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA87CA3C9A5D491183124E246D1869A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:03:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -45,10 +45,10 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CBF13E5715\"" ], + "ETag": [ "\"1DC550AF2E70815\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3648c549-f3f5-4ca2-aaaf-10b16740fa34" ], + "x-ms-request-id": [ "747dde38-78ab-4783-96f1-039de547cd80" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db9b6de0-6aa5-4bc9-b286-ec7917ece00c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/48f34fa3-27ae-4aed-ac6d-ed9772747f72" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "81a495a1-ba8e-43de-94b0-0293d9abbbbd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120031Z:81a495a1-ba8e-43de-94b0-0293d9abbbbd" ], + "x-ms-correlation-request-id": [ "b4716fdd-0d0e-43da-a5eb-82ed81fad69a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020404Z:b4716fdd-0d0e-43da-a5eb-82ed81fad69a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E0CB53B3F16346E5BF173CAD092D8C44 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:00:28Z" ], - "Date": [ "Wed, 12 Nov 2025 12:00:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7651E08535674B45BF01ED65DEB8DDE6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1900" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "698" ], - "x-ms-client-request-id": [ "85b74f17-c4e8-4e6c-8aec-b81b4ec3eb5a" ], + "x-ms-unique-id": [ "828" ], + "x-ms-client-request-id": [ "72a50562-2d84-4208-b781-14652442c52c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -111,37 +111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14eca667-d0b3-4af5-96d0-bfbdd6b3fb82" ], + "x-ms-request-id": [ "cc32ec61-13b3-4589-956d-99ae9cdd62d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ff060c8-f2e5-45c3-ad1b-3da198efab3a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120101Z:3ff060c8-f2e5-45c3-ad1b-3da198efab3a" ], + "x-ms-correlation-request-id": [ "c05502e5-ecab-4b06-a2ec-8630e2eacd30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020434Z:c05502e5-ecab-4b06-a2ec-8630e2eacd30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFCF66BA194344B3BF97AA390DD0CB0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9779AA7C6EB488CB592586691C64C5B Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "699" ], - "x-ms-client-request-id": [ "85b74f17-c4e8-4e6c-8aec-b81b4ec3eb5a" ], + "x-ms-unique-id": [ "829" ], + "x-ms-client-request-id": [ "72a50562-2d84-4208-b781-14652442c52c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -156,36 +156,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1ea179bf-6e8a-4667-93a4-237666931fee" ], + "x-ms-request-id": [ "3057a865-3835-4823-94bd-c3dcdf02d337" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a9b9193b-f3f7-469a-8b8b-56a5b4ea81e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120102Z:a9b9193b-f3f7-469a-8b8b-56a5b4ea81e6" ], + "x-ms-correlation-request-id": [ "181dcc97-6429-47da-b1c9-9b54c4ebf9cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020434Z:181dcc97-6429-47da-b1c9-9b54c4ebf9cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 279355A75B024F65BE629659FAF9678A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F57873818B1E43EC8CC519339F026C2C Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "fd311022-9286-4b01-a974-87ce64b6b284" ], + "x-ms-unique-id": [ "830" ], + "x-ms-client-request-id": [ "158aaf22-5760-4303-9536-cb7020d909b6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -201,36 +201,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d946279-9801-4b46-93fa-ef98aab2997a" ], + "x-ms-request-id": [ "77bee826-339b-40b0-bc06-2b8f34026696" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d738977b-e648-47e4-86a4-c08e2da26601" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120102Z:d738977b-e648-47e4-86a4-c08e2da26601" ], + "x-ms-correlation-request-id": [ "4427dc2a-2639-4106-b09e-8152e187d54d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020434Z:4427dc2a-2639-4106-b09e-8152e187d54d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5122EAB3EDD347208C73D51DE5263AEC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3A0F0ABE13048859CEB13E3BBFFED64 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "701" ], - "x-ms-client-request-id": [ "8876a2e0-2d81-4c12-a47b-e5c00215b793" ], + "x-ms-unique-id": [ "831" ], + "x-ms-client-request-id": [ "ea181a66-003b-4009-86d1-93c8a9979582" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -246,36 +246,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc114453-7294-499f-987f-fb3bea13ec23" ], + "x-ms-request-id": [ "ce960439-e5ad-4aa4-9d0c-8fbcec38ea7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a78a8d64-018d-4df5-a2dd-e0060b09f3ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120102Z:a78a8d64-018d-4df5-a2dd-e0060b09f3ca" ], + "x-ms-correlation-request-id": [ "601d05e0-3cf4-4d3f-bb0f-a86860fa5d4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020435Z:601d05e0-3cf4-4d3f-bb0f-a86860fa5d4f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1F5687ECF0847909790F34F0830C65B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F3A2B6486334532B04C04F8FC935815 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072\",\"name\":\"Functions-MyPlan-4gtyj69072\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60678,\"name\":\"Functions-MyPlan-4gtyj69072\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60678\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:00:29.7066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyPlan-4gtyj69072?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "702" ], - "x-ms-client-request-id": [ "7c54b112-9577-40d8-81cd-b47b844043d5" ], + "x-ms-unique-id": [ "832" ], + "x-ms-client-request-id": [ "0de2e4d3-7bd4-4466-b3a4-0fda70e95768" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -291,18 +291,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "076a41f3-cc26-4d79-b0c6-ff430e091724" ], + "x-ms-request-id": [ "ae81ba98-9852-4916-9c9c-168ec2fce2ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/450526be-bcd8-4ecd-b5b4-cc5abbe38e70" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f95f773b-972e-4025-8fc4-fa3b17a92482" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "088b1cea-a5e8-4a08-89f4-ce94f1b8f1a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120107Z:088b1cea-a5e8-4a08-89f4-ce94f1b8f1a7" ], + "x-ms-correlation-request-id": [ "7bbbc794-d3f8-4dfa-b080-823ae216b2b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020440Z:7bbbc794-d3f8-4dfa-b080-823ae216b2b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42A2ACC546D9465DB0E93512F2878320 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15B1FCBBB9494D15BF2F8B8183099126 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:39 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 c19db14db684..b4f0373e1bc0 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-wxft49p0i3\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\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": [ "ab352dbc-7642-4cd0-9e3f-2738bc5a1447" ], + "x-ms-request-id": [ "54b692c5-aaf0-44cf-ac3d-13853e089eba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4014cd94-1ea4-4f81-8818-bc0004c611ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5debc7b1-f608-435e-aaea-e1f910819bee" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68ea2357-d0c7-4f44-8ad6-a2f4a1eb90c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120108Z:68ea2357-d0c7-4f44-8ad6-a2f4a1eb90c5" ], + "x-ms-correlation-request-id": [ "bdf1e2a2-de94-4b04-a046-d8fa9a35f21f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020441Z:bdf1e2a2-de94-4b04-a046-d8fa9a35f21f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0560D0496D54D7AB56832BDDA47836A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28E4D12023174E82A6C8D38C470CA845 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,8 +47,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "34a04120-e0e4-4138-b2f8-51248573c94f" ], + "x-ms-unique-id": [ "834" ], + "x-ms-client-request-id": [ "c8086db2-7289-48ed-8393-d73b45b1d76e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,36 +63,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "825b7d58-e825-4fca-abfa-b08583973911", "1a5558c0-0247-444a-af49-11e78f2fcb39" ], + "x-ms-original-request-ids": [ "a1f9c886-82d9-45a0-a35c-79fb14ed5cac", "d310e061-598f-492b-94c6-31cbd84d7994" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6247d840-ae48-4ed7-a654-349569f3ee67" ], - "x-ms-correlation-request-id": [ "6247d840-ae48-4ed7-a654-349569f3ee67" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120109Z:6247d840-ae48-4ed7-a654-349569f3ee67" ], + "x-ms-request-id": [ "f178a9c3-a052-43ee-89bd-f7efb2cd1f4a" ], + "x-ms-correlation-request-id": [ "f178a9c3-a052-43ee-89bd-f7efb2cd1f4a" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T020442Z:f178a9c3-a052-43ee-89bd-f7efb2cd1f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 972AE43877954CEDB20C5C2901391F9D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CCCD41D61E14B0B994ADCAD38755219 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "15460" ], + "Content-Length": [ "13689" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "8b7fa491-9c1d-4696-b80a-14706d39d66f" ], + "x-ms-unique-id": [ "835" ], + "x-ms-client-request-id": [ "fc385576-0438-4443-88ac-575b234174cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -108,36 +108,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28f3f27a-e440-4589-8480-7e0b433bb793" ], + "x-ms-request-id": [ "e33677ca-c8fb-4b27-b9fe-2701a3398ccf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4fd22817-34a2-4a3b-89d9-885a4c5bc0c4" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T120109Z:4fd22817-34a2-4a3b-89d9-885a4c5bc0c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ac169e32-ab5c-42a2-825b-7d625dc112f6" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T020443Z:ac169e32-ab5c-42a2-825b-7d625dc112f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B436F56B7CAA490FAF1D34E542855AF5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E3114CA786B4CD98B4622634C5D2207 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "706" ], - "x-ms-client-request-id": [ "b1e2ab39-85a6-4fd0-9a74-a98bd39692dd" ], + "x-ms-unique-id": [ "836" ], + "x-ms-client-request-id": [ "ca877813-20b0-4840-b98d-d8fae4eddd3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -153,36 +153,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5db9535-e8c7-4269-a2ff-a1213458fa09" ], + "x-ms-request-id": [ "2315e440-2d92-43f5-869e-103a73212a98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "17b48962-fb07-4b8e-92ea-65f0e2c4963a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:17b48962-fb07-4b8e-92ea-65f0e2c4963a" ], + "x-ms-correlation-request-id": [ "060ee8bc-51a7-443b-bc12-abf8b53ec4ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020443Z:060ee8bc-51a7-443b-bc12-abf8b53ec4ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EA641A83ABE442CB902A088F44044EB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B8EB09590204EFF9E8FA176E3B1211F Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "707" ], - "x-ms-client-request-id": [ "874d550d-64d2-48a6-9914-e75d712cdf0e" ], + "x-ms-unique-id": [ "837" ], + "x-ms-client-request-id": [ "996be956-4dff-4d7c-87d7-a4efd89cf5ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -198,81 +198,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e00be0d-5e1f-4e6c-9a00-4fbbc6bfdbcd" ], + "x-ms-request-id": [ "e0386765-e0ef-45d5-bb57-272522bf6954" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3d9f14c3-520b-4c84-8176-f2cf9c83dbaf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:3d9f14c3-520b-4c84-8176-f2cf9c83dbaf" ], + "x-ms-correlation-request-id": [ "9e330833-5d86-4c38-bc59-d575b1f6e533" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020443Z:9e330833-5d86-4c38-bc59-d575b1f6e533" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB10884650384B2A95D5EB5821DC91A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3404E185870745AC9AE8A13AD6C9D9B1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "bd3fee4f-2036-443e-b933-f258c616a030" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d61b7f8-c4e3-4abd-9e53-359502223af7" ], - "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": [ "231592ba-a136-4798-9961-d2796401762a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:231592ba-a136-4798-9961-d2796401762a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D79F2211B6E4274B0FAC0E21FFD0856 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1758" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "709" ], - "x-ms-client-request-id": [ "3c15c0c9-3f54-43a0-8366-bfc2b65ec404" ], + "x-ms-unique-id": [ "838" ], + "x-ms-client-request-id": [ "dc4f5aa3-ac90-41f7-a0ea-985d8d29acae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -288,36 +243,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "34c96cf3-25ce-4819-be66-eb1f10590c9c" ], + "x-ms-request-id": [ "eed16e9f-3acc-4a9a-b99d-97cfcada133b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "246b9cb1-6638-4c59-a67d-350079ceb359" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:246b9cb1-6638-4c59-a67d-350079ceb359" ], + "x-ms-correlation-request-id": [ "99eeb02c-e8f3-4d45-9eab-55907c023296" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020443Z:99eeb02c-e8f3-4d45-9eab-55907c023296" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41C64D56C7F34D6C90649DF428921096 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C82489E0BC8543E7A17664A024EAB291 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "710" ], - "x-ms-client-request-id": [ "411d1171-b2df-45e2-96ea-de67592a7725" ], + "x-ms-unique-id": [ "839" ], + "x-ms-client-request-id": [ "ef7a5e63-24db-4bde-a8ae-2f904d86fe57" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -333,36 +288,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "369c8f44-870c-4415-83aa-5a42379fe230" ], + "x-ms-request-id": [ "657fd777-6fdb-4184-8b96-a2e890a734c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cbde5e29-9304-4576-8dc9-4bba17fd55b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120110Z:cbde5e29-9304-4576-8dc9-4bba17fd55b3" ], + "x-ms-correlation-request-id": [ "1d0a4ee2-d810-47a3-b645-68ae802415df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020444Z:1d0a4ee2-d810-47a3-b645-68ae802415df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDCF62F7DC0348579A2C96FA0D75EA11 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 405E5A11A80B49C5856E809D17FC2267 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "711" ], - "x-ms-client-request-id": [ "cfc8507d-dc42-4616-ba58-8ad08c706d45" ], + "x-ms-unique-id": [ "840" ], + "x-ms-client-request-id": [ "cf2281a1-c86d-4429-8b6f-b9ce5b499ea0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -378,36 +333,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d3e7af7-c17a-426c-823f-9a0f935ff823" ], + "x-ms-request-id": [ "3a73336c-5f12-421e-91d8-b38d630167c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "67d7b7a2-3c12-4871-ae79-963d92af39fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120111Z:67d7b7a2-3c12-4871-ae79-963d92af39fb" ], + "x-ms-correlation-request-id": [ "7a0bcb0c-37c3-4c9b-9bf9-ae3e4c1b26de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020444Z:7a0bcb0c-37c3-4c9b-9bf9-ae3e4c1b26de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFE275F4614B41A89B8683B14CB83934 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFC41FEA2ADA49188EAA2F059D4F8272 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "712" ], - "x-ms-client-request-id": [ "d4349e66-fb03-471e-b10e-35d27ba599c0" ], + "x-ms-unique-id": [ "841" ], + "x-ms-client-request-id": [ "759e5e9f-d206-43b1-bffc-dbeb9b5dfbc2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -423,36 +378,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec75d327-835b-4bd2-b7dc-ea41a2591f35" ], + "x-ms-request-id": [ "8bb1039a-e7ce-473d-b439-2433950eaf91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "daf802a2-eb4c-48f6-a277-6d26730eab04" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120111Z:daf802a2-eb4c-48f6-a277-6d26730eab04" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "43195b48-b9fa-4721-a697-0fa5aab09c4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020444Z:43195b48-b9fa-4721-a697-0fa5aab09c4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C5449E0534F46B19E7FD91541029064 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6663356D04CB427DA832A866A78725B0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "713" ], - "x-ms-client-request-id": [ "7c0ad476-b354-4545-92b5-1eb072915de8" ], + "x-ms-unique-id": [ "842" ], + "x-ms-client-request-id": [ "d5dd1e82-0f31-4478-a11b-6ae91aae6fe4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -468,36 +423,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1eb760c-3c60-412a-9613-a30c915b0efc" ], + "x-ms-request-id": [ "17b634fd-c243-4f20-a69c-36ddf13bb2a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f426e01f-98a4-4d1f-b66b-8462a1318209" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120112Z:f426e01f-98a4-4d1f-b66b-8462a1318209" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2ce4ffd0-dab5-4cab-b17a-a7708c3d02e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020445Z:2ce4ffd0-dab5-4cab-b17a-a7708c3d02e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C8F37EDA838432F825E26D77D881E23 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 711E976FB9704D96856DD3EF8453144A Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "714" ], - "x-ms-client-request-id": [ "ad076213-40ea-4d3c-b448-edade5be0691" ], + "x-ms-unique-id": [ "843" ], + "x-ms-client-request-id": [ "88d051d0-3977-4f12-9962-59d6ea067b13" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -512,36 +467,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "cada9ca8-ac56-4760-9c2b-79d295087def", "be9e058e-4855-49a3-9837-f986288700f7" ], + "x-ms-original-request-ids": [ "0759624a-1ff7-4868-a26e-19cdf7fbc088", "6061f59c-f5f7-4be6-9866-76c5d0a36b96", "3711c5f1-a2a5-471e-be31-36ac9518fba7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "090abcd6-8e9a-44d0-96c5-c059aeae2c9d" ], - "x-ms-correlation-request-id": [ "090abcd6-8e9a-44d0-96c5-c059aeae2c9d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120112Z:090abcd6-8e9a-44d0-96c5-c059aeae2c9d" ], + "x-ms-request-id": [ "020e2afb-6b8d-485a-a31c-abf5a2ea089e" ], + "x-ms-correlation-request-id": [ "020e2afb-6b8d-485a-a31c-abf5a2ea089e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T020446Z:020e2afb-6b8d-485a-a31c-abf5a2ea089e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19520FFC0C6942AE8AC205E4922BDED7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 669150DD1CD449538F73532BC6B941B3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:45Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "715" ], - "x-ms-client-request-id": [ "f1d96794-3281-40d1-84dc-1b8967577845" ], + "x-ms-unique-id": [ "844" ], + "x-ms-client-request-id": [ "30efcd98-70fc-4d21-822a-b9df35354fb7" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -556,30 +511,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7f6a0978-91a8-43d6-8bee-c3d06976d799" ], + "x-ms-request-id": [ "1eb63a87-2c35-4e5c-a6da-af96800ebbb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/606fa90c-d059-4043-b4c6-3502540eba93" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/940b3dca-198c-45a1-b56c-fb3ce7094a96" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f6596221-3dbb-4bc8-b131-abb3cd91e6a6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120113Z:f6596221-3dbb-4bc8-b131-abb3cd91e6a6" ], + "x-ms-correlation-request-id": [ "8633f53d-3c61-46a5-b69b-c6d746739b5d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020446Z:8633f53d-3c61-46a5-b69b-c6d746739b5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D4A7BBBEA8B4A8993CB4970DA49D3FE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51DA7019B0B742B09049DC226A8E19B8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2015-05-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i?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": { @@ -599,30 +554,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75301c0a-0d0d-4434-bfb1-a3b2ee509bd7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b900fc1-8a05-48bb-bf23-e3bb5092b3a8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "d70e97d9-327a-4482-8a79-accfbad29b5f" ], - "x-ms-correlation-request-id": [ "d70e97d9-327a-4482-8a79-accfbad29b5f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120117Z:d70e97d9-327a-4482-8a79-accfbad29b5f" ], + "x-ms-request-id": [ "2e63ee3b-6282-48de-aa16-3c77615c23be" ], + "x-ms-correlation-request-id": [ "2e63ee3b-6282-48de-aa16-3c77615c23be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020450Z:2e63ee3b-6282-48de-aa16-3c77615c23be" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFF97A5C2DB24C61A93EEBBE6BB45690 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:13Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 257ED6DFD429479DB186EF6E320AEBAE Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:04:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7306170d-0000-0300-0000-6914770d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"name\": \"Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"AppId\": \"9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9de2c055-196f-42d0-b5e1-cf9251513b66\",\r\n \"ConnectionString\": \"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\r\n \"Name\": \"Func-PowerShell-NewTest2-wxft49p0i3\",\r\n \"CreationDate\": \"2025-11-12T12:01:13.6018697+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-wxft49p0i3_9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-wxft49p0i3-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\": \"\\\"0a074c05-0000-0300-0000-69168e420000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"name\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"AppId\": \"f831a539-3e5d-49d6-bdf4-43ce042be59e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8ab8c13b-cb8c-4057-ace2-9817a5305f7a\",\r\n \"ConnectionString\": \"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\r\n \"Name\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"CreationDate\": \"2025-11-14T02:04:47.2094865+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-zeaoxcpv3i_f831a539-3e5d-49d6-bdf4-43ce042be59e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-zeaoxcpv3i-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-wxft49p0i3\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-zeaoxcpv3i\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -636,39 +591,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC0EA80B40\"" ], + "ETag": [ "\"1DC550B10EE68D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58dbbbc8-892b-4fa8-a450-8b5712042ce9" ], + "x-ms-request-id": [ "0057ecfc-07ed-46c4-85ae-ffacc630e025" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4c836d77-042b-4b55-a011-74326c2bb862" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fd68c550-3744-4814-b58f-770aa74a9e02" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "0f31ed2e-4a40-4a0e-abf4-c1c1188d2661" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120159Z:0f31ed2e-4a40-4a0e-abf4-c1c1188d2661" ], + "x-ms-correlation-request-id": [ "7eb9d458-a163-4101-8c5c-524db150040d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020532Z:7eb9d458-a163-4101-8c5c-524db150040d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73EF933EB0C94B6881BEF8B159175C69 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:01:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:01:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A37B5E575731424FA7EE77B84D6D7D9A Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:05:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8502" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:19.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:04:52.35\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "718" ], - "x-ms-client-request-id": [ "6a9fbf4d-2b89-4532-b1a3-b608a2828d69" ], + "x-ms-unique-id": [ "847" ], + "x-ms-client-request-id": [ "63b73d84-f300-4f16-8748-30507fa31ddf" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "" ], @@ -682,38 +637,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC25E0DE40\"" ], + "ETag": [ "\"1DC550B2853FE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70d4bd8f-ca27-4c42-a731-a0ef35985005" ], + "x-ms-request-id": [ "94e2f648-6b79-4290-bfc7-4149becb083f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8217ed0-e18e-43ca-8dd1-787c5396c105" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120229Z:c8217ed0-e18e-43ca-8dd1-787c5396c105" ], + "x-ms-correlation-request-id": [ "c90675a0-6942-469e-bc5a-8f2014f7d91b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020603Z:c90675a0-6942-469e-bc5a-8f2014f7d91b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4523951E0844710988D8CA051ADD969 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:29Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBA373ED670243CDAAA01732C737AEE2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:58.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:05:32.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "719" ], - "x-ms-client-request-id": [ "2df89dd4-f5c6-4887-8cb8-70c921c2e031" ], + "x-ms-unique-id": [ "848" ], + "x-ms-client-request-id": [ "e136db55-fce0-4c9d-b029-219843ef286c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -728,38 +683,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC25E0DE40\"" ], + "ETag": [ "\"1DC550B2853FE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6acccef9-192e-4dd5-af7e-2c4d194bc2cf" ], + "x-ms-request-id": [ "b20e98f7-e037-4e02-816d-df2951b87b28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0cfe4dca-269a-4a6b-9ed6-7c537e78af51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120230Z:0cfe4dca-269a-4a6b-9ed6-7c537e78af51" ], + "x-ms-correlation-request-id": [ "8477396d-5da8-4682-b0fc-811781f71563" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020603Z:8477396d-5da8-4682-b0fc-811781f71563" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB53A8DF7C6E4CAD905CB0DC70068706 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:29Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 462A94235C93498480610976921E16DF Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:58.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:05:32.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "720" ], - "x-ms-client-request-id": [ "5dfb2bec-e930-43c2-a276-47c6ce9c64d2" ], + "x-ms-unique-id": [ "849" ], + "x-ms-client-request-id": [ "76f3b273-0d66-4a02-963c-7592412d47bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -775,36 +730,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fad63145-ea35-4fd2-b109-a54cd335eead" ], + "x-ms-request-id": [ "13d029d3-03af-48dd-ae68-02d6d43883da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bcfee55d-c14f-403c-a914-548b5b7710b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36a9d5fa-d36d-4ba0-b08f-3e3e3572203f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b177b8f6-afd8-4524-9e4d-acf691f717d9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120230Z:b177b8f6-afd8-4524-9e4d-acf691f717d9" ], + "x-ms-correlation-request-id": [ "8bd79a16-0982-4177-a9a7-6beefd3898ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020603Z:8bd79a16-0982-4177-a9a7-6beefd3898ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8FCC431522754D2D853227E67241ACA3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:30Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9000AF4951094EAA8B50F426867228B5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "721" ], - "x-ms-client-request-id": [ "8d08fcbe-5afc-46ab-9665-a5066b60daa8" ], + "x-ms-unique-id": [ "850" ], + "x-ms-client-request-id": [ "ecfc3dc0-2e5c-449d-93dc-02f5e9aa3b88" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -820,37 +775,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56423424-88c2-4589-855b-d581c0d90374" ], + "x-ms-request-id": [ "faedef61-5bc8-4019-80a3-fe3bbb50c4ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d04940b9-29c7-4413-9cc1-acce6125e3f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e876c78-e9a6-4e5d-b1ef-96159b7cf2e1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9beb04b3-590a-4843-a8b5-761069538a8c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120230Z:9beb04b3-590a-4843-a8b5-761069538a8c" ], + "x-ms-correlation-request-id": [ "1ee6e286-4af0-4162-adab-beaba9e10387" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:1ee6e286-4af0-4162-adab-beaba9e10387" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAA4C71EC48643CFB7CDB4CA613C4F10 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:30Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF09441FBC724AB08E20F10FCDC3F53A Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "722" ], - "x-ms-client-request-id": [ "abae568e-ba3e-4b18-94ba-c82585984628" ], + "x-ms-unique-id": [ "851" ], + "x-ms-client-request-id": [ "95303489-8fa8-4b5e-ab5a-e5c11f63c1bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -865,38 +820,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC25E0DE40\"" ], + "ETag": [ "\"1DC550B2853FE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5719973b-c5b3-4e68-8366-8542857a1dac" ], + "x-ms-request-id": [ "0632a12e-f575-4db5-87e7-998ec79369c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df47744f-4605-4454-a737-a568f00e9d8a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120231Z:df47744f-4605-4454-a737-a568f00e9d8a" ], + "x-ms-correlation-request-id": [ "b2c0afe5-0568-4774-b2e2-62920d65a909" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:b2c0afe5-0568-4774-b2e2-62920d65a909" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55ABCBBF10C3452990820236297AE2A4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:30Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0C7EAB8749244D19219D94717144EE3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:01:58.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:05:32.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "1cf8e199-81c7-4963-9057-1d0688713a06" ], + "x-ms-unique-id": [ "852" ], + "x-ms-client-request-id": [ "f3dfa71d-d6c9-4fd2-89eb-346c316afc9d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -912,36 +867,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efe6f200-2ce2-493e-9bd3-d6bb54566435" ], + "x-ms-request-id": [ "cc6c2d30-122c-448c-97e0-f24af1d58d69" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f979c01f-0647-4470-98ba-478f886643d4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1477e1af-31ac-443b-b424-d35840e2d969" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120231Z:1477e1af-31ac-443b-b424-d35840e2d969" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c5b51b1a-9be4-4b74-9bcd-a9742a5b4d47" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "78976ad7-8f77-4a7d-be33-5766ee3aeb71" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:78976ad7-8f77-4a7d-be33-5766ee3aeb71" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95E9ADC07D624AEB840A34246BC8815F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:31Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A23B5DE77EB47F187D139B26077CFEA Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "724" ], - "x-ms-client-request-id": [ "457e48c8-9316-4179-8283-4c9afba8f3e8" ], + "x-ms-unique-id": [ "853" ], + "x-ms-client-request-id": [ "28e62ad2-2b84-41a8-a627-060304360a02" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -957,37 +912,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef9a22d7-e361-441b-8262-671cfdfe053f" ], + "x-ms-request-id": [ "4b9b21ab-953b-4dd0-bbcb-c235ff221ecf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18a8f0bb-ce91-4abb-9670-e808ae3b13cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db219071-82b6-462e-bf72-1f0e076282d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d83936e1-9092-4507-b026-b8a46e69909b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120232Z:d83936e1-9092-4507-b026-b8a46e69909b" ], + "x-ms-correlation-request-id": [ "6a034447-d5e9-4b39-8876-27b0bd9a89d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:6a034447-d5e9-4b39-8876-27b0bd9a89d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07C13486D62B43D6AA6894104BB81BE6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:32Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E3F0A9138CE4FD6816916DD08AC619D Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06: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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "725" ], - "x-ms-client-request-id": [ "b20a1bc5-0361-4846-b579-86e5a1d7cfe6" ], + "x-ms-unique-id": [ "854" ], + "x-ms-client-request-id": [ "b7359e57-ce24-4f34-802e-8187f5b3d37e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1003,32 +958,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5f69c6a-87c7-4340-87ee-d3a869ca3bfb" ], + "x-ms-request-id": [ "2fc070ff-e2c1-4770-b7c3-c58c5848fd12" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48fedf26-6e5f-4e7d-b7df-c761ac955f9e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af36871d-00ad-4406-8f36-8115aad3ea3c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e2470f12-2193-4342-8754-546347421f08" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120232Z:e2470f12-2193-4342-8754-546347421f08" ], + "x-ms-correlation-request-id": [ "990487e1-5334-4919-957b-b49e93c14a87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020605Z:990487e1-5334-4919-957b-b49e93c14a87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 181C924A13CC4E0E83AF2EA6BE3A29EB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:32Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F8572069B6A42D1A50A9299AB90D175 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+23": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-wxft49p0i3\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-zeaoxcpv3i\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1042,39 +997,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC25E0DE40\"" ], + "ETag": [ "\"1DC550B2853FE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "55f80715-a15d-46f4-afc2-0820b105fa8e" ], + "x-ms-request-id": [ "91a09b3c-203c-491d-87ba-10960bd7636b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8145121b-64e0-40c3-ac4e-ad2617a5c428" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fdae5356-1651-4e5c-b846-ef56cebf17ea" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "13ff235d-0704-4bc4-b026-00a2b1c918fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120235Z:13ff235d-0704-4bc4-b026-00a2b1c918fe" ], + "x-ms-correlation-request-id": [ "bc6a0e5e-3fbb-4e01-8ec6-7fefe63f86cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020608Z:bc6a0e5e-3fbb-4e01-8ec6-7fefe63f86cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8E72374F6E84CFE9C446268568077A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:02:32Z" ], - "Date": [ "Wed, 12 Nov 2025 12:02:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D201B890A80443281DB363C33E51D7A Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:05Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8649" ], + "Content-Length": [ "8647" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:02:34.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"858f9c71-7149-4a62-bcb8-678efb240087\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "04305f89-9118-49c2-a403-4478d0e863c1" ], + "x-ms-unique-id": [ "856" ], + "x-ms-client-request-id": [ "019bdc7b-cf62-454a-9f35-74be2d03b092" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "" ], @@ -1088,38 +1043,175 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC3B390A60\"" ], + "ETag": [ "\"1DC550B3D4C08EB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7e39d2e6-dceb-4c1b-af69-c4627329830b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ff68c51b-83c7-4d26-ac05-235fdb588c55" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020638Z:ff68c51b-83c7-4d26-ac05-235fdb588c55" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D4AD920B85414BCA9ABCFC91998F2FE5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8621" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "857" ], + "x-ms-client-request-id": [ "5b058534-5019-442d-b1a6-fd35949ec5c2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550B3D4C08EB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "36d11c36-dd08-4fd8-9616-e7204d619280" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9bff5251-9722-42e5-a335-1600e760edac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020641Z:9bff5251-9722-42e5-a335-1600e760edac" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9F562234256944148FE24CEA7824E4EC Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8621" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "858" ], + "x-ms-client-request-id": [ "fa2a3e26-2ca7-4b2a-a55c-d46395707b45" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b8d50f58-d911-4cd0-84aa-c56a73aa03d5" ], + "x-ms-request-id": [ "dd059e9a-99e9-4e39-93ee-d898dfa2ed8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a366de7b-61c2-4882-b3e5-cd4a7f56552b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "187b48a1-80e0-4dcc-a7b9-b7bfea14c26e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020641Z:187b48a1-80e0-4dcc-a7b9-b7bfea14c26e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AE78F8196E76416982B802E3403CAC71 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "859" ], + "x-ms-client-request-id": [ "0aeab111-5d69-43b4-9da3-13777038f2ef" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "87f4a236-b654-4963-a43c-f19357c8daec" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92580e65-8ff6-4f55-a069-7b5b5a589ac8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ae5b5457-0b47-41b8-9b14-37ee378c3f6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120305Z:ae5b5457-0b47-41b8-9b14-37ee378c3f6c" ], + "x-ms-correlation-request-id": [ "d89aacad-d592-4e65-9c55-c861a320ff95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020641Z:d89aacad-d592-4e65-9c55-c861a320ff95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B1181CFB9DF41609E51523E03CB7C36 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA60FDB4385E4B7CB73BE60AB4458026 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:02:34.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"858f9c71-7149-4a62-bcb8-678efb240087\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69468,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "728" ], - "x-ms-client-request-id": [ "df29c843-9a04-42ee-8054-4e938ec8731d" ], + "x-ms-unique-id": [ "860" ], + "x-ms-client-request-id": [ "2636b1e7-cbeb-4018-aad3-84ddb7c86885" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1134,38 +1226,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC3B390A60\"" ], + "ETag": [ "\"1DC550B3D4C08EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48356532-7fdc-41ed-a487-3db066ee33f1" ], + "x-ms-request-id": [ "e5002144-9af2-470f-852d-ab796f523a03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "599de3f7-3da0-4007-ae09-b71908cc15db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120308Z:599de3f7-3da0-4007-ae09-b71908cc15db" ], + "x-ms-correlation-request-id": [ "608755c7-d192-4fe9-9e16-2ebe0633b06a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:608755c7-d192-4fe9-9e16-2ebe0633b06a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67CF89EB5A2A4C74AA7F135AA60B68CC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBB1EEC8D75E41348231618C7B0A49B7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8621" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wxft49p0i3\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"func-powershell-newtest2-wxft49p0i3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wxft49p0i3.azurewebsites.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-wxft49p0i3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:02:34.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-NewTest2-wxft49p0i3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wxft49p0i3\\\\$Func-PowerShell-NewTest2-wxft49p0i3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest2-wxft49p0i3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"858f9c71-7149-4a62-bcb8-678efb240087\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01+29": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "729" ], - "x-ms-client-request-id": [ "a8738a1e-7c6b-4b67-8f2a-918f33123a1c" ], + "x-ms-unique-id": [ "861" ], + "x-ms-client-request-id": [ "d0366bb8-8ea5-4576-9465-53d4d42ef6af" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1181,36 +1273,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e578b2cb-446a-42dc-8a5a-8ac9bd2aba10" ], + "x-ms-request-id": [ "2373dd84-cfbb-44a4-8237-277e833d1fa0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60ae525a-5191-43e1-9bde-814fd0487b00" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94fb39a7-c24e-4d1b-83d3-b1cf4d610c3f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3d465ee8-f527-4202-ade2-741ed2972086" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120309Z:3d465ee8-f527-4202-ade2-741ed2972086" ], + "x-ms-correlation-request-id": [ "fc9e38ee-be71-41a0-9ad2-8c5bfafddc26" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:fc9e38ee-be71-41a0-9ad2-8c5bfafddc26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F587C3E4B8E46CDA2F2B66AE9F4D2CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC08D88FC39B44C4BC5295594E3D4CC2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wxft49p0i3\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "730" ], - "x-ms-client-request-id": [ "8b225a6b-727e-4c42-9a20-2ddcf79b7ad0" ], + "x-ms-unique-id": [ "862" ], + "x-ms-client-request-id": [ "14c875bc-d701-404c-a4f7-4d0818420b56" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1226,37 +1318,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2354a109-082d-4c34-a87a-80824de458a0" ], + "x-ms-request-id": [ "68198599-9c31-447a-82ad-1d03d85585ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20b552bd-bf7d-4257-8c36-8a5533ec7474" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49a88e98-ef62-4998-a2d5-e154f205d5f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "27fe41e5-85d1-40a7-8746-fbb0a2b06b5c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120309Z:27fe41e5-85d1-40a7-8746-fbb0a2b06b5c" ], + "x-ms-correlation-request-id": [ "7fffd115-abf4-478f-a61d-7c886548179a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:7fffd115-abf4-478f-a61d-7c886548179a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BA3E18E70864D3087DCE8DFF25E8056 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 758A258A071445C49D97C6F9D0621F68 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3/config/web\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":31826,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69468,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "863" ], + "x-ms-client-request-id": [ "76c1b92c-8e8a-48c0-a5ea-47984d76c30f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1394043d-4a5a-4244-95d0-596dd281c744" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5672fe80-b269-4451-bb59-e5f31f464ebc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:5672fe80-b269-4451-bb59-e5f31f464ebc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4B48F951FF7440C2990FDFD4173661AE Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+32": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "759f0a2d-7360-4822-a767-b67e466c23fc" ], + "x-ms-unique-id": [ "864" ], + "x-ms-client-request-id": [ "08d440eb-3cb6-4781-8823-bf5a03bd54a1" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1271,20 +1408,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC3B390A60\"" ], + "ETag": [ "\"1DC550B3D4C08EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d4298e05-fe53-4ab9-8847-925f631e1d9b" ], + "x-ms-request-id": [ "a6bec0b9-6d50-4a98-9be1-9bb012a6d646" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9dcf48ea-6fdb-4e72-a296-1e9ac98af467" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef07d960-d135-4282-97b9-9380ca0658cd" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "42ebb6a4-2463-46e2-8aca-3968d96395e3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120318Z:42ebb6a4-2463-46e2-8aca-3968d96395e3" ], + "x-ms-correlation-request-id": [ "60510fe6-8361-4424-b663-f9280139cc9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:60510fe6-8361-4424-b663-f9280139cc9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4B612C5EA424CF4BFCA183E3B05CE6F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC4F4FA7A27C4139B6B50BB724195E74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1294,15 +1431,15 @@ "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "732" ], - "x-ms-client-request-id": [ "3254b5fb-4b25-4804-9ebc-0321665cb891" ], + "x-ms-unique-id": [ "865" ], + "x-ms-client-request-id": [ "ab4a5fc7-f454-4f95-b2a9-26ac42245e76" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1318,33 +1455,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "c28bc7df-6790-4dd6-aea4-874a295c2082" ], - "x-ms-correlation-request-id": [ "c28bc7df-6790-4dd6-aea4-874a295c2082" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120318Z:c28bc7df-6790-4dd6-aea4-874a295c2082" ], + "x-ms-request-id": [ "f058b749-44dc-4df5-9063-a9db1d71a672" ], + "x-ms-correlation-request-id": [ "f058b749-44dc-4df5-9063-a9db1d71a672" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:f058b749-44dc-4df5-9063-a9db1d71a672" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00C61950D19E4907AC55A029E51E36DD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F2AED50DE154A168556E3F70D30740F Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:50 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-wxft49p0i3\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-zeaoxcpv3i\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wxft49p0i3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "733" ], - "x-ms-client-request-id": [ "4c77d494-5c3d-4437-bb9d-fe45e4a966ed" ], + "x-ms-unique-id": [ "866" ], + "x-ms-client-request-id": [ "6f394b9d-0e1d-4400-870b-aac5a66d18f7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1360,21 +1497,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "7788e18b-9ced-41c0-bb34-52268c5ff9fc" ], - "x-ms-correlation-request-id": [ "7788e18b-9ced-41c0-bb34-52268c5ff9fc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120318Z:7788e18b-9ced-41c0-bb34-52268c5ff9fc" ], + "x-ms-request-id": [ "f04128cc-e88f-448a-ba6a-340414d40b46" ], + "x-ms-correlation-request-id": [ "f04128cc-e88f-448a-ba6a-340414d40b46" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:f04128cc-e88f-448a-ba6a-340414d40b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 861C774D956747259F82D33FFAC6E2B6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 432DCBCB254D405B8C1C4DB9848B6FE3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:50 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-wxft49p0i3\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-zeaoxcpv3i\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1382,7 +1519,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-o8n3yqx5lc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1397,18 +1534,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4439070-94f0-463a-be72-dd04fa5b8981" ], + "x-ms-request-id": [ "9a4e39c1-1752-4bc3-8374-5e200ce460ab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71e71cac-df21-4b8b-81ed-543b1d2ff578" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29b8dd01-4c9a-4b8c-88ed-12fbad9c3901" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8d47d3a5-fc06-4ee4-b126-eacc06889242" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120319Z:8d47d3a5-fc06-4ee4-b126-eacc06889242" ], + "x-ms-correlation-request-id": [ "f2c55833-a24a-4f75-92ea-8660a6cc5204" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:f2c55833-a24a-4f75-92ea-8660a6cc5204" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5209B15B613C45FF9227BE83A1C5EB1C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54C0A9C67425407D8DB55C0B73516EE6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1426,8 +1563,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "735" ], - "x-ms-client-request-id": [ "fe5fe1cc-04dd-49a3-a983-4e1700616549" ], + "x-ms-unique-id": [ "868" ], + "x-ms-client-request-id": [ "a01f9162-0e48-4ab8-8a15-77050d52281a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1442,36 +1579,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c0d7c6c4-753a-416b-a857-98e2449774ea", "6402ba5d-6a4a-4686-aa78-0245271e1a54" ], + "x-ms-original-request-ids": [ "3ed3443a-28c9-4cc5-a5ce-00b839852d26", "eaf9c6ac-d4f8-4a7c-a1b4-be8a0f3b0082" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c51af102-b768-4653-8d4c-f18a5ad69438" ], - "x-ms-correlation-request-id": [ "c51af102-b768-4653-8d4c-f18a5ad69438" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120319Z:c51af102-b768-4653-8d4c-f18a5ad69438" ], + "x-ms-request-id": [ "ec55010c-b4ee-433c-83da-29ef29d2e284" ], + "x-ms-correlation-request-id": [ "ec55010c-b4ee-433c-83da-29ef29d2e284" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020652Z:ec55010c-b4ee-433c-83da-29ef29d2e284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A3F874F9C4D42A7BA7315D450F571E7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAC754100F674AB99848AB65DA7380D8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "15460" ], + "Content-Length": [ "13689" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "736" ], - "x-ms-client-request-id": [ "a6e5adbd-5057-4ef8-8863-93bf4ecfe7aa" ], + "x-ms-unique-id": [ "869" ], + "x-ms-client-request-id": [ "3623bd7f-154c-48db-95b4-a9a6897969ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1487,36 +1624,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f6f18e6d-314e-486c-bac8-ac3670faced1" ], + "x-ms-request-id": [ "da579ad3-fbd1-4fa6-9e6b-56c1dd6f5b28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "983d6cdb-276f-47e5-b61e-d6475ee56a5b" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T120319Z:983d6cdb-276f-47e5-b61e-d6475ee56a5b" ], + "x-ms-correlation-request-id": [ "6e892e32-b3ac-45ce-80e5-b4e47c37cd3a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020652Z:6e892e32-b3ac-45ce-80e5-b4e47c37cd3a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27789EEB9DEF4947BEBF2C438DDA4C3C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6824C2D0DC874773BC0ADA3E0722E278 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "737" ], - "x-ms-client-request-id": [ "08707d70-47d3-4fff-a99b-f13a03370b10" ], + "x-ms-unique-id": [ "870" ], + "x-ms-client-request-id": [ "cafb1bd2-e480-49fd-b451-a4b54208e702" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1532,36 +1669,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a295a1b-4d65-4007-8745-ed5100d1c78a" ], + "x-ms-request-id": [ "60d344c6-58e8-4d32-943c-83ece46abffa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b3fbfc0-5f6d-4d3e-804e-984ba1a3422a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120319Z:9b3fbfc0-5f6d-4d3e-804e-984ba1a3422a" ], + "x-ms-correlation-request-id": [ "076ed9c5-d686-4242-aea8-2d55dbd48e52" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020652Z:076ed9c5-d686-4242-aea8-2d55dbd48e52" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7875DCE84BBF4A5D9753657FDE4FF8D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDA0A5DFAC914E0E8B131DA5BAD52161 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "738" ], - "x-ms-client-request-id": [ "f7805a0d-65ff-4ee4-a8a3-082b71f38838" ], + "x-ms-unique-id": [ "871" ], + "x-ms-client-request-id": [ "2a3a3046-2d2e-440e-b977-8904bdf30d40" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1577,36 +1714,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b7e970a3-b380-4bee-a3c5-2a11d4a86fed" ], + "x-ms-request-id": [ "5d94579c-8388-4b78-9f80-de1bbb80e319" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46f4c682-1570-42e1-91f5-e08b7df18ef2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120320Z:46f4c682-1570-42e1-91f5-e08b7df18ef2" ], + "x-ms-correlation-request-id": [ "057eb436-3c83-4726-af4b-564645ec63f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020652Z:057eb436-3c83-4726-af4b-564645ec63f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CEA0427A6984C9A83AE4C336575F467 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 77AEC59D551044238D896725EE880E22 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "739" ], - "x-ms-client-request-id": [ "896876c7-9919-455a-ae82-d9cd2bb4552d" ], + "x-ms-unique-id": [ "872" ], + "x-ms-client-request-id": [ "48391505-78a6-49e0-a06b-8b95f0fb2e23" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1622,36 +1759,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60ae3724-babb-409f-abd1-fda702798bdb" ], + "x-ms-request-id": [ "c20b8544-3f1f-4b2f-ba58-1ff76a1e0267" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4f8d127c-148d-4879-b1f4-fc1d5e9b25a1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120320Z:4f8d127c-148d-4879-b1f4-fc1d5e9b25a1" ], + "x-ms-correlation-request-id": [ "d6b3f546-13f9-422c-93ab-62a39dc5d077" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020652Z:d6b3f546-13f9-422c-93ab-62a39dc5d077" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A698D0F0BC7B42B99C989745CA43B172 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:20Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2419C40DF9CC4EF1B071DD53F4C7E107 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1758" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "740" ], - "x-ms-client-request-id": [ "d9fba3f3-2384-468d-a356-dbde1f234e3f" ], + "x-ms-unique-id": [ "873" ], + "x-ms-client-request-id": [ "2b53f1f4-923d-4065-97b6-9eeba95ed503" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1667,36 +1804,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db63ed4d-cca1-4143-b81f-c3b1e64f2bcf" ], + "x-ms-request-id": [ "f2829640-eb0e-4f17-a476-97b191189c8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68acf5a9-9149-46e7-af8e-a8275dbb5ee5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120320Z:68acf5a9-9149-46e7-af8e-a8275dbb5ee5" ], + "x-ms-correlation-request-id": [ "c1ace137-7dd5-4b88-9b27-db9e0131270b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020653Z:c1ace137-7dd5-4b88-9b27-db9e0131270b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03A04E47D4904E73B23682EC3FBA24D3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:20Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F24E2F5969B455DBC8D46BEC452B241 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "741" ], - "x-ms-client-request-id": [ "b64a99bd-4c4b-42a7-a154-e08f77d68883" ], + "x-ms-unique-id": [ "874" ], + "x-ms-client-request-id": [ "078cc5a7-8b62-4068-99c0-f99bee61373e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1712,36 +1849,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58f8a90b-7ea1-46e9-bd2e-a7bd102ba911" ], + "x-ms-request-id": [ "71f0069f-c24f-4f32-af6c-46b6e0b06bca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4bfd2bd9-5f4e-44b0-bbd5-1098bddb7da5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120321Z:4bfd2bd9-5f4e-44b0-bbd5-1098bddb7da5" ], + "x-ms-correlation-request-id": [ "04cde45f-0945-4584-84f2-5fcc73ac0475" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020653Z:04cde45f-0945-4584-84f2-5fcc73ac0475" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3AAF3A7D053C4A918407A888A576E167 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:21Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03EF2A26D28244068946F9B52E4BB9DE Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "742" ], - "x-ms-client-request-id": [ "36511c9c-2409-49da-aff8-cb9fe2f195ee" ], + "x-ms-unique-id": [ "875" ], + "x-ms-client-request-id": [ "42a605f6-4b4d-4e1e-be67-2ae40b1fff51" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1757,36 +1894,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdfc6c96-7385-4e54-b6a0-87dc7ceaaed2" ], + "x-ms-request-id": [ "a350b24c-9c88-4b0e-ab01-ca09f31e5731" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8925902e-dd54-4dac-b318-791c0f240278" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120321Z:8925902e-dd54-4dac-b318-791c0f240278" ], + "x-ms-correlation-request-id": [ "ae40fd23-3877-4294-ae5f-5cc0cb561562" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020653Z:ae40fd23-3877-4294-ae5f-5cc0cb561562" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52AED1FF596D41499F3564EFF02D1C67 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:21Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F7F6FF4D8E84A4997D030B21C09BD93 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "743" ], - "x-ms-client-request-id": [ "5d55f360-8c95-490b-94e3-dfa3c1679ec8" ], + "x-ms-unique-id": [ "876" ], + "x-ms-client-request-id": [ "4f976579-aef9-4eb5-b196-0044f99aef42" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1802,81 +1939,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "234ce49c-c4a5-4bcd-b133-96e81b806c81" ], + "x-ms-request-id": [ "902f1155-c0e7-43f3-b456-b8382be5a5df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a9627ea0-478b-4a42-9700-772424c9e0e5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120322Z:a9627ea0-478b-4a42-9700-772424c9e0e5" ], + "x-ms-correlation-request-id": [ "6e0bcd1a-0d8c-486a-8d3c-e0ead03e06a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020654Z:6e0bcd1a-0d8c-486a-8d3c-e0ead03e06a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B04247890DB04202B6073106B0F4B24A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:21Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D40421A0C8841A0A4CD58D7B575736D Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "744" ], - "x-ms-client-request-id": [ "0f39065b-3996-42de-9a2d-69ba1f31dc0b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1cb5c2ec-cf29-48b6-b65b-3fd08b7acad1" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "152a5c8d-8bcb-4906-ace8-8f728147baef" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120322Z:152a5c8d-8bcb-4906-ace8-8f728147baef" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1961AFA5A09F4DAB8ADBDB81EDFF6D24 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:22 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1701" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "745" ], - "x-ms-client-request-id": [ "5aed12db-9e7a-43e9-9a11-2021265573a2" ], + "x-ms-unique-id": [ "877" ], + "x-ms-client-request-id": [ "586acf90-e3f8-4237-b429-08f1724bfd51" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1891,36 +1983,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6f742d8c-519d-4e4b-b685-e7374be7cda5", "3af6933e-4589-495b-9f36-0c2ebfe79757" ], + "x-ms-original-request-ids": [ "345f5b9e-ac71-4d36-97f6-6248fe3fa08e", "60e5b632-0cf6-4513-84f0-2856f80547ef", "5d4266bb-20e7-4559-bba5-fdfc6363dea2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3e21a85a-0a46-488f-b4b4-5b4f939c2df4" ], - "x-ms-correlation-request-id": [ "3e21a85a-0a46-488f-b4b4-5b4f939c2df4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120323Z:3e21a85a-0a46-488f-b4b4-5b4f939c2df4" ], + "x-ms-request-id": [ "ed30d8de-01a4-441c-9a44-faee0f769b8b" ], + "x-ms-correlation-request-id": [ "ed30d8de-01a4-441c-9a44-faee0f769b8b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T020655Z:ed30d8de-01a4-441c-9a44-faee0f769b8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 643BC93F29694CFA8152372F10CCD99D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BC756FC150B45C495957F1408A18B5E Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "746" ], - "x-ms-client-request-id": [ "fbac5f29-ffd6-4232-beff-3023aab235e5" ], + "x-ms-unique-id": [ "878" ], + "x-ms-client-request-id": [ "36f35258-409c-4648-ad65-1eefd32b754c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1935,30 +2027,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "40e92ed8-766d-41c2-88c5-64d5ce1fa64e" ], + "x-ms-request-id": [ "bb2f9594-249a-41e4-b280-bfb95910e3df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3b769e0a-1953-47da-ba6c-24f75400031e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/dc7958b2-f822-4ae4-86af-51e7fa2a2b6c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5b9afe73-4974-426e-89d0-739ded1ae02c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120323Z:5b9afe73-4974-426e-89d0-739ded1ae02c" ], + "x-ms-correlation-request-id": [ "c35a4640-06f9-440d-aec4-f0a2615006a2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020655Z:c35a4640-06f9-440d-aec4-f0a2615006a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A6A32E9DAA445BC8C0941B8F8B9A5A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:23Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C48BB12E53245C3B6AB589E26528F92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2015-05-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-q8hc7lwuof?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": { @@ -1978,30 +2070,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/668fe7ec-5bb6-40af-9099-e291a8350651" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "241122c0-5020-4f18-9bff-c94b645bf47d" ], - "x-ms-correlation-request-id": [ "241122c0-5020-4f18-9bff-c94b645bf47d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120330Z:241122c0-5020-4f18-9bff-c94b645bf47d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14dd46e4-907f-4269-88dd-c2847dbea614" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "5b1ae0ac-bdad-4f50-9388-f7f8174b9ce5" ], + "x-ms-correlation-request-id": [ "5b1ae0ac-bdad-4f50-9388-f7f8174b9ce5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020700Z:5b1ae0ac-bdad-4f50-9388-f7f8174b9ce5" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3D935BDCEAC4D3B870FE7CDD0711228 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:23Z" ], - "Date": [ "Wed, 12 Nov 2025 12:03:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E6BACCD1A604A759F52A70C1068D79D Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:06:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"73068330-0000-0300-0000-691477910000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"name\": \"Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"AppId\": \"64f96b84-5dae-4dde-859f-d44584f74648\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6b443061-498c-46df-87bc-0d0c318c30cf\",\r\n \"ConnectionString\": \"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\",\r\n \"Name\": \"Func-PowerShell-NewTest3-o8n3yqx5lc\",\r\n \"CreationDate\": \"2025-11-12T12:03:24.3148657+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-o8n3yqx5lc_64f96b84-5dae-4dde-859f-d44584f74648_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-o8n3yqx5lc-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\": \"\\\"0a07ed29-0000-0300-0000-69168ec40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"name\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"AppId\": \"13f9830f-d3d2-4f00-8604-138ae14192a3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a2d07edd-5a45-4ea6-a03a-d882e0c9c478\",\r\n \"ConnectionString\": \"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\r\n \"Name\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"CreationDate\": \"2025-11-14T02:06:56.1634563+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-q8hc7lwuof_13f9830f-d3d2-4f00-8604-138ae14192a3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-q8hc7lwuof-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-o8n3yqx5lc\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-q8hc7lwuof\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2015,39 +2107,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC5D9D5CA0\"" ], + "ETag": [ "\"1DC550B5E8DEE35\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cf22b51-262a-47e2-b697-84d50cac6ac6" ], + "x-ms-request-id": [ "6b364642-6efb-47c4-84f6-4915480ceff7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79af859e-dd60-449b-a237-2bc9f12f167c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea700bf7-bb3c-4da0-8b3b-151042fa997e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5333e654-7549-4fa8-939b-f2e704f8afc0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120412Z:5333e654-7549-4fa8-939b-f2e704f8afc0" ], + "x-ms-correlation-request-id": [ "ff463cf3-254e-4a83-8dba-10d894ad225d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020744Z:ff463cf3-254e-4a83-8dba-10d894ad225d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BC2D22EB2234C8CBABCCDC483B23180 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:03:30Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 107E00CAD3FC4A2595AD3E801F9E2C3F Ref B: MWH011020806052 Ref C: 2025-11-14T02:07:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:07:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8514" ], + "Content-Length": [ "8502" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:03:31.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:02.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "749" ], - "x-ms-client-request-id": [ "89c0517a-73a8-48f8-8568-5a1f65b04785" ], + "x-ms-unique-id": [ "881" ], + "x-ms-client-request-id": [ "73680c15-9f5c-43b6-b3ee-62861b938a69" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2061,38 +2153,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC758ABF95\"" ], + "ETag": [ "\"1DC550B7693BB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2411e55a-be79-44ff-86d7-7b47611ce74d" ], + "x-ms-request-id": [ "61c08f99-5804-4d71-b2a8-0207b1549e83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7ae087b7-e974-4c33-9f16-2f620d36c1d2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:7ae087b7-e974-4c33-9f16-2f620d36c1d2" ], + "x-ms-correlation-request-id": [ "77cf8441-7927-487c-8ddb-65b51d9c390e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020814Z:77cf8441-7927-487c-8ddb-65b51d9c390e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E817AE5F1E25476892AD02CB3034819A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:42Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 20D933F9AEE24BAAAA9F1864D9555853 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:12.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:43.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "750" ], - "x-ms-client-request-id": [ "6d14e620-3282-4efc-a790-4c6bf87b36f0" ], + "x-ms-unique-id": [ "882" ], + "x-ms-client-request-id": [ "cd3e0098-9499-4485-8e5e-3b23f328af57" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2107,38 +2199,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC758ABF95\"" ], + "ETag": [ "\"1DC550B7693BB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7d9ba11-9038-4093-828e-46103d173bc4" ], + "x-ms-request-id": [ "b98b04d1-5b60-40c0-81e0-dc8fcde3e27d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eee698e8-05d3-423c-b49c-d6c8ff7365eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:eee698e8-05d3-423c-b49c-d6c8ff7365eb" ], + "x-ms-correlation-request-id": [ "8a1a2e54-7659-4fda-ab33-a63d40958811" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020814Z:8a1a2e54-7659-4fda-ab33-a63d40958811" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49F060AA7CDF45968D116B63E506CFFD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E45A9DA98BFE467EAA5254924FB77779 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:12.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:43.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "751" ], - "x-ms-client-request-id": [ "bd66317a-1487-4e3b-bbe2-43acfa09f882" ], + "x-ms-unique-id": [ "883" ], + "x-ms-client-request-id": [ "531607d2-29dc-4554-b9dc-fe2877b436ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2154,36 +2246,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23b90ea2-004e-44f9-ab1e-21a466837904" ], + "x-ms-request-id": [ "d825873e-a92d-4a12-b343-f1ece8dcdfd7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c24f08d9-8643-4d57-b511-99b1567d3ef7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f66e5d6-629d-4c8c-883e-81ce5af3baca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4d61396b-7b2f-43f3-acdb-a3c2b7156c73" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:4d61396b-7b2f-43f3-acdb-a3c2b7156c73" ], + "x-ms-correlation-request-id": [ "62848429-e65f-4e4f-82ad-4481406b2987" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020814Z:62848429-e65f-4e4f-82ad-4481406b2987" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F9BE6C75E0640859AC7D906FCF1BBDF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E840FB9B38B434A9EE2E9A41DD0E436 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "752" ], - "x-ms-client-request-id": [ "7e6aa0d2-5efb-4d86-bcd8-312cac94b942" ], + "x-ms-unique-id": [ "884" ], + "x-ms-client-request-id": [ "a6db51e5-8d44-42a8-a81b-5b1f44e41cb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2199,37 +2291,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1cad929a-18ee-4fde-b526-97a67b133194" ], + "x-ms-request-id": [ "7aa65255-5a0f-49c3-ac83-87fd207d051b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5fe059b-bbc5-4018-8990-c967a1903037" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a67a199-fa1c-4cb2-a343-1d2899ec5d5b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db38f3ab-3506-4875-a06e-9a5bf91cc067" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120443Z:db38f3ab-3506-4875-a06e-9a5bf91cc067" ], + "x-ms-correlation-request-id": [ "9e817c75-a5ec-4eea-a1eb-b5174f989001" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:9e817c75-a5ec-4eea-a1eb-b5174f989001" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA96C1F72F1644FF8EBC4DE5456A2C42 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8D77B0709274C899A9343D9444F8CBE Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "753" ], - "x-ms-client-request-id": [ "b9a8604f-8d8a-4709-838d-61201054e289" ], + "x-ms-unique-id": [ "885" ], + "x-ms-client-request-id": [ "e6bc12af-f6e2-4a98-87d5-2806bded4818" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2244,38 +2336,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC758ABF95\"" ], + "ETag": [ "\"1DC550B7693BB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c90f95c-d838-4325-9150-2f234197de80" ], + "x-ms-request-id": [ "a1ebc439-3c91-4ade-ac0b-238472277523" ], "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": [ "3413feeb-362c-440f-8539-009f54a0fd3f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:3413feeb-362c-440f-8539-009f54a0fd3f" ], + "x-ms-correlation-request-id": [ "ee6bec50-d420-482a-a306-7b4d73b2bb08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:ee6bec50-d420-482a-a306-7b4d73b2bb08" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D3D3F5A163548A49BD56DA4043B2B79 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 674442C3293B47DA91BF4CD324E1309B Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:15Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:12.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:43.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "754" ], - "x-ms-client-request-id": [ "9513b673-dd1e-400a-b5f2-9d9028178aa0" ], + "x-ms-unique-id": [ "886" ], + "x-ms-client-request-id": [ "57c08448-30c3-4af7-902c-e5a2256b85d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2291,36 +2383,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61011a12-da2f-4888-be14-9b6f555eda8f" ], + "x-ms-request-id": [ "e6b81f55-7424-49d8-927c-77fdf645a651" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/282caa8b-a771-479e-9e39-2b4000dc9f08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70d83bd4-8d21-4c18-bd3b-82f1c9dffe32" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a93de948-3b97-49a9-b619-ec3380e527f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:a93de948-3b97-49a9-b619-ec3380e527f1" ], + "x-ms-correlation-request-id": [ "7826c3e3-1943-463d-8720-9b6c99252c27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:7826c3e3-1943-463d-8720-9b6c99252c27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 407B70D5F6054529A0D613E8F37BEB04 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8EC3A17E23C44B593C8B338CDD50432 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:15Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "755" ], - "x-ms-client-request-id": [ "c85e1fe2-d62e-434a-8990-bde6760c4758" ], + "x-ms-unique-id": [ "887" ], + "x-ms-client-request-id": [ "f718bbd8-bb35-4551-8a23-a2d42b9f1d7b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2336,37 +2428,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06eb1186-b34c-4826-8402-67bb8f956877" ], + "x-ms-request-id": [ "7ca1f69f-549c-4095-ae70-80a02f07920c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/290aa59a-5951-40e2-a729-70dcbba3f235" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22d96f53-abf6-412a-84ad-36a1b837fedd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "98010d4e-1cd1-42c9-b3e3-5ec8ea205f0a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:98010d4e-1cd1-42c9-b3e3-5ec8ea205f0a" ], + "x-ms-correlation-request-id": [ "0e42fde2-c11b-4e72-ad38-92b8937dc35a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:0e42fde2-c11b-4e72-ad38-92b8937dc35a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 205E930926BB4D688DFE37A9AF55BC0C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71E5CDC8BC3747A0B284383A5184AA8D Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:15Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "756" ], - "x-ms-client-request-id": [ "41b413f7-94c8-4bc0-8850-e9a028fed660" ], + "x-ms-unique-id": [ "888" ], + "x-ms-client-request-id": [ "7873f439-a0ab-4c9b-96b5-c57c71e01195" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2382,32 +2474,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbc5df00-bdcb-4ff8-84f3-93d933e34ddf" ], + "x-ms-request-id": [ "e6b62659-1d1b-4fe9-895e-4eefc3d324d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d03151b-194d-4abd-a67a-f98cb59808b8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a83fa017-2fe5-483d-bd0f-c258bee3a259" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ca087330-eece-4a1f-9b66-78c713d76585" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120444Z:ca087330-eece-4a1f-9b66-78c713d76585" ], + "x-ms-correlation-request-id": [ "adc96c12-8fac-4572-8159-e61f53349aef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020816Z:adc96c12-8fac-4572-8159-e61f53349aef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 004DD8AA6B204B0D82BCBF6F80A61012 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D2D697AC6D94B7582A9060184B1C90C Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:16Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+23": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-o8n3yqx5lc\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-lf9t8w/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-q8hc7lwuof\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2421,39 +2513,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC758ABF95\"" ], + "ETag": [ "\"1DC550B7693BB2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ab49e82-4192-40d3-a50a-f012afc24299" ], + "x-ms-request-id": [ "5a94ff94-98f6-4fc5-8fa7-f0879f13956a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b033f45-692f-4f29-a017-1e3d2e271616" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d213f28b-1a83-4cde-b772-60285427a3c0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ba5b30a9-9bfb-4a71-bdbe-21ac3ae5d250" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120447Z:ba5b30a9-9bfb-4a71-bdbe-21ac3ae5d250" ], + "x-ms-correlation-request-id": [ "b1069f34-345e-4048-8723-2610040a054f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020818Z:b1069f34-345e-4048-8723-2610040a054f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7935DFB5C01453AA2AE4946D4CE3DD5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:04:45Z" ], - "Date": [ "Wed, 12 Nov 2025 12:04:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0457C799835540A994F867FF7EC839DD Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:16Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8846" ], + "Content-Length": [ "8844" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:46.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "758" ], - "x-ms-client-request-id": [ "65c9d854-0eb4-4b1b-a390-7ecdf65c8b28" ], + "x-ms-unique-id": [ "890" ], + "x-ms-client-request-id": [ "ab37e775-7768-49e0-9f95-24a57c94b390" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2467,38 +2559,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC89E51DC0\"" ], + "ETag": [ "\"1DC550B8B0EA6AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d04ac6c2-3e14-4d6a-b928-b674c399851a" ], + "x-ms-request-id": [ "4f0f0ef8-f590-4a88-9620-79d94b0147df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "16a42827-9acc-4e88-a4a5-1ec748f2029a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120517Z:16a42827-9acc-4e88-a4a5-1ec748f2029a" ], + "x-ms-correlation-request-id": [ "d98ba16a-2f04-424d-8422-0ac639a3a9a2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:d98ba16a-2f04-424d-8422-0ac639a3a9a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4948A1277F814D83AD954EE823259966 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A3AD76A085447438AC147DFF6D46C09 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8820" ], + "Content-Length": [ "8818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:46.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "759" ], - "x-ms-client-request-id": [ "8fbbbb7c-d47e-4783-804c-faf895f44568" ], + "x-ms-unique-id": [ "891" ], + "x-ms-client-request-id": [ "7e3700ad-bd29-47df-bb41-00d43fcb9224" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2513,38 +2605,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC89E51DC0\"" ], + "ETag": [ "\"1DC550B8B0EA6AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b04d561b-834b-4ffc-b7c7-c17291d528fb" ], + "x-ms-request-id": [ "e7f544a7-c62b-44f1-b4d1-064a6e920c72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8bef3270-485c-4e1e-a0cf-6f8c4e4daafd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120518Z:8bef3270-485c-4e1e-a0cf-6f8c4e4daafd" ], + "x-ms-correlation-request-id": [ "f1c4cb51-c239-46b3-b018-f515e80c2d1f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:f1c4cb51-c239-46b3-b018-f515e80c2d1f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AEE2AF54DB1E43CB8058BAD8BD24D7BF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9094A1BA6A324A25A72EBC688A3051CF Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8820" ], + "Content-Length": [ "8818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"func-powershell-newtest3-o8n3yqx5lc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-o8n3yqx5lc.azurewebsites.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-o8n3yqx5lc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:04:46.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\\\\$Func-PowerShell-NewTest3-o8n3yqx5lc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest3-o8n3yqx5lc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"a33012dd-6c07-4e9f-923e-7b3bbf5547ea\",\"clientId\":\"07c990f3-9ff2-49a7-83b7-6611809c6eb1\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "760" ], - "x-ms-client-request-id": [ "84c6fe5d-bd05-491c-860d-eeb6ab84702b" ], + "x-ms-unique-id": [ "892" ], + "x-ms-client-request-id": [ "33564f73-15cc-4859-b148-35d66f512b77" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2560,36 +2652,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2fa3d961-1257-4693-8d47-ae80e7eb434c" ], + "x-ms-request-id": [ "3a91246c-5588-4b2c-924a-e0e14858270c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b2ebf26-fb2d-4ce6-8717-6b564226d636" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3faa12a5-3398-401a-8bd9-e0d18ed16ebd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c2ad14ef-a862-4b49-a98b-c2fecf4d8a15" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120518Z:c2ad14ef-a862-4b49-a98b-c2fecf4d8a15" ], + "x-ms-correlation-request-id": [ "e5bda086-f10d-4859-b02c-126bd74ac66d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:e5bda086-f10d-4859-b02c-126bd74ac66d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71DBDD1AFA994D46BFA3A2FCE636E226 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4EEF328F81FA4DB68CAE2FEF99D9691E Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-o8n3yqx5lc\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "761" ], - "x-ms-client-request-id": [ "18da1388-36a1-46a9-86ca-3d3d227cc55d" ], + "x-ms-unique-id": [ "893" ], + "x-ms-client-request-id": [ "539c0ce4-2a09-4a23-9eb3-3e51fa369639" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2605,37 +2697,219 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0388c028-dfab-453b-aa4a-2dc1c7dbf930" ], + "x-ms-request-id": [ "09e632d2-a6ca-4207-befa-7ef813f375d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f48538f-3d51-44ee-9577-5283076de37d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34569ad1-ce21-40a2-9b79-dc1accf1ace3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6ccc07cb-941d-4f29-8c4a-4b77cb2caec1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120518Z:6ccc07cb-941d-4f29-8c4a-4b77cb2caec1" ], + "x-ms-correlation-request-id": [ "bd5b0b57-ea12-43e7-aed9-25a5b23fd25e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:bd5b0b57-ea12-43e7-aed9-25a5b23fd25e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B9ABD8562FF499D99077A0B1948DFFB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC8501973A03417EB59890EBAA0436A2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc/config/web\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":31827,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69469,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?deleteEmptyServerFarm=False\u0026api-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "894" ], + "x-ms-client-request-id": [ "a0d8a099-935c-4ab1-b5b0-6fd78fc85434" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550B8B0EA6AB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3714eef1-c695-441a-83d5-0662fa6e1def" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5b8ab6ba-0c38-4e77-9d10-e34859240cfd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:5b8ab6ba-0c38-4e77-9d10-e34859240cfd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2817F3CF30B84A28A51592827130EBFD Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8818" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01+29": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "895" ], + "x-ms-client-request-id": [ "14805455-3ac3-4c7a-a9d9-96cf818123d0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2dd18303-8b70-4219-97ad-0187e0f154e6" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a1761d2d-bcb0-41ab-b9ff-d6983925d119" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1e6cdb72-358b-4535-89a8-f42185d3ffb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:1e6cdb72-358b-4535-89a8-f42185d3ffb3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1354D1BE28034EA88AB7A555FD6C0B2D Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "896" ], + "x-ms-client-request-id": [ "abf3214c-e665-4f7c-827f-b2c99801cf4e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "945dba43-10f2-478d-882a-636905927986" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9da4faf8-ebd2-4e9a-82c4-5181b4a39cf5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b79accb-fcfe-41c0-9d09-caacef399261" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:9b79accb-fcfe-41c0-9d09-caacef399261" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0C04C4E2F3A045F284B731E3F9255A93 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4192" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69469,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "897" ], + "x-ms-client-request-id": [ "984b5da5-6ead-4511-88e0-39e5c9fe7900" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9794e958-d993-4e17-8006-db00d94142a5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c402975d-8794-4528-b2ac-66293be91ee9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:c402975d-8794-4528-b2ac-66293be91ee9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E6F7AC13B6534F2FBA769234A3FEDBFF Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+32": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "762" ], - "x-ms-client-request-id": [ "5c137416-e498-41ab-9287-d6f2ac503826" ], + "x-ms-unique-id": [ "898" ], + "x-ms-client-request-id": [ "5da35bf3-e078-4aa7-961b-e4e38e13a3b8" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2650,20 +2924,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CC89E51DC0\"" ], + "ETag": [ "\"1DC550B8B0EA6AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24cc4790-dd7d-4acc-8fa8-e23b0f194889" ], + "x-ms-request-id": [ "a3f02a73-4080-47af-a30a-8b1dd839580d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc4c2f3f-d69f-4281-811f-091fee25fa45" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bd8b6a2-fd15-4aed-94a2-ecaa7c6d0788" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f00f3fe0-99bb-4a96-8d84-e9010e118110" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120526Z:f00f3fe0-99bb-4a96-8d84-e9010e118110" ], + "x-ms-correlation-request-id": [ "8a749fe4-c9de-407b-ae06-6b23e8a2ec79" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:8a749fe4-c9de-407b-ae06-6b23e8a2ec79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26CADF432B874D98B0573950C41943EA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CD9AB27082444DC801E673CF18CDBA8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2673,15 +2947,15 @@ "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "763" ], - "x-ms-client-request-id": [ "d0879616-8d4d-4500-96b0-e3651b32c71c" ], + "x-ms-unique-id": [ "899" ], + "x-ms-client-request-id": [ "65dc1703-d7d8-41e9-b13e-066399045484" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2697,33 +2971,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "07b9046b-a4cc-47a7-a59d-811471335d2d" ], - "x-ms-correlation-request-id": [ "07b9046b-a4cc-47a7-a59d-811471335d2d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120527Z:07b9046b-a4cc-47a7-a59d-811471335d2d" ], + "x-ms-request-id": [ "95e1cddd-80fe-4a5d-9d06-601409a734b4" ], + "x-ms-correlation-request-id": [ "95e1cddd-80fe-4a5d-9d06-601409a734b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:95e1cddd-80fe-4a5d-9d06-601409a734b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6118C6E38B044907AF1BD901536724A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6C5EF69CFBD4DAD82373787C2FA231F Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:02 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-o8n3yqx5lc\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-q8hc7lwuof\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-o8n3yqx5lc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "764" ], - "x-ms-client-request-id": [ "50ba0466-78c5-4fb1-a92a-89bbce722d1c" ], + "x-ms-unique-id": [ "900" ], + "x-ms-client-request-id": [ "4aa3a280-e576-4e61-9c56-877be23e6561" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2739,21 +3013,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "9691f5df-7b55-416d-81d2-d22f7138388e" ], - "x-ms-correlation-request-id": [ "9691f5df-7b55-416d-81d2-d22f7138388e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120527Z:9691f5df-7b55-416d-81d2-d22f7138388e" ], + "x-ms-request-id": [ "dfe32920-eb5c-4123-a1e3-7295d1762249" ], + "x-ms-correlation-request-id": [ "dfe32920-eb5c-4123-a1e3-7295d1762249" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:dfe32920-eb5c-4123-a1e3-7295d1762249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 51C1B6A09F014BC6822535075A35178B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0B32E456C4A490292B2C844333F30E8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:02 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-o8n3yqx5lc\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-q8hc7lwuof\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -2764,8 +3038,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "765" ], - "x-ms-client-request-id": [ "1a70c76d-9ec4-49d7-b182-d4a2271f55a8" ], + "x-ms-unique-id": [ "901" ], + "x-ms-client-request-id": [ "dab329a3-8627-4093-8a22-c3ead70fe2f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2781,18 +3055,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b12f0f9-2e95-41d1-b809-99cfd4ef0121" ], + "x-ms-request-id": [ "0f584f38-4ec4-408f-a01a-9785164a9716" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3685931-4951-4ac7-b5d1-ecea48909156" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d28ca70e-1e77-41ed-8352-96471dd69a9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7b6537b3-3272-429c-9767-5c444cb73386" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120527Z:7b6537b3-3272-429c-9767-5c444cb73386" ], + "x-ms-correlation-request-id": [ "56b93087-46f2-4317-82e9-23c14c18d462" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:56b93087-46f2-4317-82e9-23c14c18d462" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C2F845FF4BC4AAA8B192A53364EE1BD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 68BFB15FB481408184C017C4CB3C57E3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -2803,10 +3077,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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": { @@ -2821,40 +3095,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCA398328B\"" ], + "ETag": [ "\"1DC550BA7B99EB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5660c4ac-4269-430d-9a00-7dc01472d855" ], + "x-ms-request-id": [ "accf3cea-9573-40ee-be6b-ad93669b3f24" ], "X-AspNet-Version": [ "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/6db7bc0a-7ed6-48ed-8bb2-e5770c99c6a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ea67cfd6-8506-4cfb-b216-863c62c8a06b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4a143d6d-a6a8-405d-a8da-b97f7f062edc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120531Z:4a143d6d-a6a8-405d-a8da-b97f7f062edc" ], + "x-ms-correlation-request-id": [ "76d125ad-f7ff-41ce-92f8-731facc56506" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020907Z:76d125ad-f7ff-41ce-92f8-731facc56506" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07B88E8B3F6D47FC97DAE196654116F6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:05:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:05:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCC3DD56F308402BA4CA5AE9B5079626 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1910" ], + "Content-Length": [ "1909" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"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-14T02:09:05.3\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "767" ], - "x-ms-client-request-id": [ "bc470054-c913-4458-8e71-a0dcb0827f63" ], + "x-ms-unique-id": [ "903" ], + "x-ms-client-request-id": [ "4665a080-4c64-4324-ba82-a632ff047132" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2869,37 +3143,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6128190-10bc-4034-8bfa-f16b709bccfc" ], + "x-ms-request-id": [ "470d2487-5729-4791-86dd-a99f0a0536d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "03748f0e-742f-4a05-9747-57ec2f38659a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120602Z:03748f0e-742f-4a05-9747-57ec2f38659a" ], + "x-ms-correlation-request-id": [ "68454bd6-a006-4789-b08a-486861547819" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020938Z:68454bd6-a006-4789-b08a-486861547819" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD9E3E85296D416FA818B8D746399690 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5558D0C8AF584EC1B9AC5B2E8C445143 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "768" ], - "x-ms-client-request-id": [ "bc470054-c913-4458-8e71-a0dcb0827f63" ], + "x-ms-unique-id": [ "904" ], + "x-ms-client-request-id": [ "4665a080-4c64-4324-ba82-a632ff047132" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2914,24 +3188,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48b315a9-4ce3-436a-b2b2-cf3c407163fd" ], + "x-ms-request-id": [ "8b4a7f1c-07b9-4026-a591-83e733b3923b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7e111feb-1ff1-49cb-8f6f-1a5d6fa5a606" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120602Z:7e111feb-1ff1-49cb-8f6f-1a5d6fa5a606" ], + "x-ms-correlation-request-id": [ "afc31077-1178-4522-ae91-1b78bb77ad2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020938Z:afc31077-1178-4522-ae91-1b78bb77ad2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2748A7529A9E4DD68DDC0998D888CFE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D25B186EF0A24122A528D0FA7124585F Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -2939,7 +3213,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-2g56pvnthz\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2954,18 +3228,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c12657cd-4750-4006-b2f9-2b63135d2ada" ], + "x-ms-request-id": [ "e3ca5d83-759f-476a-8506-c2cc0e43f1a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75c6c9ac-c7da-4018-a73d-4e1d63f1bd02" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/191ea1e5-9136-465a-920a-5554be73af1d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "804afa85-1372-4faa-bfc2-6b47fb2334a4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120602Z:804afa85-1372-4faa-bfc2-6b47fb2334a4" ], + "x-ms-correlation-request-id": [ "925af204-ae0b-4447-82ac-cf08e8a3d075" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020938Z:925af204-ae0b-4447-82ac-cf08e8a3d075" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D97A0969D6B84B6F85198599435DEA71 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 506660F519D04ADEA493241D686853DA Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2983,8 +3257,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "770" ], - "x-ms-client-request-id": [ "332932c1-7975-4ea4-9411-440a40a70d09" ], + "x-ms-unique-id": [ "906" ], + "x-ms-client-request-id": [ "3b9ce27d-5619-45db-bc3c-df06905bb418" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2998,82 +3272,37 @@ "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4433e2ee-8892-49d8-a5d5-1be5e5ebc7b1", "a43c59e8-fb2d-458c-a292-96dae8825022" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e42306eb-31e6-4320-85b4-009b985c3c66" ], - "x-ms-correlation-request-id": [ "e42306eb-31e6-4320-85b4-009b985c3c66" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120603Z:e42306eb-31e6-4320-85b4-009b985c3c66" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 527BDA4C2DDD4713AE5DEE67F8E8601B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "18911" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501669,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501671,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "771" ], - "x-ms-client-request-id": [ "19cf4276-2335-4955-a18d-6139e53851ea" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fcf3ab3-14f8-4831-8082-43c2c452cb23" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "68f1b838-f732-4bdd-a44d-fc830c569e18", "0d869e5e-f7dc-4be3-a268-c8d052c6e8ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4dd16f19-eb25-4c59-827e-3b2513d7f6d9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120604Z:4dd16f19-eb25-4c59-827e-3b2513d7f6d9" ], + "x-ms-request-id": [ "092b7af4-5a10-45c0-a5ce-940eef7b15af" ], + "x-ms-correlation-request-id": [ "092b7af4-5a10-45c0-a5ce-940eef7b15af" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020939Z:092b7af4-5a10-45c0-a5ce-940eef7b15af" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4911B714D6284FFD9C70750B7D58368F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70348AB20C33499EB3CDA4A45E52797A Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "17140" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506100,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506104,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-Windows-Consumption-o1blrw/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "772" ], - "x-ms-client-request-id": [ "445ec7c6-ed23-4b57-adf7-b506e59a1dc3" ], + "x-ms-unique-id": [ "907" ], + "x-ms-client-request-id": [ "4bcf9d73-c134-473a-9963-c8e4ae767fe1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3089,36 +3318,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f1d1419-5c13-425a-a70b-7b25b3dbf3cd" ], + "x-ms-request-id": [ "78f94626-9ae9-4325-9132-cf7f2d3eea2e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a1e3b5d4-2405-4cfb-9eb6-35fbed2c6fd6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:a1e3b5d4-2405-4cfb-9eb6-35fbed2c6fd6" ], + "x-ms-correlation-request-id": [ "33dd48ff-8786-40f4-80d0-c1350c760bb2" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T020939Z:33dd48ff-8786-40f4-80d0-c1350c760bb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B671C5E065214E6D8D0F8C71883CE6DD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45ACCF7F96354AC7B23BDEEED5E2C21E Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "773" ], - "x-ms-client-request-id": [ "bc7764fb-0125-4461-9849-7d42b2a783ca" ], + "x-ms-unique-id": [ "908" ], + "x-ms-client-request-id": [ "59a4e830-2919-4da8-b531-e9569553c600" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3134,36 +3363,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80069f82-244c-475f-935c-4f0b0c5d9980" ], + "x-ms-request-id": [ "98cbc479-4e05-4fe5-a864-433afc49c4b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e636f25c-1926-4a20-84ba-0402c005ba78" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:e636f25c-1926-4a20-84ba-0402c005ba78" ], + "x-ms-correlation-request-id": [ "c5a0261f-8cc4-46dd-8fa1-42b86342cdc5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020939Z:c5a0261f-8cc4-46dd-8fa1-42b86342cdc5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D0B59A87AAD48A09E04271CDC8BA0A8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46880822CDB04996B2E25145E46066F4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "774" ], - "x-ms-client-request-id": [ "6a02fae3-42db-4671-a7fe-d8efbdcf6939" ], + "x-ms-unique-id": [ "909" ], + "x-ms-client-request-id": [ "afc1a5ef-c54f-445c-8777-7e24702aa559" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3179,36 +3408,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9199f358-f604-4905-9835-d57359dfcb74" ], + "x-ms-request-id": [ "a6548255-243d-4dfa-aa3e-0c904796753d" ], "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": [ "7e0aed13-2dce-4931-b845-9311a8411b27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:7e0aed13-2dce-4931-b845-9311a8411b27" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b871f91-32d6-41aa-b6ce-b6e23c2130df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:9b871f91-32d6-41aa-b6ce-b6e23c2130df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB10DFB1EE6B4E28B2A4971940F0CD1E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFE0B6FBBAB64CF787F21CB652D19EA9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1758" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "775" ], - "x-ms-client-request-id": [ "abc8773c-8712-4038-a66e-ef80e43f1516" ], + "x-ms-unique-id": [ "910" ], + "x-ms-client-request-id": [ "578b18e7-c345-40f2-a716-12ce46117859" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3224,36 +3453,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "834ccdb4-a0ce-4daa-96c3-ab383dac8973" ], + "x-ms-request-id": [ "a32fa112-ccf6-4db8-bcae-9ec7a76e10d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8bee64ba-9fbd-4991-856a-23d533a3c556" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120604Z:8bee64ba-9fbd-4991-856a-23d533a3c556" ], + "x-ms-correlation-request-id": [ "836b8bf6-6869-4988-b2f8-40b8cc7e1abe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:836b8bf6-6869-4988-b2f8-40b8cc7e1abe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 303834CB9F5C4817A3ED31CE3E159D5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 05CFE32FB2394AD5807AFD5B132F7D11 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1752" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83429,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_83429\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:07:09.5333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "776" ], - "x-ms-client-request-id": [ "a8929b3c-22a1-46ea-ad14-bbd183d66df6" ], + "x-ms-unique-id": [ "911" ], + "x-ms-client-request-id": [ "873fc2e1-07eb-43f2-a2d8-ee808edba893" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3269,36 +3498,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd01d0eb-176d-4070-a4a4-b0cdee22a4f7" ], + "x-ms-request-id": [ "eaa63818-96b9-4bc8-8950-c46be31be17c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e0b4405c-2b8d-4e21-a26a-7f4fcf7416fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120605Z:e0b4405c-2b8d-4e21-a26a-7f4fcf7416fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "29455f2b-5d62-4dc8-bc2b-9bc1edcd26bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:29455f2b-5d62-4dc8-bc2b-9bc1edcd26bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9849A7F859784A4CA181B1019AA9F719 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CED0060928645618F6741ACE76D0E3D Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":19931,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-cjes6i\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-335_19931\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:03:07.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "777" ], - "x-ms-client-request-id": [ "6f622f94-b381-470e-997a-503371f6d1f1" ], + "x-ms-unique-id": [ "912" ], + "x-ms-client-request-id": [ "b9faa053-12c8-4a32-9f0a-d48c39ce8736" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3314,36 +3543,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec55d426-4f61-45c8-a6a4-da24cf3aa580" ], + "x-ms-request-id": [ "9a623459-8752-4927-a747-f626360b87ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6948b10c-0813-4d7d-b8ac-6a91fbc267e9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120605Z:6948b10c-0813-4d7d-b8ac-6a91fbc267e9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fc0c5078-9e85-41e9-aa54-e7e7178f700a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:fc0c5078-9e85-41e9-aa54-e7e7178f700a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 719712FAD7244B2D8E71E3604E64EF5E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 229AE7F9A8B342FBABC413638F457A4A Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?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-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "778" ], - "x-ms-client-request-id": [ "2082172c-aad3-4817-b05f-d8373c2fdeb5" ], + "x-ms-unique-id": [ "913" ], + "x-ms-client-request-id": [ "2aa0805d-3ed5-48dc-9de3-6f662c2a65b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3359,36 +3588,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17939a66-5905-49e7-973f-7d0ad583ada3" ], + "x-ms-request-id": [ "60748b10-2a9e-47b2-be7b-1397915259fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "da1db45a-106e-4f54-bc13-4ff5be441295" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120606Z:da1db45a-106e-4f54-bc13-4ff5be441295" ], + "x-ms-correlation-request-id": [ "88df86d1-12e2-49a4-b825-41c00c0327d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:88df86d1-12e2-49a4-b825-41c00c0327d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB16C3FEF5D54B6D9B4F4568FB84F50F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E917770A8684EFF8F6D2F3E1773057E Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "779" ], - "x-ms-client-request-id": [ "3408017a-c3bf-4aa2-83ae-76024cd9df5e" ], + "x-ms-unique-id": [ "914" ], + "x-ms-client-request-id": [ "7a729a72-e495-40c2-acb7-0adf9f656f0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3404,36 +3633,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a01ddc7-13d9-4090-a758-f6ef46d1459d" ], + "x-ms-request-id": [ "08d13f23-a716-4f7b-9834-37e76eb2aee0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d834505-35db-4d31-a485-674084d2101e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120606Z:0d834505-35db-4d31-a485-674084d2101e" ], + "x-ms-correlation-request-id": [ "ca183fde-1da2-47ff-a2e9-dfeaa46c8e26" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020941Z:ca183fde-1da2-47ff-a2e9-dfeaa46c8e26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06F3D230E9C6478FB386828E1696C5E7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AAF3ABF6F14D42C691D856603B6596B9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "780" ], - "x-ms-client-request-id": [ "e28190eb-9430-48dd-ac7e-43a8806109a3" ], + "x-ms-unique-id": [ "915" ], + "x-ms-client-request-id": [ "f6b2e06a-141f-432e-887f-8148d385cab7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3449,36 +3678,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4121f4f8-c0dd-4cab-8ab8-39d716a8ddeb" ], + "x-ms-request-id": [ "3cdd9817-ded6-4200-b03d-e182ea7522a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6ae85748-cb94-4831-9748-472c6fc44bef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120607Z:6ae85748-cb94-4831-9748-472c6fc44bef" ], + "x-ms-correlation-request-id": [ "aa53ef64-370a-40f1-ab37-141086e6844d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020941Z:aa53ef64-370a-40f1-ab37-141086e6844d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AED898D800D4F9EA0F21768C62FB4A9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAB55B0878B94D4793B2E5FFA6747C83 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?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-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "781" ], - "x-ms-client-request-id": [ "15454a49-a3c9-4923-b7ee-7c63046b29e2" ], + "x-ms-unique-id": [ "916" ], + "x-ms-client-request-id": [ "048abf2d-877f-430e-ae85-a9960e7455d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3494,36 +3723,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72ad89a2-e802-4385-85fe-ded567a85a84" ], + "x-ms-request-id": [ "44687ff8-017a-416d-9f20-546e7449d620" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49362dea-9896-46ba-bebe-662f2370cbdf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120607Z:49362dea-9896-46ba-bebe-662f2370cbdf" ], + "x-ms-correlation-request-id": [ "16a31d36-d824-4da7-88fb-123d53b86646" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020942Z:16a31d36-d824-4da7-88fb-123d53b86646" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69ED041E1EF94794AFF61B2B4C588709 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83A61D76933345FCAACF3598B909AC65 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+17": { "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": [ "782" ], - "x-ms-client-request-id": [ "e293a7b9-f4db-4c56-904c-b1e833215bc8" ], + "x-ms-unique-id": [ "917" ], + "x-ms-client-request-id": [ "6e1bfca5-848b-4434-8b91-4988a67618d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3538,36 +3767,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "86805843-91d8-4963-9e5a-a0e2e6f8cd9f", "fbf3ac2a-1880-4d55-9f60-73d237c90cfb" ], + "x-ms-original-request-ids": [ "804760f5-76ff-49c5-a1e2-1b529f1093fd", "8f495dde-4d09-4501-903e-8939ee8e1aef", "69d5f858-271f-428d-a748-2b284869df87" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5c5b7be1-1e2e-4f1d-b1de-f22e0ec1cea2" ], - "x-ms-correlation-request-id": [ "5c5b7be1-1e2e-4f1d-b1de-f22e0ec1cea2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120608Z:5c5b7be1-1e2e-4f1d-b1de-f22e0ec1cea2" ], + "x-ms-request-id": [ "e81e88e2-31d7-48bf-b04b-a6c34d4ec839" ], + "x-ms-correlation-request-id": [ "e81e88e2-31d7-48bf-b04b-a6c34d4ec839" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T020943Z:e81e88e2-31d7-48bf-b04b-a6c34d4ec839" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 489B943140C74FBCBECCD27C8B9610B4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B44CB5F2B7304F9A8BFA5D54328FE6F8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+19": { + "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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "783" ], - "x-ms-client-request-id": [ "df6cdc96-b0a3-4c1e-9f4f-4baae5551f88" ], + "x-ms-unique-id": [ "918" ], + "x-ms-client-request-id": [ "4c4b2ead-4607-49aa-b124-0b679fa4b03e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3582,30 +3811,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1423bbf8-120b-4eb1-ac9b-a496abb2f528" ], + "x-ms-request-id": [ "67cfa1dc-4bde-4b94-90b0-351aaf606e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c6a2d053-9e9b-4606-934e-943436d59268" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/61ec09d4-ef02-45ff-8b0b-f6fd7f0fe25d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ab2e69d8-6fa7-457a-8b48-f191e757003e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120608Z:ab2e69d8-6fa7-457a-8b48-f191e757003e" ], + "x-ms-correlation-request-id": [ "8f8a461d-10d6-45a6-8e23-a5adab97e88f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T020943Z:8f8a461d-10d6-45a6-8e23-a5adab97e88f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5DF2E087C1844C882C5AFAE3BCBDBE6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 211906796B814A7B803553B4737EF922 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2015-05-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2015-05-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-0vcunwydg7?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": { @@ -3625,30 +3854,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8d3bbf70-02a2-404b-8bfc-e308ed9df675" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/99a96412-3772-416b-b7cd-97c7d4add23a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "995079f0-3aa9-4879-9376-6ba37117823c" ], - "x-ms-correlation-request-id": [ "995079f0-3aa9-4879-9376-6ba37117823c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120613Z:995079f0-3aa9-4879-9376-6ba37117823c" ], + "x-ms-request-id": [ "8f082886-cee9-4c0b-8b7f-29186fa95c7a" ], + "x-ms-correlation-request-id": [ "8f082886-cee9-4c0b-8b7f-29186fa95c7a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T020949Z:8f082886-cee9-4c0b-8b7f-29186fa95c7a" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7861984A8F244B828DB698308051F69C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8025A878AC3E43869881BD1E0CB06AF0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:09:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7306795d-0000-0300-0000-691478350000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"name\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"AppId\": \"2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de\",\r\n \"ConnectionString\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\r\n \"Name\": \"Func-PowerShell-NewTest5-2g56pvnthz\",\r\n \"CreationDate\": \"2025-11-12T12:06:09.0902113+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-2g56pvnthz_2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-2g56pvnthz-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\": \"\\\"0a07bf58-0000-0300-0000-69168f6d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"name\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"AppId\": \"692703d7-d09f-4ca6-8db1-f6818eb06864\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"841bc0cc-9927-438f-8358-7fda9e4d46c0\",\r\n \"ConnectionString\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\r\n \"Name\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"CreationDate\": \"2025-11-14T02:09:44.1454383+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-0vcunwydg7_692703d7-d09f-4ca6-8db1-f6818eb06864_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-0vcunwydg7-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+21": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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": { }, @@ -3662,39 +3891,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCC031DF80\"" ], + "ETag": [ "\"1DC550BC3875620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f1a13c6-c44e-4bad-8900-9ce0f9f2644c" ], + "x-ms-request-id": [ "0cafdfcc-0733-44e1-b9db-e7796b79f71d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2acc6aee-f3d7-4304-99e7-88754cb56b43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06413e3c-39bf-4d89-9caf-dd3a75f379ee" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "3eeba916-c72d-45a7-be55-b71527f61d26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120657Z:3eeba916-c72d-45a7-be55-b71527f61d26" ], + "x-ms-correlation-request-id": [ "f5839fd7-0d86-4ae4-995d-fa36abdaaed0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021032Z:f5839fd7-0d86-4ae4-995d-fa36abdaaed0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3431BC7257446CA9232485854DA78C0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:06:13Z" ], - "Date": [ "Wed, 12 Nov 2025 12:06:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0F8864CB83C4422B6D91ED52632791B Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:10:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8756" ], + "Content-Length": [ "8749" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:16.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:09:51.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "786" ], - "x-ms-client-request-id": [ "6104202f-39d1-41e2-b37d-6ac68e8712dd" ], + "x-ms-unique-id": [ "921" ], + "x-ms-client-request-id": [ "b6f18e69-0ab4-4e9f-b684-8e4038aa8868" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3708,38 +3937,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCD76A304B\"" ], + "ETag": [ "\"1DC550BDAE03440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56714c41-475f-46e4-9c8b-9cb25a389cf4" ], + "x-ms-request-id": [ "099a2fd8-b9ec-4d3c-921d-07633ea99eb5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "87441544-97b8-4a12-938d-467d9a9abdfe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120727Z:87441544-97b8-4a12-938d-467d9a9abdfe" ], + "x-ms-correlation-request-id": [ "36d6a7f5-697d-43df-908f-8cebe9956b39" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021102Z:36d6a7f5-697d-43df-908f-8cebe9956b39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DE26521076D4E97A123C7B7E0C8851C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF77E5741BA6496AB383AA7A54B4B210 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "8718" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:56.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:10:31.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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "787" ], - "x-ms-client-request-id": [ "1ecede31-4e6c-4740-a186-d6ed34b6d2f7" ], + "x-ms-unique-id": [ "922" ], + "x-ms-client-request-id": [ "3736901b-39af-49c5-8e20-f466535929ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3754,38 +3983,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCD76A304B\"" ], + "ETag": [ "\"1DC550BDAE03440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4246b2dc-1fc4-4451-b750-f2fd2e63127b" ], + "x-ms-request-id": [ "80cd18bf-c2d1-4ba2-91a3-bd74f1808481" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "29c8f842-4cb0-44fc-b3c0-912ad2ed39ad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120727Z:29c8f842-4cb0-44fc-b3c0-912ad2ed39ad" ], + "x-ms-correlation-request-id": [ "f209736d-c359-4fd1-978b-8032d8a43d7b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021102Z:f209736d-c359-4fd1-978b-8032d8a43d7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2CB0B390537C40178D5D98D7BCC7279B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED30348E1AE54183BDEF25541F3E8940 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "8718" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:56.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:10:31.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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+24": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "788" ], - "x-ms-client-request-id": [ "7c3e189e-4d02-4352-9ffb-8ff011aaa760" ], + "x-ms-unique-id": [ "923" ], + "x-ms-client-request-id": [ "4867868a-039d-4039-9398-31694818c3b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3801,36 +4030,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d653021-92fb-412d-b3e3-ff086cb0a601" ], + "x-ms-request-id": [ "a3d8e50a-2c24-4922-b01d-f98bdafae414" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03004489-7a75-4e9a-a805-4837fa0002a2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f00096-efd8-48be-aef2-e7636d38d66a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ca04b242-915a-407d-9444-bd844414bcc6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120727Z:ca04b242-915a-407d-9444-bd844414bcc6" ], + "x-ms-correlation-request-id": [ "d38be513-9454-4ede-a5d6-266fc648fab6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021103Z:d38be513-9454-4ede-a5d6-266fc648fab6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0A9AB66098A4089920C8FD6AC9B567E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:27Z" ], - "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A798414AFE054BB4A257324313032735 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "789" ], - "x-ms-client-request-id": [ "8d6a78e5-9d90-4e2b-8afa-1ea31b824207" ], + "x-ms-unique-id": [ "924" ], + "x-ms-client-request-id": [ "c412169d-eca8-47eb-a02e-df21199d2080" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3846,37 +4075,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fcaf8574-2f44-43c5-9a96-8c486e32dbb4" ], + "x-ms-request-id": [ "1b92a4f4-6e2c-4e9d-8251-b5062b9af007" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5dd62c9d-8ffe-4dbf-a8d4-6013b9119890" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/abfb00b5-933e-4c48-b46a-bf24537cb8fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c66cff3-cd64-4c34-ad32-13e1f680b3b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120728Z:4c66cff3-cd64-4c34-ad32-13e1f680b3b4" ], + "x-ms-correlation-request-id": [ "bd113d36-a7cc-49ca-9cde-511517592c6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021103Z:bd113d36-a7cc-49ca-9cde-511517592c6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35459CFA6A29490C9A340B7B2A9D4513 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:28Z" ], - "Date": [ "Wed, 12 Nov 2025 12:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83E91347C5D34E7EA4E582027AA71594 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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+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/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01+25": { "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": [ "790" ], - "x-ms-client-request-id": [ "3a02b45e-5997-4867-8a7d-8ac3255a23f4" ], + "x-ms-unique-id": [ "925" ], + "x-ms-client-request-id": [ "e0b815b4-0495-4f89-aea4-ec6ff7be54c5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3892,18 +4121,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f2bf05b-1719-4692-909b-8ffa431872d8" ], + "x-ms-request-id": [ "0e7cce9d-2fda-4606-9561-351d7c1931f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9242123-e5a8-44df-bfc3-e2898a8faec1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fca6a4c4-5a61-496a-9d0e-38cb172be8d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120728Z:fca6a4c4-5a61-496a-9d0e-38cb172be8d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2475a9ae-f658-418e-830e-99c6761aa10f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a5e6dda5-912c-4285-9740-b7d7209577a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021103Z:a5e6dda5-912c-4285-9740-b7d7209577a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1017C41B40124629BF763E8B07A045F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:28Z" ], - "Date": [ "Wed, 12 Nov 2025 12:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2011C58685534ECC8F618A68CEB1B3C7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -3914,10 +4143,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+27": { + "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+26": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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": { @@ -3932,40 +4161,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCEC6E700B\"" ], + "ETag": [ "\"1DC550BEF2B502B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec64a9f3-4f0b-47eb-be6d-d29e155e6028" ], + "x-ms-request-id": [ "82a310f0-f0fe-4d86-aec5-0c5e4e8b5f7e" ], "X-AspNet-Version": [ "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/d6161efa-7e61-4ae3-aa7a-ac58b252bd2a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/949266bd-eb3a-43ca-8e5c-921690f285e2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "64c6ecaf-1e3b-466f-908e-64c78dc19e40" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120732Z:64c6ecaf-1e3b-466f-908e-64c78dc19e40" ], + "x-ms-correlation-request-id": [ "e93282dc-99c7-4e5c-acd0-450754ff687d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021107Z:e93282dc-99c7-4e5c-acd0-450754ff687d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C6AE52A101649338DD44776AC2FA76B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:07:28Z" ], - "Date": [ "Wed, 12 Nov 2025 12:07:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2A823062B7F432D986852DF1E496F2A Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1908" ], + "Content-Length": [ "1913" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"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-12T12:07:31.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"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-14T02:11:05.0066667\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "792" ], - "x-ms-client-request-id": [ "8e432e5d-2061-4f19-a50e-2fc20d03e64e" ], + "x-ms-unique-id": [ "927" ], + "x-ms-client-request-id": [ "776cc752-0892-4501-8637-231941cc0756" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3980,37 +4209,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "09bd42e4-6d56-44b3-bc35-d19fe2670796" ], + "x-ms-request-id": [ "9e1424fd-20c3-4d6d-a98f-504b47713831" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cb51c81f-30d6-428f-ae78-f9ead4c6dc2c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:cb51c81f-30d6-428f-ae78-f9ead4c6dc2c" ], + "x-ms-correlation-request-id": [ "1e0852ed-de16-4bcb-a410-ff8a2924133f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021137Z:1e0852ed-de16-4bcb-a410-ff8a2924133f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7AE926DD80F4E6186296561C5D62F0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D93C6A88FB47402082D875C0BF5D19B7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1818" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "793" ], - "x-ms-client-request-id": [ "8e432e5d-2061-4f19-a50e-2fc20d03e64e" ], + "x-ms-unique-id": [ "928" ], + "x-ms-client-request-id": [ "776cc752-0892-4501-8637-231941cc0756" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4025,36 +4254,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7afbc5a7-6c41-47c6-8f82-8ee40abae528" ], + "x-ms-request-id": [ "781c7247-2d4f-4022-8153-41d69aa95682" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8926dab-c041-41f6-9d26-133a487c7989" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:c8926dab-c041-41f6-9d26-133a487c7989" ], + "x-ms-correlation-request-id": [ "960b13c6-7223-406f-b479-b279ad3e002a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021137Z:960b13c6-7223-406f-b479-b279ad3e002a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F7E23DCA193440AAA6B0F252060144A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1219A7178F7A42498902104054A8AC5E Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1818" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "794" ], - "x-ms-client-request-id": [ "5ef88c79-d090-48fc-8287-a88c2b4e8eb9" ], + "x-ms-unique-id": [ "929" ], + "x-ms-client-request-id": [ "04b0975d-e230-4245-a8e1-605b6926a667" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4070,36 +4299,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "afc4ce21-c666-45ec-ac54-fcb7f7dfbec1" ], + "x-ms-request-id": [ "89138816-9479-48e1-a3e4-d6bce2972f1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fb3b0097-83b7-4ac2-9d41-232a4b50858d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:fb3b0097-83b7-4ac2-9d41-232a4b50858d" ], + "x-ms-correlation-request-id": [ "26b26cea-b75e-446e-91ee-645c97a13ae8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021137Z:26b26cea-b75e-446e-91ee-645c97a13ae8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC3747C49B614F46B8290B3914DD90BF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCF4431F9A9B428D858E7729DA5D8091 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1818" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "795" ], - "x-ms-client-request-id": [ "19431fb7-db64-4d82-9079-ff2f0900bd5b" ], + "x-ms-unique-id": [ "930" ], + "x-ms-client-request-id": [ "bcb434b9-5bdd-4418-8873-8cb11d312b5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4114,38 +4343,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCD76A304B\"" ], + "ETag": [ "\"1DC550BDAE03440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e447d7bc-7761-4311-b364-2b26fec68452" ], + "x-ms-request-id": [ "77d3a55a-dae4-40c2-986c-53dbe40d2333" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6182af7-5777-4f53-a926-b8a3c3305302" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120803Z:c6182af7-5777-4f53-a926-b8a3c3305302" ], + "x-ms-correlation-request-id": [ "d6f86e07-3e27-42ba-b187-38b34d7eaf6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021138Z:d6f86e07-3e27-42ba-b187-38b34d7eaf6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B37729BFAE646B0A68892458D4CAE03 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5625DFB74F7D49BFB64228902128E389 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "8718" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:06:56.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:10:31.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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+32": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "796" ], - "x-ms-client-request-id": [ "7fc3d44f-bc22-405e-9803-e6bb568c55ce" ], + "x-ms-unique-id": [ "931" ], + "x-ms-client-request-id": [ "20c3efc2-351f-4e44-93b1-cb51ce992a07" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4161,36 +4390,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f12639e8-3613-4deb-bf18-2528ff246e57" ], + "x-ms-request-id": [ "7b24572f-fe85-44f1-bd74-aa7064a429aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c63b26bd-ce52-4394-b255-d86881693e05" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f33454b-30ee-41b8-95fd-696670132d6d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "60841586-b74c-4f02-99a2-d5ff304cb402" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120804Z:60841586-b74c-4f02-99a2-d5ff304cb402" ], + "x-ms-correlation-request-id": [ "ecd52c8d-8d90-4fc8-9c53-bdea701dec20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021138Z:ecd52c8d-8d90-4fc8-9c53-bdea701dec20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86BECB07FF714180A09D76288F046735 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BBBB0CBF732940E495C231FD3101A642 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "797" ], - "x-ms-client-request-id": [ "5c8107fd-537a-4520-8ddd-8f562d44dc30" ], + "x-ms-unique-id": [ "932" ], + "x-ms-client-request-id": [ "8421308f-e278-4ab5-ba7f-bfa8ef947db0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4206,37 +4435,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5cf067b5-5118-45af-a8d4-ff4dd469e3ce" ], + "x-ms-request-id": [ "f2fd32c2-bd42-436c-b1f4-4916d83ab6f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4983f23d-415e-4913-8d96-28d403bc4fc7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "659b7448-76b9-4ed1-86b9-2b85f9b41515" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120804Z:659b7448-76b9-4ed1-86b9-2b85f9b41515" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0d3b1da-f70b-4da3-a164-e101795fe968" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "42379870-7fa2-4905-9ce9-ea2a49349299" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021138Z:42379870-7fa2-4905-9ce9-ea2a49349299" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68E4616A76E24014887D1074F8399004 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87C8E5D4DD7143D1830573F4586E18A9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+33": { "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": [ "798" ], - "x-ms-client-request-id": [ "7910b8f5-928f-47ed-a467-6dc0e9b90951" ], + "x-ms-unique-id": [ "933" ], + "x-ms-client-request-id": [ "423d64cb-f8b6-4c7e-8b38-d01834a27ef2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4251,36 +4480,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "aa63a4a0-d96f-4121-9a1d-dfe50b2dd545", "49b553d8-152e-4dc3-8ea2-86e2e2e61d85" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "9a8defff-1966-4059-988f-67abf0128e75" ], - "x-ms-correlation-request-id": [ "9a8defff-1966-4059-988f-67abf0128e75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120805Z:9a8defff-1966-4059-988f-67abf0128e75" ], + "x-ms-original-request-ids": [ "26fe2481-3637-4fa1-af49-eb727de091cd", "362d70e7-94b1-4003-8705-1a6811dc81ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "583b5fb4-f966-4c44-8290-aec94aef0277" ], + "x-ms-correlation-request-id": [ "583b5fb4-f966-4c44-8290-aec94aef0277" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021139Z:583b5fb4-f966-4c44-8290-aec94aef0277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08A7290278084914B1136428E6838400 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1DC7B35F18744F61BA10EC973FDB86E2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "20673" ], + "Content-Length": [ "18902" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501669,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501671,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501675,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506100,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506104,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506106,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "799" ], - "x-ms-client-request-id": [ "414dc749-dba8-4a81-92e9-c42fa82b27e4" ], + "x-ms-unique-id": [ "934" ], + "x-ms-client-request-id": [ "7cd8ab32-4491-45ea-9c3c-8da384964884" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4296,36 +4525,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "749c2e44-1d25-4806-a359-179a511828af" ], + "x-ms-request-id": [ "5873d953-f343-4e80-ada6-cc16f0594f67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1e5e2b59-7f93-4457-a118-e2d07a4ae73f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120805Z:1e5e2b59-7f93-4457-a118-e2d07a4ae73f" ], + "x-ms-correlation-request-id": [ "9bbbbec5-db4e-485e-8e2c-9293bc1b271a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021140Z:9bbbbec5-db4e-485e-8e2c-9293bc1b271a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A561870AE084F4E9BBB437E07712C08 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40461518C5B549E1967AF1648DB180D0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+36": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "800" ], - "x-ms-client-request-id": [ "5114b61c-0705-4a82-858b-4f96140ccce9" ], + "x-ms-unique-id": [ "935" ], + "x-ms-client-request-id": [ "57f404f8-3d22-4ed6-8669-eb8948e12da9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4341,81 +4570,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad86fe64-b637-4188-a068-00652718ec26" ], + "x-ms-request-id": [ "fe6140e3-fd55-4092-83ff-4b44de46fd36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6111c985-c851-4cf5-a06a-38e8209698f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120805Z:6111c985-c851-4cf5-a06a-38e8209698f8" ], + "x-ms-correlation-request-id": [ "cc2654ad-91bf-40ea-aa55-048c399d2bb9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:cc2654ad-91bf-40ea-aa55-048c399d2bb9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAC45012E7CC46D6BD2580825E780661 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3B78523DBB84570974362FA82D04525 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "801" ], - "x-ms-client-request-id": [ "b16cf72a-de89-46dc-bb60-7461c3008a2c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4bd07ed5-c634-49b4-98d6-91ad453323f0" ], - "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": [ "fd4b0354-0163-4aad-9253-543f13995915" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:fd4b0354-0163-4aad-9253-543f13995915" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 232061FDDAAE465BBB557DC519FD9D2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:05 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1746" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?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-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "802" ], - "x-ms-client-request-id": [ "0fd871e7-48fa-4715-ad2e-d01c51c34e4b" ], + "x-ms-unique-id": [ "936" ], + "x-ms-client-request-id": [ "e6171867-3989-45fd-9e1b-a2f6a3130e2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4431,36 +4615,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8bb8c932-e096-4c7c-a446-fac97c03b92b" ], + "x-ms-request-id": [ "078b00bd-1169-49ee-8f01-d497dde95a15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62f72449-902b-4a9e-9c53-d5fff9bc299d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:62f72449-902b-4a9e-9c53-d5fff9bc299d" ], + "x-ms-correlation-request-id": [ "7286bbb9-76b7-4eaa-b317-4847e863aa0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:7286bbb9-76b7-4eaa-b317-4847e863aa0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20578BED6CB544108DE4F91AF0977AC5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCC77940CD7E4E95BC259F290E17B089 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1758" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "803" ], - "x-ms-client-request-id": [ "d37c7d1b-a6fb-4a22-be1c-7c667e29afc5" ], + "x-ms-unique-id": [ "937" ], + "x-ms-client-request-id": [ "846a10b6-7378-4398-9c7a-63d2840e63d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4476,36 +4660,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79caf58f-c4a7-480b-a7b3-8392efab462a" ], + "x-ms-request-id": [ "610f91a1-9a94-4ebe-8869-272316ac683c" ], "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": [ "2e9643ca-5f4f-4a04-be53-d978ef0015b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:2e9643ca-5f4f-4a04-be53-d978ef0015b1" ], + "x-ms-correlation-request-id": [ "1029ecbb-c126-4ab5-84a2-9b182af6bed8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:1029ecbb-c126-4ab5-84a2-9b182af6bed8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 236BCFFE90E34546B4368253DF168D02 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A4FF4E5665E4CDEBFEEE748991B820C Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1752" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83429,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_83429\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:07:09.5333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+40": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "804" ], - "x-ms-client-request-id": [ "fc488fc6-9f05-4862-86ff-f2997c07ca93" ], + "x-ms-unique-id": [ "938" ], + "x-ms-client-request-id": [ "e89e1f94-522f-4381-a9f9-567899fcd8cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4521,36 +4705,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e93c300c-581a-45d0-a89a-e52f25c3e632" ], + "x-ms-request-id": [ "2ac8226a-bf89-4ee8-b6f3-fc9d47928ba4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d4fb6056-8e16-4035-b053-c68e0c57564e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:d4fb6056-8e16-4035-b053-c68e0c57564e" ], + "x-ms-correlation-request-id": [ "584239b9-ec32-4bca-9403-b7fcb67621e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:584239b9-ec32-4bca-9403-b7fcb67621e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B1408C68DA64DA5B4A0F6A22FB1CBF2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D7BB6366F4C46349DB9EF98887B3BF0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":19931,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-335_19931\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:03:07.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "805" ], - "x-ms-client-request-id": [ "506784f0-5d2b-4fe9-8ccf-1129dfbbb885" ], + "x-ms-unique-id": [ "939" ], + "x-ms-client-request-id": [ "54d794a2-93ad-431f-a0aa-92f175c62dd9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4566,36 +4750,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8097354c-ee50-4c51-915a-2cc3af813705" ], + "x-ms-request-id": [ "e6e7317f-6c71-4f2b-9866-a4d5ebfa7243" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d30c4672-700c-457b-9632-4524a0386582" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120806Z:d30c4672-700c-457b-9632-4524a0386582" ], + "x-ms-correlation-request-id": [ "2bf47e85-12f7-4cdd-9ede-21c26320fec7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:2bf47e85-12f7-4cdd-9ede-21c26320fec7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0CB75ADB32E743E4BFAADD5CCC2F0C8F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C44940386C7E4078A8C866731432CF4B Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+42": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "806" ], - "x-ms-client-request-id": [ "f038e091-b500-44df-800f-cda74d86e53e" ], + "x-ms-unique-id": [ "940" ], + "x-ms-client-request-id": [ "dea03616-4aa2-4dde-9550-d5d5e738bdaf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4611,36 +4795,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "326ff8a8-2cc4-4f8e-9aa8-a85c7f2405aa" ], + "x-ms-request-id": [ "fbb5482f-6246-4c96-9596-90387e1fe19a" ], "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": [ "36fdffe0-ad4c-4aa0-9cdf-87643337157a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120807Z:36fdffe0-ad4c-4aa0-9cdf-87643337157a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "926bc31c-d726-418a-b15c-24b73763aa22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021141Z:926bc31c-d726-418a-b15c-24b73763aa22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FDD1429B7342449AB437389154FB8F62 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07F32FC7F2CB4E15B8C819D733A9F0BE Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+43": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "807" ], - "x-ms-client-request-id": [ "cd8c6b6b-dc53-47f7-82b2-e0925af5e6da" ], + "x-ms-unique-id": [ "941" ], + "x-ms-client-request-id": [ "3982cbc4-7934-4dad-b0e6-c86cf688de4a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4656,36 +4840,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ced54ac7-5ea8-4608-989e-ce9a99a79dd5" ], + "x-ms-request-id": [ "358b3dc9-fad0-404e-83ef-cf6ba71ff844" ], "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": [ "ecad2658-d8cf-4cb0-a0d5-e9efb6313810" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120807Z:ecad2658-d8cf-4cb0-a0d5-e9efb6313810" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "20c56740-0500-4820-8483-f0c551380918" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021141Z:20c56740-0500-4820-8483-f0c551380918" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE2C214A01D9435097C0197619AA296F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF065613ED8C42A9A350E8250AD5C8DB Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "808" ], - "x-ms-client-request-id": [ "d982433b-325c-4e90-bae3-5a725917fc55" ], + "x-ms-unique-id": [ "942" ], + "x-ms-client-request-id": [ "fec8a316-1dce-4b22-b4ce-f0406a402fb4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4701,36 +4885,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b8d3cddd-94a6-411e-b716-2fcfb010d1ba" ], + "x-ms-request-id": [ "e13b7dc3-5c7d-4728-9538-a2327bc4a879" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "011ecd29-8dab-4ccc-be48-5b3d3875ddc1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120807Z:011ecd29-8dab-4ccc-be48-5b3d3875ddc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8ff89a75-b659-4ad6-8d07-73f328ab0b0e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021141Z:8ff89a75-b659-4ad6-8d07-73f328ab0b0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5552081C68147809D9E329168255F34 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4818AAC552341FDA839EC7B9230490B Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1818" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "809" ], - "x-ms-client-request-id": [ "8362547b-371a-4c4e-8ae4-27061a79899e" ], + "x-ms-unique-id": [ "943" ], + "x-ms-client-request-id": [ "480d5407-4c57-4f93-b043-1ee2cd0d6a64" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4746,36 +4930,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dddb6953-658f-4076-9a70-e1427bee4ab2" ], + "x-ms-request-id": [ "0bb9a737-6560-4405-8630-7c365bb819fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "95e94fff-4587-41b1-bf66-62df50497005" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120808Z:95e94fff-4587-41b1-bf66-62df50497005" ], + "x-ms-correlation-request-id": [ "de4b572c-d517-414e-809d-0e6c395aaa79" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021142Z:de4b572c-d517-414e-809d-0e6c395aaa79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC6EF6DA50CF4676A39E137933A0C424 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95645B4C451249C9B3E5FCBEF8CE5230 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+46": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "810" ], - "x-ms-client-request-id": [ "b3c2f001-478c-4373-8926-3affd02f2de6" ], + "x-ms-unique-id": [ "944" ], + "x-ms-client-request-id": [ "63c378c5-8e37-4447-ad12-601e66cced9d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4791,36 +4975,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50641439-6ce0-4351-8e54-d2d35c778005" ], + "x-ms-request-id": [ "6018255e-562c-43e2-b251-71a1de47c3f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "42fd288c-268d-45b2-ad98-b224c5cb2e00" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120808Z:42fd288c-268d-45b2-ad98-b224c5cb2e00" ], + "x-ms-correlation-request-id": [ "711803fc-5824-43c8-9727-72cb5bb30eb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021143Z:711803fc-5824-43c8-9727-72cb5bb30eb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 376D5E2F2D2C4B919E5F1EA24D0F3464 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAFEF1753F5E4B58965900B2BCEC53FD Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "811" ], - "x-ms-client-request-id": [ "9853bcb5-8f07-4086-bd02-30c24eeef084" ], + "x-ms-unique-id": [ "945" ], + "x-ms-client-request-id": [ "bea2c212-9de3-49f5-90ab-f7cab13aa618" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4836,36 +5020,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7991f9ff-212a-442e-96fb-ba5b8245bfcb" ], + "x-ms-request-id": [ "ba8fc53d-1a98-4346-907c-17496ef0177f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2e007b05-8baf-4f7c-a375-d9516782a4ad" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T120809Z:2e007b05-8baf-4f7c-a375-d9516782a4ad" ], + "x-ms-correlation-request-id": [ "8203fd25-661e-4ff2-a6d0-e38dcc98c46d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T021144Z:8203fd25-661e-4ff2-a6d0-e38dcc98c46d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF459856C547401B873EEEE769D3785B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 921F51D52AD744A18A6C5B7A89236E35 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+48": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+46": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "812" ], - "x-ms-client-request-id": [ "60c6c37c-f7a4-4bea-96ae-92028c6de2e3" ], + "x-ms-unique-id": [ "946" ], + "x-ms-client-request-id": [ "fb80ba3d-8b2a-4d89-8d9c-0c417b02dd5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4881,32 +5065,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "566b0ce0-63ab-4aa2-baa1-a62270e1f980" ], + "x-ms-request-id": [ "5b4f58fa-0505-4761-a843-01b787baea13" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59723c2c-7dac-4601-9f39-deca217132b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90a28ca6-99f9-4bed-897b-270f3fa42a4f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2f846d27-f0cd-43c1-a7a3-617a3ecbdd50" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120809Z:2f846d27-f0cd-43c1-a7a3-617a3ecbdd50" ], + "x-ms-correlation-request-id": [ "21a9b1f2-aafc-49d3-a68c-c094e1b1ba3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021144Z:21a9b1f2-aafc-49d3-a68c-c094e1b1ba3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC54C69D28314E55BD0C2963A2BC8E41 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E3B5BB370994F8EA7A9036069B92B95 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+49": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+47": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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": { }, @@ -4920,39 +5104,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CCD76A304B\"" ], + "ETag": [ "\"1DC550BDAE03440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a11b2638-025b-4b01-ab99-1e29eb4efe57" ], + "x-ms-request-id": [ "041943ad-ec22-4a76-9f81-b841c413f5f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45626918-27b0-439e-8dfc-2276b837d784" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db03a336-deda-4fb0-a445-28d441318197" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "72a25b0e-2747-4fcf-b9e7-b9c8511ed532" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120812Z:72a25b0e-2747-4fcf-b9e7-b9c8511ed532" ], + "x-ms-correlation-request-id": [ "ba5da4bb-3f05-458d-8d2d-d273a9d4edf4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021147Z:ba5da4bb-3f05-458d-8d2d-d273a9d4edf4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59FF9F25C8004E72A7B8FFCFB8190146 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFFE77C9004F417BA8392F5DA7A26633 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:11:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8755" ], + "Content-Length": [ "8748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+48": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "814" ], - "x-ms-client-request-id": [ "86e06e9d-e2d0-467a-9ef3-6bce4e7adb4f" ], + "x-ms-unique-id": [ "948" ], + "x-ms-client-request-id": [ "8aa916a7-8ad1-46ea-b67b-0c8371334045" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4966,38 +5150,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD0438386B\"" ], + "ETag": [ "\"1DC550C0737B9D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a3eb467-98b5-4f20-9077-f73e4ed0c19b" ], + "x-ms-request-id": [ "78d85eb7-0ebc-4f9f-b807-1a491d53ce86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2cb37d0c-1925-4435-a7bd-406e72437e26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120843Z:2cb37d0c-1925-4435-a7bd-406e72437e26" ], + "x-ms-correlation-request-id": [ "14424b99-1283-4051-98ec-03a0ea15859d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021217Z:14424b99-1283-4051-98ec-03a0ea15859d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79715F46D922402BAF22E4D08BF627AD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:42Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F96807717C6643998C55AE9732681B6F Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:17Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8729" ], + "Content-Length": [ "8722" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+51": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "815" ], - "x-ms-client-request-id": [ "b50c218a-0d3f-4d46-a925-58235cd829a5" ], + "x-ms-unique-id": [ "949" ], + "x-ms-client-request-id": [ "d342d04e-3943-430c-afa2-149c745388f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5012,38 +5196,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD0438386B\"" ], + "ETag": [ "\"1DC550C0737B9D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "47678512-9cbc-448d-9ff8-b176872ccf7e" ], + "x-ms-request-id": [ "8ef5b6e6-a46b-4318-afb5-66c3a86516b9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "058adc5a-b8f4-47c3-a6e7-5e1ee7793ce3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120843Z:058adc5a-b8f4-47c3-a6e7-5e1ee7793ce3" ], + "x-ms-correlation-request-id": [ "590e4f77-7cbf-4331-a148-dce0d4625254" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021217Z:590e4f77-7cbf-4331-a148-dce0d4625254" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3FBF0038CD946E1A2F547061B1226B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0542D2E9110F4CAC8799801EAA5F4E92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:17Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8729" ], + "Content-Length": [ "8722" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+52": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+50": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "816" ], - "x-ms-client-request-id": [ "224450ec-60c0-4ebb-875b-5f75cb145102" ], + "x-ms-unique-id": [ "950" ], + "x-ms-client-request-id": [ "9ef614ad-41d4-4d70-9bfb-66d8801f5d9a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5059,36 +5243,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6bcfac7f-42b8-483a-9975-e99688e64fc9" ], + "x-ms-request-id": [ "dd70152c-bf26-452d-95ae-bfbe8558ce59" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3fce743-215b-47bd-96e3-4f6639412d73" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65d500b7-adaf-4553-8941-484c765a1c63" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "25cf263c-4131-450d-9b97-c50363fc4fd5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120843Z:25cf263c-4131-450d-9b97-c50363fc4fd5" ], + "x-ms-correlation-request-id": [ "8512aab9-c43d-458a-9bc2-c535a54fd55f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021218Z:8512aab9-c43d-458a-9bc2-c535a54fd55f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21392F1FA8734A4DA34140E42232EC5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 594DEC2D09A84F34B4ED03271BC86785 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:17Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "817" ], - "x-ms-client-request-id": [ "54f7dcfc-91d3-4a4f-acc9-f7c2087d690b" ], + "x-ms-unique-id": [ "951" ], + "x-ms-client-request-id": [ "2d75606e-d6ef-4351-8fd7-a46a3f073a12" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5104,37 +5288,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31963418-883a-4ed8-bab3-f1df1f012fdc" ], + "x-ms-request-id": [ "bd2575b3-978a-4e20-8718-41f365e0ad9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cde38fb8-c985-4acb-865f-607fdd9836fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d438fd9-8879-4b94-8084-3acba7490bb6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4b6af809-68f2-4207-a11a-a38c31b4679e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120844Z:4b6af809-68f2-4207-a11a-a38c31b4679e" ], + "x-ms-correlation-request-id": [ "c9574acf-da7e-4d44-aa6e-f4ee55261ccf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021218Z:c9574acf-da7e-4d44-aa6e-f4ee55261ccf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A8BF9BAE7D149AB8B29EA1A1687EF8B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8130A23C6AED4E6DB9B2B19FAC8A98D3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:18Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "818" ], - "x-ms-client-request-id": [ "bf01d3c7-87bd-4758-86b0-c98577c2cc0a" ], + "x-ms-unique-id": [ "952" ], + "x-ms-client-request-id": [ "4242c544-b23a-4dea-9ebe-8d17f3e853b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5149,38 +5333,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD0438386B\"" ], + "ETag": [ "\"1DC550C0737B9D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "47e7cb86-4cbb-4cad-9ef6-7c8ba997fe75" ], + "x-ms-request-id": [ "0f2f22dc-972e-4ecd-a679-25187f89b4ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bba98b26-fc5f-45d2-8482-842278c3ce5a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120844Z:bba98b26-fc5f-45d2-8482-842278c3ce5a" ], + "x-ms-correlation-request-id": [ "5311bb4d-bb43-4560-9eb1-bf713ee305b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:5311bb4d-bb43-4560-9eb1-bf713ee305b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8721CEA855A24211BAA28D77130CD595 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C0446F0EB794C79908460661BC8E953 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:18Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8729" ], + "Content-Length": [ "8722" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:11.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d43b0975-fc6c-4e51-ae0e-429ac1a5d5dd\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "819" ], - "x-ms-client-request-id": [ "1005c87f-5be8-4584-9363-b01011791e37" ], + "x-ms-unique-id": [ "953" ], + "x-ms-client-request-id": [ "d4f6d25b-b9dc-4d89-a14d-53117ff8a4f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5196,36 +5380,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6602202-6312-4c09-b989-51f33fd14954" ], + "x-ms-request-id": [ "6f9315d7-0b2f-486e-b2ce-6de77f1029a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/022dcb28-5715-492f-ba6b-43b8caf81381" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/526edf03-9912-49b3-8cde-95c57651630f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "30cb9a72-7b1b-4804-8784-2fee9bdd1225" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120844Z:30cb9a72-7b1b-4804-8784-2fee9bdd1225" ], + "x-ms-correlation-request-id": [ "dc6b138f-da4d-4704-8dcf-7a4498b9374d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:dc6b138f-da4d-4704-8dcf-7a4498b9374d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7957B3DA500441DFB41EE0187F13D917 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA914478D33C47848FB3A9A5FB38B3A5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:19Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+54": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "820" ], - "x-ms-client-request-id": [ "be2818c7-881b-4080-9255-51c0a4ef4bde" ], + "x-ms-unique-id": [ "954" ], + "x-ms-client-request-id": [ "30cc938e-99a4-43f8-9bd5-c4173487c6f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5241,37 +5425,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0a8de263-9b9f-457e-a15b-2c5dce17b084" ], + "x-ms-request-id": [ "1071d0fc-c2a3-4143-a71e-2059845e725d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26f2bf8e-3eaa-481b-bd69-06671d1a859f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "458afd35-5ce9-4f48-a8a2-2fce81416dbd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120845Z:458afd35-5ce9-4f48-a8a2-2fce81416dbd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f27c67a0-989d-4438-b107-b250cd7cd37a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d7cac3b-564a-4f4a-bfc3-ad5f9b1cbc39" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:2d7cac3b-564a-4f4a-bfc3-ad5f9b1cbc39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19C772BEC9A64A8A965D857B7DDBF4B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A823BACD47044E0A268C24C5B396CC6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:19Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"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\":31828,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+57": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+55": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "821" ], - "x-ms-client-request-id": [ "a93359d6-489d-4e9a-9dc9-32bb1720cb72" ], + "x-ms-unique-id": [ "955" ], + "x-ms-client-request-id": [ "3e050196-0c76-4efb-83b8-38c1098bd0c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5287,32 +5471,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19efaee8-fd04-4d55-a3f6-c62803cf4c75" ], + "x-ms-request-id": [ "898f3652-7568-42c8-a26c-e23b0490dbde" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59056e72-fa5d-4f0c-ab5a-7cb5fec00ed9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cbea1c8-6248-4642-9db4-c084ab70f665" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "af551fee-b56b-4ce6-a1cd-92eb57bf3a22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120845Z:af551fee-b56b-4ce6-a1cd-92eb57bf3a22" ], + "x-ms-correlation-request-id": [ "33227511-68b5-41c6-a56d-f4055108fb27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:33227511-68b5-41c6-a56d-f4055108fb27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 714FBB83032A4FE5B3E7D1B201B3AF48 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:45Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2541F0D3EB63418B8C1FF256FD588556 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:19Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+58": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+56": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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": { }, @@ -5326,39 +5510,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD0438386B\"" ], + "ETag": [ "\"1DC550C0737B9D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a059cf33-9701-499e-a949-cb8da9ba8bf8" ], + "x-ms-request-id": [ "f8fc1e56-b887-4084-b358-3fbe25a64605" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44c74f9a-74d1-433d-9064-27bf02cb2da6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93f3323f-da16-48a3-8ead-accd424f53dc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "18406459-bd70-4b15-b279-633cf626e338" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120847Z:18406459-bd70-4b15-b279-633cf626e338" ], + "x-ms-correlation-request-id": [ "6630c45e-8d9d-4257-96e6-12c12b82ca74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021222Z:6630c45e-8d9d-4257-96e6-12c12b82ca74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2387721F09FF48ED9525886F1EA482CC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:08:45Z" ], - "Date": [ "Wed, 12 Nov 2025 12:08:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E11E4007A6EE4ABF894AA73C70A69953 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:20Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8610" ], + "Content-Length": [ "8608" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.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\":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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "823" ], - "x-ms-client-request-id": [ "6efe5251-e2bd-463c-89b8-f0f2abafd0c2" ], + "x-ms-unique-id": [ "957" ], + "x-ms-client-request-id": [ "72e32b0f-bdcb-4ba6-89db-b7696ecba2b2" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5372,38 +5556,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD19449B80\"" ], + "ETag": [ "\"1DC550C1C609895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23b8f822-4e36-4253-b799-6f2ce91c7f37" ], + "x-ms-request-id": [ "0680b9c7-5e2b-4aa2-8399-de6d30bd8184" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b27a80e7-2eb7-42d7-b1e5-2c5fa43a83c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120918Z:b27a80e7-2eb7-42d7-b1e5-2c5fa43a83c7" ], + "x-ms-correlation-request-id": [ "b56f0d8f-7300-4924-a24b-bee16becea80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021252Z:b56f0d8f-7300-4924-a24b-bee16becea80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5D8B1D141994C6A8A43754C8149C44A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAC5DD35640C4E6EBF2478F314E5791E Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8582" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "824" ], - "x-ms-client-request-id": [ "4a442759-53c9-4633-b71d-507183a0399e" ], + "x-ms-unique-id": [ "958" ], + "x-ms-client-request-id": [ "15c6966b-8b6c-4f0e-b9da-f07a1cf6d713" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5418,38 +5602,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD19449B80\"" ], + "ETag": [ "\"1DC550C1C609895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91885cd8-53c1-4b6e-9079-1f0128fdd752" ], + "x-ms-request-id": [ "dbae95cc-fce7-46a8-9297-a59d6bfd7d05" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "52c34bce-3270-4b15-b3a9-8015bd012451" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120918Z:52c34bce-3270-4b15-b3a9-8015bd012451" ], + "x-ms-correlation-request-id": [ "10176b39-83ce-476d-9c48-4ff003ad6b47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021253Z:10176b39-83ce-476d-9c48-4ff003ad6b47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABF631F01CD94CBCA4D45269E41DBB32 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BACFCBE4D4C3476F9C3E13CB9D6261B4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8582" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+61": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+59": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "825" ], - "x-ms-client-request-id": [ "dad43a11-29c8-4945-a6c1-df2ccb924e97" ], + "x-ms-unique-id": [ "959" ], + "x-ms-client-request-id": [ "a8d37cdd-cf6d-4f67-abb5-4a32f0803dc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5465,36 +5649,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbe3bb62-5662-4bb1-af4e-d672c9b140d3" ], + "x-ms-request-id": [ "d27b5543-31a0-4417-86da-3219c143edce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7ea77c0-15de-43c2-998a-be92bf07ccb5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46611f32-2609-4d92-818b-0b129cc2a822" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d49d3627-6a80-444d-9a57-33d29302b9e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120918Z:d49d3627-6a80-444d-9a57-33d29302b9e6" ], + "x-ms-correlation-request-id": [ "5aa79c69-9ad4-4719-b59b-8e1bca8faa40" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021253Z:5aa79c69-9ad4-4719-b59b-8e1bca8faa40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A67514BBEC0462F8029727DF17B5478 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E422F8003BB4EB5A50B1AABA795B61D Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+62": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "826" ], - "x-ms-client-request-id": [ "ff7ff1c0-e6b1-45d9-8754-9bfc8ca2ea71" ], + "x-ms-unique-id": [ "960" ], + "x-ms-client-request-id": [ "2002e008-d791-48b9-aa8d-c575b5bc881d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5510,37 +5694,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da11fbea-52e7-43a6-bbbd-7e29876eb4c4" ], + "x-ms-request-id": [ "41ed7d2e-4434-4e7b-b159-31272e55df59" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40bc4dcb-a983-4a70-99b5-1d7cb92a41d5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab5efa3b-a55f-43ab-a2fb-3bcdb9c39572" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9d09120b-122e-4fd6-9cb5-06102464a748" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120919Z:9d09120b-122e-4fd6-9cb5-06102464a748" ], + "x-ms-correlation-request-id": [ "0372b630-120b-4d5f-8f9f-4426935b72f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021253Z:0372b630-120b-4d5f-8f9f-4426935b72f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5374E3DA1D584A2FB2763892CA0B6941 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07C0299B5A464116934BCBAA85809705 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "827" ], - "x-ms-client-request-id": [ "4d89e972-efea-4e67-87ab-c5792a7a5861" ], + "x-ms-unique-id": [ "961" ], + "x-ms-client-request-id": [ "ed64df39-aada-4c2a-9e4a-b4c72fae6c1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5555,38 +5739,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD19449B80\"" ], + "ETag": [ "\"1DC550C1C609895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa57e280-1d72-4220-b6cd-88f2f1d2811e" ], + "x-ms-request-id": [ "883b674b-1e7f-4e12-a34f-3ffbb5a41786" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9637f3c7-651f-4bbe-b050-02b1f6782019" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120919Z:9637f3c7-651f-4bbe-b050-02b1f6782019" ], + "x-ms-correlation-request-id": [ "7395e665-e749-436e-84e8-f43dd35f13cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:7395e665-e749-436e-84e8-f43dd35f13cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B871A2EC551E499E909BCE28D8EF110B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CD213E13A314D39AF130F330663A023 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8582" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:08:47.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "828" ], - "x-ms-client-request-id": [ "f2853a50-3aa6-4401-86c0-e36625185e5d" ], + "x-ms-unique-id": [ "962" ], + "x-ms-client-request-id": [ "0dfc03f8-b1d9-45cf-a0b3-a3dbcaff8535" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5602,36 +5786,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "960595ad-89d4-4d64-a019-fda7ced6ba23" ], + "x-ms-request-id": [ "09acee7e-1363-4335-b061-2a78b2b556a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f26e9e2a-55ef-4627-ad52-60346e7b034f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "0f8e5c47-a613-4120-8ccb-b258263ec289" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120919Z:0f8e5c47-a613-4120-8ccb-b258263ec289" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59f7c6e1-c072-479a-861f-8108df9d595d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4be9b1b1-9cd8-4287-af25-903c51a41e63" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:4be9b1b1-9cd8-4287-af25-903c51a41e63" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3AA56252A72A4163BB3450491A38A1C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D979C4976334C7F9A3DCD9036253525 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+65": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "829" ], - "x-ms-client-request-id": [ "991016d2-cbf2-4076-9227-262a815e5e71" ], + "x-ms-unique-id": [ "963" ], + "x-ms-client-request-id": [ "4fe0a354-1a96-40e0-a2d4-e56bfe21562d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5647,37 +5831,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c013d92d-1f97-4cd4-bf37-bc710d7ceea1" ], + "x-ms-request-id": [ "3c740bb1-9c57-4daf-90e4-56b2494aa5da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/27b2dd1a-5c5d-47c9-8834-0e6128aa77a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f298236a-766c-47a9-a110-803cce3b8c85" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f82a3309-808e-4ea3-8f6f-89256d5b03c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120920Z:f82a3309-808e-4ea3-8f6f-89256d5b03c4" ], + "x-ms-correlation-request-id": [ "07a365be-337e-4bf6-80d8-e426bc224fd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:07a365be-337e-4bf6-80d8-e426bc224fd0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE04DD40D99C4ED2B8A0D33DD31DB015 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E61CCE8054146C1BDF61A724523E7ED Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "830" ], - "x-ms-client-request-id": [ "e52ad1da-af24-4660-82ef-064b16f13ca3" ], + "x-ms-unique-id": [ "964" ], + "x-ms-client-request-id": [ "c57bffac-b30b-48ea-8f90-0f1a71ab88e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5693,36 +5877,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7fe653f-2e60-4cd8-be0a-daf271b13281" ], + "x-ms-request-id": [ "3709b85d-cda3-42ef-850d-4efa34e743a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3c47d0e-a115-4005-9677-0cf8861113d9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/668d7f1b-7fe7-455f-a7c1-b85e529ed99b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4746d176-b73b-4822-944c-b5053c58ae52" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120920Z:4746d176-b73b-4822-944c-b5053c58ae52" ], + "x-ms-correlation-request-id": [ "140142c0-b17e-41df-8aa3-18ebe29302d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:140142c0-b17e-41df-8aa3-18ebe29302d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A460D27049A442BA62649673134DAC7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:20Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49534449EC9147159979FF93FEBE0517 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", "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+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/providers/Microsoft.Insights/components?api-version=2015-05-01+65": { "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": [ "831" ], - "x-ms-client-request-id": [ "014c3b5e-29c7-42fb-b77b-dab581d79960" ], + "x-ms-unique-id": [ "965" ], + "x-ms-client-request-id": [ "bdc810a0-e3c9-4fa2-a2c2-dae3da4dfe18" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5740,29 +5924,29 @@ "x-ms-original-request-ids": [ "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5701561c-4329-4cb8-86ca-4098ee50386a" ], - "x-ms-correlation-request-id": [ "5701561c-4329-4cb8-86ca-4098ee50386a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120921Z:5701561c-4329-4cb8-86ca-4098ee50386a" ], + "x-ms-request-id": [ "9eab5643-05e0-475a-83c2-e6bf16929e94" ], + "x-ms-correlation-request-id": [ "9eab5643-05e0-475a-83c2-e6bf16929e94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021256Z:9eab5643-05e0-475a-83c2-e6bf16929e94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20FE6C16D89D47B8BA000CAEB1E7B776 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:20Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 134E3EB6AA124BD6AD7E7B12CFAE4CA2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "41614" ], + "Content-Length": [ "42939" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"6f061e9d-0000-0300-0000-69146ace0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-du1wbt\",\"AppId\":\"4a4e9fad-07ee-475e-930e-550a8185b341\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"81a4af07-3a28-45a4-9de3-dd42f3385a36\",\"ConnectionString\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\",\"Name\":\"Functions-PowerShell-74-du1wbt\",\"CreationDate\":\"2025-11-12T11:08:57.5485889+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-du1wbt_4a4e9fad-07ee-475e-930e-550a8185b341_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-du1wbt-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f0644b5-0000-0300-0000-69146b1d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-e0u29b\",\"AppId\":\"2a429c15-cebd-4a2e-95df-beeca23b63ac\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"981c27d1-6867-46be-87f2-42bca97c6c04\",\"ConnectionString\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\",\"Name\":\"Functions-Node-22-e0u29b\",\"CreationDate\":\"2025-11-12T11:10:17.0591899+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-e0u29b_2a429c15-cebd-4a2e-95df-beeca23b63ac_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-e0u29b-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f0677c6-0000-0300-0000-69146b570000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/microsoft.insights/components/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-1axywr\",\"AppId\":\"4d9ad9ab-1bf4-43c6-9323-4b55fba45329\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"803c0538-84d0-43dc-9582-8a96eb8291f7\",\"ConnectionString\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\",\"Name\":\"Functions-DotNet-8-1axywr\",\"CreationDate\":\"2025-11-12T11:11:15.6369552+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-1axywr_4d9ad9ab-1bf4-43c6-9323-4b55fba45329_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-1axywr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f0654e2-0000-0300-0000-69146bb80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-flmd3a\",\"AppId\":\"50af0760-dae4-471d-909e-6adb861ceda1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e5df6ce2-ade0-4846-9375-91cbac44fd63\",\"ConnectionString\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\",\"Name\":\"Functions-Python-312-flmd3a\",\"CreationDate\":\"2025-11-12T11:12:52.4377633+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-flmd3a_50af0760-dae4-471d-909e-6adb861ceda1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-flmd3a-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6f06faf3-0000-0300-0000-69146bfc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl-new\",\"name\":\"Functions-PowerShellTest-u074f23mpl-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-u074f23mpl-new\",\"AppId\":\"a216cd51-e495-41b1-87f4-8d6afd178401\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"6d61e4a0-2d68-4b31-aac3-2033202c388f\",\"ConnectionString\":\"InstrumentationKey=6d61e4a0-2d68-4b31-aac3-2033202c388f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a216cd51-e495-41b1-87f4-8d6afd178401\",\"Name\":\"Functions-PowerShellTest-u074f23mpl-new\",\"CreationDate\":\"2025-11-12T11:13:59.9408869+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-u074f23mpl-new_a216cd51-e495-41b1-87f4-8d6afd178401_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7006284a-0000-0300-0000-69146d120000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest1-xj3rn0czbp\",\"name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"AppId\":\"cd31381e-3776-48e0-96bb-536f3b046173\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ccdcf4f1-f4f9-450a-840a-a67055ad7238\",\"ConnectionString\":\"InstrumentationKey=ccdcf4f1-f4f9-450a-840a-a67055ad7238;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd31381e-3776-48e0-96bb-536f3b046173\",\"Name\":\"Func-PowerShell-NewTest1-xj3rn0czbp\",\"CreationDate\":\"2025-11-12T11:18:14.8420581+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-xj3rn0czbp_cd31381e-3776-48e0-96bb-536f3b046173_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-xj3rn0czbp-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"710656fd-0000-0300-0000-6914731b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-CustomImage-yji9lmaxko\",\"name\":\"Functions-CustomImage-yji9lmaxko\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-yji9lmaxko\",\"AppId\":\"9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8b8afcaa-2646-4009-95c4-6e2cf3b772bc\",\"ConnectionString\":\"InstrumentationKey=8b8afcaa-2646-4009-95c4-6e2cf3b772bc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9feb715d-3efc-439e-aaed-40eb4c7fba8e\",\"Name\":\"Functions-CustomImage-yji9lmaxko\",\"CreationDate\":\"2025-11-12T11:44:23.2238886+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-yji9lmaxko_9feb715d-3efc-439e-aaed-40eb4c7fba8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-yji9lmaxko-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72068313-0000-0300-0000-6914736b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/microsoft.insights/components/Functions-Python-10bxo65l7g\",\"name\":\"Functions-Python-10bxo65l7g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-10bxo65l7g\",\"AppId\":\"7967637b-0d12-45cd-8669-9c7aa63ed33a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5e580f9c-4125-4781-8542-efa816dacafb\",\"ConnectionString\":\"InstrumentationKey=5e580f9c-4125-4781-8542-efa816dacafb;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7967637b-0d12-45cd-8669-9c7aa63ed33a\",\"Name\":\"Functions-Python-10bxo65l7g\",\"CreationDate\":\"2025-11-12T11:45:43.3663723+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-10bxo65l7g_7967637b-0d12-45cd-8669-9c7aa63ed33a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-10bxo65l7g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72069527-0000-0300-0000-691473b60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-u074f23mpl\",\"AppId\":\"dce78295-bb82-4bc2-907e-e7da2d157471\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be\",\"ConnectionString\":\"InstrumentationKey=a3a3fe3a-d7a8-4e7a-bd03-9b7c073521be;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dce78295-bb82-4bc2-907e-e7da2d157471\",\"Name\":\"Functions-PowerShellTest-u074f23mpl\",\"CreationDate\":\"2025-11-12T11:46:55.9737326+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-u074f23mpl_dce78295-bb82-4bc2-907e-e7da2d157471_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7206cd58-0000-0300-0000-6914746e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl\",\"name\":\"Functions-PowerShellTest-u074f23mpl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-u074f23mpl\",\"AppId\":\"10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"78cb4fe9-b95f-4c81-a7da-462e1c332bc2\",\"ConnectionString\":\"InstrumentationKey=78cb4fe9-b95f-4c81-a7da-462e1c332bc2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=10da85e8-cdbb-43f7-8ba1-7772e0b939aa\",\"Name\":\"Functions-PowerShellTest-u074f23mpl\",\"CreationDate\":\"2025-11-12T11:48:32.0439985+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-u074f23mpl_10da85e8-cdbb-43f7-8ba1-7772e0b939aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72063574-0000-0300-0000-691474ce0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-DotNet-we3pd25b9g\",\"name\":\"Functions-DotNet-we3pd25b9g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-we3pd25b9g\",\"AppId\":\"2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9fca4f76-d133-4a00-955e-b079cbb13fb8\",\"ConnectionString\":\"InstrumentationKey=9fca4f76-d133-4a00-955e-b079cbb13fb8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2ef6a493-ad79-4c82-bc89-061e4dc0a23e\",\"Name\":\"Functions-DotNet-we3pd25b9g\",\"CreationDate\":\"2025-11-12T11:51:37.1890585+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-we3pd25b9g_2ef6a493-ad79-4c82-bc89-061e4dc0a23e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-we3pd25b9g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7206d49f-0000-0300-0000-691475710000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Java-pxi52b0hul\",\"name\":\"Functions-Java-pxi52b0hul\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-pxi52b0hul\",\"AppId\":\"ec32f43d-e585-4348-9f48-b7426ac14ba7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"391f0399-d4c9-408d-9ee9-e4a7e7611b1f\",\"ConnectionString\":\"InstrumentationKey=391f0399-d4c9-408d-9ee9-e4a7e7611b1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=ec32f43d-e585-4348-9f48-b7426ac14ba7\",\"Name\":\"Functions-Java-pxi52b0hul\",\"CreationDate\":\"2025-11-12T11:54:19.3903837+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-pxi52b0hul_ec32f43d-e585-4348-9f48-b7426ac14ba7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-pxi52b0hul-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"720651b1-0000-0300-0000-691475b50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/microsoft.insights/components/Functions-Node-qb4h0d3z2x\",\"name\":\"Functions-Node-qb4h0d3z2x\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-qb4h0d3z2x\",\"AppId\":\"eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0f83d0db-c8a1-4f7e-8398-8cbda33e68e9\",\"ConnectionString\":\"InstrumentationKey=0f83d0db-c8a1-4f7e-8398-8cbda33e68e9;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eb0309fc-c8ce-4195-9fc9-a0e6050cac3f\",\"Name\":\"Functions-Node-qb4h0d3z2x\",\"CreationDate\":\"2025-11-12T11:55:28.9646342+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-qb4h0d3z2x_eb0309fc-c8ce-4195-9fc9-a0e6050cac3f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-qb4h0d3z2x-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"72069dc6-0000-0300-0000-691476070000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-DotNet-Isolated5ivf3pq4d9\",\"name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"AppId\":\"58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6d43c560-5f34-4318-87ba-95d3aa047695\",\"ConnectionString\":\"InstrumentationKey=6d43c560-5f34-4318-87ba-95d3aa047695;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=58148da6-f1bc-4e01-b683-6b3ee1fe827e\",\"Name\":\"Functions-DotNet-Isolated5ivf3pq4d9\",\"CreationDate\":\"2025-11-12T11:56:50.257685+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-isolated5ivf3pq4d9_58148da6-f1bc-4e01-b683-6b3ee1fe827e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated5ivf3pq4d9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7206bde0-0000-0300-0000-691476690000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-CustomHandlerh7ucdtvris\",\"name\":\"Functions-CustomHandlerh7ucdtvris\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlerh7ucdtvris\",\"AppId\":\"da9cceb4-1628-4015-b256-68f4e8b0a511\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"842eaed2-2241-4893-872c-1c95bd2f5a61\",\"ConnectionString\":\"InstrumentationKey=842eaed2-2241-4893-872c-1c95bd2f5a61;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=da9cceb4-1628-4015-b256-68f4e8b0a511\",\"Name\":\"Functions-CustomHandlerh7ucdtvris\",\"CreationDate\":\"2025-11-12T11:58:28.4933694+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlerh7ucdtvris_da9cceb4-1628-4015-b256-68f4e8b0a511_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerh7ucdtvris-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7306170d-0000-0300-0000-6914770d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest2-wxft49p0i3\",\"name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"AppId\":\"9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9de2c055-196f-42d0-b5e1-cf9251513b66\",\"ConnectionString\":\"InstrumentationKey=9de2c055-196f-42d0-b5e1-cf9251513b66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f\",\"Name\":\"Func-PowerShell-NewTest2-wxft49p0i3\",\"CreationDate\":\"2025-11-12T12:01:13.6018697+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-wxft49p0i3_9ef0aebe-db0e-4ba8-b823-bb8746ccdb8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-wxft49p0i3-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"73068330-0000-0300-0000-691477910000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest3-o8n3yqx5lc\",\"name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"AppId\":\"64f96b84-5dae-4dde-859f-d44584f74648\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6b443061-498c-46df-87bc-0d0c318c30cf\",\"ConnectionString\":\"InstrumentationKey=6b443061-498c-46df-87bc-0d0c318c30cf;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=64f96b84-5dae-4dde-859f-d44584f74648\",\"Name\":\"Func-PowerShell-NewTest3-o8n3yqx5lc\",\"CreationDate\":\"2025-11-12T12:03:24.3148657+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-o8n3yqx5lc_64f96b84-5dae-4dde-859f-d44584f74648_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-o8n3yqx5lc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7306795d-0000-0300-0000-691478350000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"AppId\":\"2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de\",\"ConnectionString\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"Name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"CreationDate\":\"2025-11-12T12:06:09.0902113+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-2g56pvnthz_2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-2g56pvnthz-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03cb7e-0000-0200-0000-69146d970000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-112925\",\"name\":\"Functions-Flex-DotNetIsolated-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-112925\",\"AppId\":\"8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"27ea1b07-fd8d-4548-b836-6f3963752f28\",\"ConnectionString\":\"InstrumentationKey=27ea1b07-fd8d-4548-b836-6f3963752f28;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=8b3f974d-4b75-41fc-8ec1-52ae2bb0decd\",\"Name\":\"Functions-Flex-DotNetIsolated-112925\",\"CreationDate\":\"2025-11-12T11:20:35.2452925+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-112925_8b3f974d-4b75-41fc-8ec1-52ae2bb0decd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e030783-0000-0200-0000-69146e1a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Node-112925\",\"name\":\"Functions-Flex-Node-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-112925\",\"AppId\":\"f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"2d0c1a0a-2951-423f-8471-574b6e71fb7d\",\"ConnectionString\":\"InstrumentationKey=2d0c1a0a-2951-423f-8471-574b6e71fb7d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f0410b81-5d3e-4655-9df6-b3118e3db5d5\",\"Name\":\"Functions-Flex-Node-112925\",\"CreationDate\":\"2025-11-12T11:22:55.045101+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-112925_f0410b81-5d3e-4655-9df6-b3118e3db5d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03d785-0000-0200-0000-69146e9c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Python-112925\",\"name\":\"Functions-Flex-Python-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-112925\",\"AppId\":\"d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0cce5e22-34fc-4579-82f2-611013da28fa\",\"ConnectionString\":\"InstrumentationKey=0cce5e22-34fc-4579-82f2-611013da28fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=d33efadf-7035-40be-bcb8-42d8b5eeaa38\",\"Name\":\"Functions-Flex-Python-112925\",\"CreationDate\":\"2025-11-12T11:25:04.1330297+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-112925_d33efadf-7035-40be-bcb8-42d8b5eeaa38_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e036188-0000-0200-0000-69146f220000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Java-112925\",\"name\":\"Functions-Flex-Java-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-112925\",\"AppId\":\"522e7f15-b24b-4f68-920f-130c48d314ea\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e653ce75-d374-49fd-a265-275d62e89fb1\",\"ConnectionString\":\"InstrumentationKey=e653ce75-d374-49fd-a265-275d62e89fb1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=522e7f15-b24b-4f68-920f-130c48d314ea\",\"Name\":\"Functions-Flex-Java-112925\",\"CreationDate\":\"2025-11-12T11:27:18.2695179+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-112925_522e7f15-b24b-4f68-920f-130c48d314ea_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03698b-0000-0200-0000-69146fa50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-PowerShell-112925\",\"name\":\"Functions-Flex-PowerShell-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-112925\",\"AppId\":\"7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8026b150-b89d-4d44-81af-aa397315fd16\",\"ConnectionString\":\"InstrumentationKey=8026b150-b89d-4d44-81af-aa397315fd16;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=7ff6c5cf-b63f-4a5d-a007-50d204c8dae4\",\"Name\":\"Functions-Flex-PowerShell-112925\",\"CreationDate\":\"2025-11-12T11:29:26.9007368+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-112925_7ff6c5cf-b63f-4a5d-a007-50d204c8dae4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03f58f-0000-0200-0000-691470310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Flex-Custom-112925\",\"name\":\"Functions-Flex-Custom-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-112925\",\"AppId\":\"3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f6f831aa-5e80-4794-9339-96325a999025\",\"ConnectionString\":\"InstrumentationKey=f6f831aa-5e80-4794-9339-96325a999025;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f\",\"Name\":\"Functions-Flex-Custom-112925\",\"CreationDate\":\"2025-11-12T11:31:50.9829727+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-112925_3d5bd2a1-c08a-41d2-9c7f-2fe2cb86884f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e031b94-0000-0200-0000-691470b50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-112925\",\"name\":\"Functions-Python-Flex-Scaling-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-112925\",\"AppId\":\"6c98ccd8-e53a-451d-a19f-554753026e85\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dfc253e3-77b0-4844-94e1-32dcd5882a3f\",\"ConnectionString\":\"InstrumentationKey=dfc253e3-77b0-4844-94e1-32dcd5882a3f;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6c98ccd8-e53a-451d-a19f-554753026e85\",\"Name\":\"Functions-Python-Flex-Scaling-112925\",\"CreationDate\":\"2025-11-12T11:33:57.6896087+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-112925_6c98ccd8-e53a-451d-a19f-554753026e85_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e032497-0000-0200-0000-691471380000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Node-SystemIdentity-112925\",\"name\":\"Functions-Node-SystemIdentity-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-112925\",\"AppId\":\"6a33d57a-89ba-47c9-822f-a404ba432ebb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d94d8d1d-e341-455d-bf5e-6d34b12c1ee6\",\"ConnectionString\":\"InstrumentationKey=d94d8d1d-e341-455d-bf5e-6d34b12c1ee6;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a33d57a-89ba-47c9-822f-a404ba432ebb\",\"Name\":\"Functions-Node-SystemIdentity-112925\",\"CreationDate\":\"2025-11-12T11:36:13.5609158+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-112925_6a33d57a-89ba-47c9-822f-a404ba432ebb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03a29a-0000-0200-0000-691471be0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-112925\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"AppId\":\"b67d6d86-8122-4475-8e21-d77b809defdc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ccecbaee-8cab-45d3-be5b-5192664369ea\",\"ConnectionString\":\"InstrumentationKey=ccecbaee-8cab-45d3-be5b-5192664369ea;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=b67d6d86-8122-4475-8e21-d77b809defdc\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-112925\",\"CreationDate\":\"2025-11-12T11:38:27.6901102+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-1129_b67d6d86-8122-4475-8e21-d77b809defdc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3e03079e-0000-0200-0000-6914724a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/microsoft.insights/components/Functions-PS-CustomConfig-112925\",\"name\":\"Functions-PS-CustomConfig-112925\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-112925\",\"AppId\":\"737a23a8-f881-4961-bffc-251143cffa60\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"63ba4b8f-4132-45cd-82df-dc9432538e53\",\"ConnectionString\":\"InstrumentationKey=63ba4b8f-4132-45cd-82df-dc9432538e53;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=737a23a8-f881-4961-bffc-251143cffa60\",\"Name\":\"Functions-PS-CustomConfig-112925\",\"CreationDate\":\"2025-11-12T11:40:47.4450527+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-112925_737a23a8-f881-4961-bffc-251143cffa60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-112925-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"0607097e-0000-0300-0000-6916815d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-zq9mby\",\"AppId\":\"577086da-1113-4767-8fd2-5be3162b711a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7\",\"ConnectionString\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\",\"Name\":\"Functions-PowerShell-74-zq9mby\",\"CreationDate\":\"2025-11-14T01:09:45.6834528+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-zq9mby_577086da-1113-4767-8fd2-5be3162b711a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-zq9mby-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607b791-0000-0300-0000-691681ac0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-nvsk38\",\"AppId\":\"6b2a637a-aba1-4db7-9981-515565c4013a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"91220207-0288-4ea6-97e6-e3dfcec0044e\",\"ConnectionString\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\",\"Name\":\"Functions-Node-22-nvsk38\",\"CreationDate\":\"2025-11-14T01:11:04.0715359+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-nvsk38_6b2a637a-aba1-4db7-9981-515565c4013a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-nvsk38-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607d2a1-0000-0300-0000-691681e90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-r0w8sa\",\"AppId\":\"77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"868ce2c0-1023-4398-80d6-d3e35eebb25b\",\"ConnectionString\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Name\":\"Functions-DotNet-8-r0w8sa\",\"CreationDate\":\"2025-11-14T01:12:03.525488+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-r0w8sa_77455f5c-2f64-431c-bd21-50a9fab514e9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-r0w8sa-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607dcb6-0000-0300-0000-6916823c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-wq8ygc\",\"AppId\":\"c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c03b9d8e-8300-4a6d-b792-e0ff245d67ee\",\"ConnectionString\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Name\":\"Functions-Python-312-wq8ygc\",\"CreationDate\":\"2025-11-14T01:13:27.6629314+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-wq8ygc_c4683401-bb3c-41e0-8a2a-2a9d2824c97e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-wq8ygc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607a1ca-0000-0300-0000-691682830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b-new\",\"name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"AppId\":\"c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"ConnectionString\":\"InstrumentationKey=a866cc82-d5d8-4255-9a52-47cf08de5202;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"CreationDate\":\"2025-11-14T01:14:39.0556967+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-1hufk4w38b-new_c1f3521a-f04c-4aef-bcc1-e1cca9013861_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"07075f14-0000-0300-0000-691683930000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"AppId\":\"fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"312a33ec-580c-489c-9e80-b4756c09f157\",\"ConnectionString\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"CreationDate\":\"2025-11-14T01:19:10.9931567+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-12q6pcrzoi_fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-12q6pcrzoi-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"080761f6-0000-0300-0000-69168a730000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-pj3v91g7zb\",\"AppId\":\"1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6bd7b803-b629-43e7-84ea-118a7438aa22\",\"ConnectionString\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\"Name\":\"Functions-CustomImage-pj3v91g7zb\",\"CreationDate\":\"2025-11-14T01:48:31.1219098+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-pj3v91g7zb_1f792c5a-5a52-4eb1-9d5c-f64d8f611bad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-pj3v91g7zb-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09076a0d-0000-0300-0000-69168ac50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-nds0y973f2\",\"AppId\":\"283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"340c93e1-8d5d-4ae5-a29c-2e1ff98c031b\",\"ConnectionString\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\"Name\":\"Functions-Python-nds0y973f2\",\"CreationDate\":\"2025-11-14T01:49:51.846514+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-nds0y973f2_283f8cdb-2bf3-4fd5-9d19-55f6363e54ed_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-nds0y973f2-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0907c61f-0000-0300-0000-69168b0b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b\",\"AppId\":\"744366ec-3e02-4658-a275-248f2af753fc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f24655db-a8fa-483b-8beb-f2513e70e623\",\"ConnectionString\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b\",\"CreationDate\":\"2025-11-14T01:51:04.2627991+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-1hufk4w38b_744366ec-3e02-4658-a275-248f2af753fc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09076952-0000-0300-0000-69168bc30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b\",\"AppId\":\"f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d0f0b38e-158d-4cae-9767-5abe5d3b54f8\",\"ConnectionString\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b\",\"CreationDate\":\"2025-11-14T01:52:36.9752274+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-1hufk4w38b_f5dda4ed-baee-401a-9b17-14d8809b3c0b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09070a6c-0000-0300-0000-69168c270000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-ah7tpo8wyj\",\"AppId\":\"3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"938fb9f4-abbc-4b77-8eaf-23fe410af510\",\"ConnectionString\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\"Name\":\"Functions-DotNet-ah7tpo8wyj\",\"CreationDate\":\"2025-11-14T01:55:47.0020078+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-ah7tpo8wyj_3a9c27b8-7e9f-4a7b-8db4-7b31939efa18_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-ah7tpo8wyj-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0907f997-0000-0300-0000-69168cc70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-la9uw4623c\",\"AppId\":\"05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"648968d1-9cd1-4892-b588-9346d9996b83\",\"ConnectionString\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\"Name\":\"Functions-Java-la9uw4623c\",\"CreationDate\":\"2025-11-14T01:58:26.5139808+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-la9uw4623c_05eee5e2-fef4-4c8b-b5fb-f8c7393746f2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-la9uw4623c-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09077fad-0000-0300-0000-69168d0d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-zur6igjh15\",\"AppId\":\"aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"65307571-de3f-45bb-a709-be13ce2fa192\",\"ConnectionString\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\"Name\":\"Functions-Node-zur6igjh15\",\"CreationDate\":\"2025-11-14T01:59:36.5096857+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-zur6igjh15_aa7e26c1-6166-4bf1-826a-9504ce5b2585_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-zur6igjh15-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09071ec2-0000-0300-0000-69168d580000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolateduhnte46q0o\",\"AppId\":\"20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66\",\"ConnectionString\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\"Name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"CreationDate\":\"2025-11-14T02:00:53.143562+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-isolateduhnte46q0o_20f53ecf-4616-4b66-83b2-6b97bbcb3dc7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolateduhnte46q0o-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0907b6de-0000-0300-0000-69168db80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandleri5nz8vgkem\",\"AppId\":\"06745c29-799b-43b3-b8c9-54843eeb4670\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f372138b-4ab7-40fd-b010-fee6cc2bb239\",\"ConnectionString\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\",\"Name\":\"Functions-CustomHandleri5nz8vgkem\",\"CreationDate\":\"2025-11-14T02:02:28.5948796+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandleri5nz8vgkem_06745c29-799b-43b3-b8c9-54843eeb4670_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandleri5nz8vgkem-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0a07270b-0000-0300-0000-69168e590000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"AppId\":\"f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8ab8c13b-cb8c-4057-ace2-9817a5305f7a\",\"ConnectionString\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"Name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"CreationDate\":\"2025-11-14T02:04:47.2094865+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-zeaoxcpv3i_f831a539-3e5d-49d6-bdf4-43ce042be59e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-zeaoxcpv3i-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0a07ed29-0000-0300-0000-69168ec40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"AppId\":\"13f9830f-d3d2-4f00-8604-138ae14192a3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a2d07edd-5a45-4ea6-a03a-d882e0c9c478\",\"ConnectionString\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\"Name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"CreationDate\":\"2025-11-14T02:06:56.1634563+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-q8hc7lwuof_13f9830f-d3d2-4f00-8604-138ae14192a3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-q8hc7lwuof-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0a07bf58-0000-0300-0000-69168f6d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"AppId\":\"692703d7-d09f-4ca6-8db1-f6818eb06864\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"841bc0cc-9927-438f-8358-7fda9e4d46c0\",\"ConnectionString\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"Name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"CreationDate\":\"2025-11-14T02:09:44.1454383+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-0vcunwydg7_692703d7-d09f-4ca6-8db1-f6818eb06864_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-0vcunwydg7-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803fa6c-0000-0200-0000-691684290000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-fqti\",\"AppId\":\"823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0efc83b9-d2e9-496d-b76a-e87df304b77e\",\"ConnectionString\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Name\":\"Functions-Flex-DotNetIsolated-fqti\",\"CreationDate\":\"2025-11-14T01:21:33.3685541+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-fqti_823ef2bc-8959-4971-9e37-d58eb123f38b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033075-0000-0200-0000-691684ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-fqti\",\"AppId\":\"968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aa497dca-41c0-4f25-ad85-ea184f06d59b\",\"ConnectionString\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Name\":\"Functions-Flex-Node-fqti\",\"CreationDate\":\"2025-11-14T01:23:48.8943199+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-fqti_968cb2e5-19cd-47be-8eca-ca4b54c56198_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033d7f-0000-0200-0000-6916852e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-fqti\",\"AppId\":\"c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a897e4a4-c870-4a15-b6df-76a54fac74ca\",\"ConnectionString\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Name\":\"Functions-Flex-Python-fqti\",\"CreationDate\":\"2025-11-14T01:25:56.8152138+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-fqti_c8d3eeb1-cc4b-4546-ae45-fd80c21d286a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78030586-0000-0200-0000-691685b30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-fqti\",\"AppId\":\"506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5f545946-1221-4899-8409-2baa332ca728\",\"ConnectionString\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Name\":\"Functions-Flex-Java-fqti\",\"CreationDate\":\"2025-11-14T01:28:08.7465952+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-fqti_506250a4-0ecc-4d16-8014-fb7524d4703c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78036d8f-0000-0200-0000-6916863e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-fqti\",\"AppId\":\"f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5e7b4cd9-73cb-403a-af0a-64ff32c02c12\",\"ConnectionString\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Name\":\"Functions-Flex-PowerShell-fqti\",\"CreationDate\":\"2025-11-14T01:30:28.5375832+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-fqti_f22e7b45-3b1f-44aa-bf06-d4dd323abd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78035797-0000-0200-0000-691686c10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-fqti\",\"AppId\":\"14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"143ef9ce-b044-489b-a861-98f08c756b79\",\"ConnectionString\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Name\":\"Functions-Flex-Custom-fqti\",\"CreationDate\":\"2025-11-14T01:32:39.371848+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-fqti_14dddbd1-fcb1-48dc-995c-951171fe2050_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803b09f-0000-0200-0000-691687430000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-fqti\",\"AppId\":\"f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bd21d36f-2dc5-44b2-9972-cf28dac8d726\",\"ConnectionString\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Name\":\"Functions-Python-Flex-Scaling-fqti\",\"CreationDate\":\"2025-11-14T01:34:50.0402919+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-fqti_f5571936-d55e-4e8c-8611-251a7ef7afc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78031fa7-0000-0200-0000-691687c70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-fqti\",\"AppId\":\"269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a1b15bef-4df1-46f5-8ef7-d8e8f302abca\",\"ConnectionString\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Name\":\"Functions-Node-SystemIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:37:01.0199716+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-fqti_269d91da-c89b-4f48-ae9b-b80601d7c805_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780384ae-0000-0200-0000-691688480000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"AppId\":\"4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c59dec64-225e-4f2a-9c2b-65004cec61ca\",\"ConnectionString\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:39:10.2457191+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-fqti_4eae3893-4654-43e2-94cf-9c61db1775ec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780310b6-0000-0200-0000-691688ce0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-fqti\",\"AppId\":\"986f7406-ebeb-4294-ab2d-3752dc766278\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7d557552-614c-4aa8-b52b-bfb83f30b33e\",\"ConnectionString\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"Name\":\"Functions-PS-CustomConfig-fqti\",\"CreationDate\":\"2025-11-14T01:41:24.4271273+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-fqti_986f7406-ebeb-4294-ab2d-3752dc766278_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780305c8-0000-0200-0000-69168a110000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-fqti\",\"AppId\":\"0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e49ed1a3-64f6-4bb2-9926-8c63360b2424\",\"ConnectionString\":\"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\"Name\":\"Functions-Remove-FlexPlan-fqti\",\"CreationDate\":\"2025-11-14T01:46:46.7503128+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-fqti_0823e19a-ea36-42d1-8cc8-def2dda9bd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-fqti-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01+68": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+66": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-2g56pvnthz\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"6d61e4a0-2d68-4b31-aac3-2033202c388f\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"a866cc82-d5d8-4255-9a52-47cf08de5202\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5776,39 +5960,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD19449B80\"" ], + "ETag": [ "\"1DC550C1C609895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b15df3f8-4d95-4cdb-bd34-da4cc4e947f3" ], + "x-ms-request-id": [ "48d883c0-fc56-42e4-8cea-d73a88893c8c" ], "X-AspNet-Version": [ "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/11fa6f0f-2a7b-4f74-a760-74f1e8ac462d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4776a82e-8cbc-4015-b199-1fe6a329092c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9637e308-82b2-4bf4-874a-f454bb3ac2bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T120926Z:9637e308-82b2-4bf4-874a-f454bb3ac2bd" ], + "x-ms-correlation-request-id": [ "31f376f9-4a49-43f1-90b2-315dea01e7ca" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T021259Z:31f376f9-4a49-43f1-90b2-315dea01e7ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AF5BCD0D0BA4B24807FA512D508E7A2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:21Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8561835DA166478CB4812BFFEABF8B90 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:56Z" ], + "Date": [ "Fri, 14 Nov 2025 02:12:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8615" ], + "Content-Length": [ "8603" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:09:22.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "833" ], - "x-ms-client-request-id": [ "6629f53a-f3cc-42c9-9f59-43eabd0bfd9f" ], + "x-ms-unique-id": [ "967" ], + "x-ms-client-request-id": [ "1d1380d4-6019-485d-89b4-f979c5a9be10" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5822,38 +6006,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD2E77A66B\"" ], + "ETag": [ "\"1DC550C31C90B60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a515090-e5d1-40d7-a10f-b3606dd8d47b" ], + "x-ms-request-id": [ "cac745f6-5a14-4df7-b4ec-19fbeca6109e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "12e3c7fa-a562-45f2-b729-f3eb71faad4d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120956Z:12e3c7fa-a562-45f2-b729-f3eb71faad4d" ], + "x-ms-correlation-request-id": [ "46a01022-434f-4cae-8e4d-e4c291b4d339" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021329Z:46a01022-434f-4cae-8e4d-e4c291b4d339" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90862FA86BC04C64A4C010896BB05B6A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0600D8F9CCA4101AAB37DC05F444EBC Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:29Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8589" ], + "Content-Length": [ "8577" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:09:22.7266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+70": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "834" ], - "x-ms-client-request-id": [ "79940882-14ee-4b45-8c15-4376159f4fde" ], + "x-ms-unique-id": [ "968" ], + "x-ms-client-request-id": [ "19c04486-dcb3-4b1b-ae11-9bc7ada5b636" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5869,36 +6053,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc1f1342-7d76-4ac5-be17-01e2e5e256d7" ], + "x-ms-request-id": [ "82acb56b-0add-4b7e-86c0-98301453b11c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/238a6bf9-40c5-4475-8dff-86b15405d4c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cfe12dd4-90d8-428e-b532-2b805c840858" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "840c3456-60fe-4ec0-a58b-35320c6cffd6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:840c3456-60fe-4ec0-a58b-35320c6cffd6" ], + "x-ms-correlation-request-id": [ "a92b39fd-f183-45a7-93e4-37b0dd48da31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021330Z:a92b39fd-f183-45a7-93e4-37b0dd48da31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 675BEF0CEFC5446CB651A8011161789D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21A8F48ABFA14A0599780B88255E6ADC Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:29Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"6d61e4a0-2d68-4b31-aac3-2033202c388f\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "835" ], - "x-ms-client-request-id": [ "9763917f-a0bf-4d21-ae8b-c1381920686e" ], + "x-ms-unique-id": [ "969" ], + "x-ms-client-request-id": [ "027ead96-6c70-4175-a916-ae0bd3ec8ebe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5913,38 +6097,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD2E77A66B\"" ], + "ETag": [ "\"1DC550C31C90B60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07534e11-7f19-4959-8efd-5434e920cffe" ], + "x-ms-request-id": [ "c2bc8a30-88bc-4622-a389-60d299ba09c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79b2af50-eb47-4137-948d-b20feb6f21a1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:79b2af50-eb47-4137-948d-b20feb6f21a1" ], + "x-ms-correlation-request-id": [ "0bb64d23-e4d2-4807-9de2-bba3737eaf3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021330Z:0bb64d23-e4d2-4807-9de2-bba3737eaf3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA90F8A4B5BD4B89B31C8F75B205C4B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55F61C1CDBB84C77BA4E32B812127D4F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8589" ], + "Content-Length": [ "8577" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest5-2g56pvnthz\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"func-powershell-newtest5-2g56pvnthz.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-2g56pvnthz.azurewebsites.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-2g56pvnthz.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:09:22.7266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-2g56pvnthz\\\\$Func-PowerShell-NewTest5-2g56pvnthz\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest5-2g56pvnthz.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01+72": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+70": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "836" ], - "x-ms-client-request-id": [ "7ad43204-93a5-4864-92f8-15f603e85962" ], + "x-ms-unique-id": [ "970" ], + "x-ms-client-request-id": [ "50fa54dd-9cce-41d8-bcf7-8a8e8bbcb783" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5960,36 +6144,173 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba2ef03b-9168-41a1-9ad8-b50321fafe78" ], + "x-ms-request-id": [ "58a833a1-ab75-4b0f-a585-7a2830980809" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac7b8ec9-89b7-4735-a735-778093d8b780" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f52bcee-2e0c-4b16-8fcc-06b6fd22c07a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e5eb155c-639c-42d5-b012-ff66faa29972" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:e5eb155c-639c-42d5-b012-ff66faa29972" ], + "x-ms-correlation-request-id": [ "ae612ae1-f337-47d4-a344-5a4e78a80cd1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021330Z:ae612ae1-f337-47d4-a344-5a4e78a80cd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA7F75BF2C044BD480C14D0762DBDE53 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FACEC7B554EB453081D7FF18F8387D72 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-2g56pvnthz\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5b192f19-c9eb-42bf-b1e3-5bcc73e7b2de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b7d11b9-fdf8-422d-b4e0-7ee2a5c0f2f3\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"6d61e4a0-2d68-4b31-aac3-2033202c388f\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01+73": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "837" ], - "x-ms-client-request-id": [ "780ac630-a5de-48f4-a9b9-1db1e889e8ff" ], + "x-ms-unique-id": [ "971" ], + "x-ms-client-request-id": [ "712c005f-e00b-40bc-9978-402fe1d2459a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "a3852ba2-0cf5-4582-93d0-21d2387dcda0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1dfc606f-9da4-4c30-b9c0-6e1d70478c5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "600ba9a2-5108-4d6a-9ba8-74eeaa60a338" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021331Z:600ba9a2-5108-4d6a-9ba8-74eeaa60a338" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5C43327A397D41E79AB70D86720CC4A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4248" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "972" ], + "x-ms-client-request-id": [ "481e7e86-4d91-4f10-b305-f2ec6d1b299c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550C31C90B60\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0c42c91f-c8ee-45e5-9b4f-bfed6a856bee" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "77d77633-f97a-43b5-87dd-75bd31b667f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021331Z:77d77633-f97a-43b5-87dd-75bd31b667f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 27CE85DB3F8D45498A9A9A2DCD276F3B Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:31Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8577" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+73": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "973" ], + "x-ms-client-request-id": [ "7f3c3fb6-0405-4807-be0b-b04d2c9a2cde" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e2674ca0-c2a8-48a3-9fe1-faf8f97d7900" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b207ff3-20d9-46d2-8cf8-d8a39e9b4b25" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1afa5832-9f6d-4835-9d57-ca31528091ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021332Z:1afa5832-9f6d-4835-9d57-ca31528091ab" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 96531D10FB3840E39ED76EEB4697644F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:32Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1311" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+74": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "974" ], + "x-ms-client-request-id": [ "4244137b-2f1f-4fbc-94de-586d762015fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6005,37 +6326,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8326f22-ae05-44a7-98b2-2d980788e7da" ], + "x-ms-request-id": [ "13252450-986e-462c-9ca1-49c83e64f643" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc1e1d26-8f82-49b4-a477-97bb96eb25b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54f4f4e6-4310-4a12-8386-4352ed3553ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "332ba295-540a-4eff-816f-abeaf94ed824" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T120957Z:332ba295-540a-4eff-816f-abeaf94ed824" ], + "x-ms-correlation-request-id": [ "0f13c0a6-2442-47c4-9adb-621cc05915ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021332Z:0f13c0a6-2442-47c4-9adb-621cc05915ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 901F93B1A7C54EEB9CCCD892DED6F09B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:09:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C011D72B2A6C4372AA9EEF5D8EF34B75 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:32Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz/config/web\",\"name\":\"Func-PowerShell-NewTest5-2g56pvnthz\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+75": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "975" ], + "x-ms-client-request-id": [ "77e7f026-7d71-4499-a384-75fbb5d6a643" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "50f43942-af04-4fe0-a050-0ce25ed9bdf3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "de00a874-5b0a-490f-8ecd-8e5f678e2d36" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021333Z:de00a874-5b0a-490f-8ecd-8e5f678e2d36" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 512D3BDAF05541169593E246AA06D04F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:32Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+74": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+76": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-2g56pvnthz?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "838" ], - "x-ms-client-request-id": [ "53210f1b-7823-4913-9020-00f13ae4c28b" ], + "x-ms-unique-id": [ "976" ], + "x-ms-client-request-id": [ "44a249e3-e042-4851-9f7e-507270fe6945" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6050,20 +6416,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD2E77A66B\"" ], + "ETag": [ "\"1DC550C31C90B60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2cb18253-030f-4184-ae28-2320184bf172" ], + "x-ms-request-id": [ "1b7ad12a-371e-4330-9e85-fbecc84fcaf8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d76285e-727c-4409-b52f-e3b535c8fefe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8dfe2b11-cbbb-4407-bd3a-2e2fba532f4e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "86825cca-5ed7-4b2e-be95-4a6c9b5f39fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121008Z:86825cca-5ed7-4b2e-be95-4a6c9b5f39fa" ], + "x-ms-correlation-request-id": [ "45cfaf4e-55cb-4966-82c0-3e2b65adf529" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021342Z:45cfaf4e-55cb-4966-82c0-3e2b65adf529" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6276A5F425FA4DD0AB1C93BDB3864BF9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:09:58Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C13FBC87E5B47DA99BA3F8E10D6E1A2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6073,15 +6439,15 @@ "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+75": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+77": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "839" ], - "x-ms-client-request-id": [ "87abf6e8-e6ec-45c9-bbc8-b103c4a19151" ], + "x-ms-unique-id": [ "977" ], + "x-ms-client-request-id": [ "e28e7d83-b749-48a6-9861-cde6bbe49f61" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6097,36 +6463,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2b8596b-d0be-4771-8e10-9b36d5dfb5bb" ], + "x-ms-request-id": [ "acfc2eb7-14f4-4fe0-bf58-40376be6c6ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "44013f78-9e02-418e-ab94-058b9a706e6e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121008Z:44013f78-9e02-418e-ab94-058b9a706e6e" ], + "x-ms-correlation-request-id": [ "152a563b-57a8-402e-afdc-426dcc2de141" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021342Z:152a563b-57a8-402e-afdc-426dcc2de141" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F78C93DE6E374257867B51AD03BA7C17 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF8EF8BFD62F46139906FF44D23BDC7F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm\",\"name\":\"Func-Windows-Premium-New3-q80swm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60679,\"name\":\"Func-Windows-Premium-New3-q80swm\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60679\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:05:28.96\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01+76": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+78": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-q80swm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "840" ], - "x-ms-client-request-id": [ "f1195e95-43aa-459e-a7dc-f77ab809921a" ], + "x-ms-unique-id": [ "978" ], + "x-ms-client-request-id": [ "5f544003-199e-4367-8aad-f1bec93e5a7b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6142,18 +6508,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03142a5a-e170-4764-9159-722b7aa16f53" ], + "x-ms-request-id": [ "1e14053e-f4d5-4ce0-98fb-82ac0aa3beee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d25b1fb-db94-4ef3-bf7c-0f59f986a5b6" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "7a664012-7e2e-4d2f-abe1-e8e248eef477" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121014Z:7a664012-7e2e-4d2f-abe1-e8e248eef477" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2750911b-af2c-49c5-9852-ce6e88eb0c0f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "8f67c0d6-5450-43ab-886b-2e7860bd285a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021352Z:8f67c0d6-5450-43ab-886b-2e7860bd285a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A180E45D6E7746D88497FECC485E4AF1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9387DD6EC934265930D45EB8FD12E37 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:52 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6163,15 +6529,15 @@ "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+77": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+79": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "841" ], - "x-ms-client-request-id": [ "dfb6e66e-c77f-4006-8d2e-5e09b9e5c52c" ], + "x-ms-unique-id": [ "979" ], + "x-ms-client-request-id": [ "a3fcdd2b-b899-480f-8486-c60fe0add667" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6187,36 +6553,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96048dc8-67f1-4244-af1c-1ccea1d705ce" ], + "x-ms-request-id": [ "a012e844-8f43-4f2c-b413-df94270b7f96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b5f4f0b-e1f5-4def-9ecc-2a4a723f46d4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121014Z:1b5f4f0b-e1f5-4def-9ecc-2a4a723f46d4" ], + "x-ms-correlation-request-id": [ "2e309db5-9f4b-4e89-b0a0-232cb0942cda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021352Z:2e309db5-9f4b-4e89-b0a0-232cb0942cda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 412107CAD5BF4524A8DF5A72ABE7C602 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6956D83D218145A28940B765208C2217 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1818" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60680,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:07:31.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01+78": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+80": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "842" ], - "x-ms-client-request-id": [ "64d5744d-5410-4f66-a66d-2afbaebd351b" ], + "x-ms-unique-id": [ "980" ], + "x-ms-client-request-id": [ "4e382e18-f305-404e-9969-aa625b866584" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6232,18 +6598,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58da223e-692d-4b5b-af98-1b92c5219412" ], + "x-ms-request-id": [ "6e2b183d-dfd7-4b37-8fdb-07633dd6ee25" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/81cd8c9f-0843-402d-997f-f443e599e739" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "5b6b22e8-b4f9-4b45-9b97-f4ca76c88519" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121021Z:5b6b22e8-b4f9-4b45-9b97-f4ca76c88519" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51ff76cf-370b-46d7-9c62-15efbfd3f1a8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "09a660ce-9307-4f30-aad7-6a14c3da36f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021359Z:09a660ce-9307-4f30-aad7-6a14c3da36f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38603AC28F404628832E7633F2D00408 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FD398F2D17C64DE2B6F785A19A9CF532 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:13:59 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 341a8ed20534..61ef1ee0d593 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,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "843" ], - "x-ms-client-request-id": [ "c2750367-5153-4263-8bcb-66043673f885" ], + "x-ms-unique-id": [ "981" ], + "x-ms-client-request-id": [ "5b2b27b2-65a1-4c1f-8410-eb4ace39527b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "740f32fd-c7eb-4a26-9e52-494510886988" ], + "x-ms-request-id": [ "8e92aea4-b0bf-40a7-962b-7c34943e9b6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90f2adab-a852-4a73-89f8-06b169f41d94" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/092d5973-41e3-4cfc-974a-905c267f7106" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cd7bf1e3-678f-41bd-9e07-c201449716db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121022Z:cd7bf1e3-678f-41bd-9e07-c201449716db" ], + "x-ms-correlation-request-id": [ "22b80a61-b3de-4fb5-82a3-189bef9c2398" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021400Z:22b80a61-b3de-4fb5-82a3-189bef9c2398" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 957A2A3B40A6407C80873767823C6BC7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43B5D11BA90349F39AF98CBC66123519 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -45,10 +45,10 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD53AC2FAB\"" ], + "ETag": [ "\"1DC550C589D20D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "324a4470-2fe5-4f9c-ac83-72c2cfa413a8" ], + "x-ms-request-id": [ "2f117994-2144-490f-b96e-aa463a7f3de2" ], "X-AspNet-Version": [ "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/83aad83f-554f-40d2-98cc-b42a7372b340" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/8b81a46a-4241-4174-bd31-46ef8d4c9e66" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d9ef9240-2906-4b64-8da9-6f1fee7935bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T121026Z:d9ef9240-2906-4b64-8da9-6f1fee7935bd" ], + "x-ms-correlation-request-id": [ "8a3f4b77-b649-46c5-81f0-82f1c0ec90e3" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T021404Z:8a3f4b77-b649-46c5-81f0-82f1c0ec90e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3ACDC7EDB39948E5B9AAA8FAC2AF34AF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7EBDB2844F6454585F7D61311DAF89A Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1911" ], + "Content-Length": [ "1906" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "845" ], - "x-ms-client-request-id": [ "47a29553-9eaa-4c05-b8c5-fe3cc113196e" ], + "x-ms-unique-id": [ "983" ], + "x-ms-client-request-id": [ "273b9169-dc04-42d6-a232-639d1ab71451" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -111,37 +111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "590a7875-c1f5-45b0-9ec4-83841c0c8a72" ], + "x-ms-request-id": [ "325d81a4-16f1-4fa5-a9d4-78ea27d4a774" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a27ffa2-a8e7-4355-9005-6b536066a060" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121056Z:4a27ffa2-a8e7-4355-9005-6b536066a060" ], + "x-ms-correlation-request-id": [ "3f0658db-7910-4795-8857-51ebdb970c60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021434Z:3f0658db-7910-4795-8857-51ebdb970c60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6709C9148D34438BBDE967B870BA091A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A91D909C9FB54A10AF0B5740D45433C4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "846" ], - "x-ms-client-request-id": [ "47a29553-9eaa-4c05-b8c5-fe3cc113196e" ], + "x-ms-unique-id": [ "984" ], + "x-ms-client-request-id": [ "273b9169-dc04-42d6-a232-639d1ab71451" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -156,36 +156,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9f77cc8-f70e-4a50-b445-1b0c863f6974" ], + "x-ms-request-id": [ "540323ba-4ad2-4a97-9cca-386c9bdefd21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bfd7ea28-c1c5-4ea3-94fe-0bbd1bf1c5c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121056Z:bfd7ea28-c1c5-4ea3-94fe-0bbd1bf1c5c5" ], + "x-ms-correlation-request-id": [ "bd7147af-df32-4542-8b90-f1cb86142fdc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021434Z:bd7147af-df32-4542-8b90-f1cb86142fdc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DAF33467E7F495385E1FA6D2AC92993 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8DE6BE79FE84FD9AA67D3D362C2CC83 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "847" ], - "x-ms-client-request-id": [ "a2d77739-f14a-4f67-b7e0-842749d17151" ], + "x-ms-unique-id": [ "985" ], + "x-ms-client-request-id": [ "9b988baa-e979-41a1-9440-58f0abc2de1a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -201,36 +201,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6441101-3f6f-4edc-90ca-92a0c4ec0a5b" ], + "x-ms-request-id": [ "0435400e-f556-4408-874c-a2ef1a26c5d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a1f41db0-c70f-400b-a0dd-d18c3f4f1d9c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121057Z:a1f41db0-c70f-400b-a0dd-d18c3f4f1d9c" ], + "x-ms-correlation-request-id": [ "25666f78-ec7f-44fc-9cad-98eef18b56b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021435Z:25666f78-ec7f-44fc-9cad-98eef18b56b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9C45FDD528442CD81DE14DB9EAA71CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 075A670E364449218B9B0D88ABFA1D1A Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "848" ], - "x-ms-client-request-id": [ "b767bcb4-2306-4999-aa45-93097652b803" ], + "x-ms-unique-id": [ "986" ], + "x-ms-client-request-id": [ "38ff63c7-ed61-4868-b5fe-0fceeffb6e93" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -246,31 +246,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c9af71e-b1b9-402d-9570-1b44c82c02a9" ], + "x-ms-request-id": [ "efc4016d-68ec-40d0-88c9-9f667dfee553" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a5b84dc-66f2-4ba8-b542-163989d948be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121057Z:3a5b84dc-66f2-4ba8-b542-163989d948be" ], + "x-ms-correlation-request-id": [ "63b55dab-3b28-4cb0-82de-3057a91705c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021435Z:63b55dab-3b28-4cb0-82de-3057a91705c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6055782F53D144A19C36CBFCCED85058 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93B903A8BCAB4E85BCED0619D6091D6C Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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,38 +286,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "afff0182-2737-4d24-a80e-1bec768ba6c0" ], + "x-ms-request-id": [ "6eca7316-5e96-4c99-931f-9231098469e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c893a55-e3fb-48ab-a6ac-687e787f8201" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb628456-43bd-4e67-bb6b-ad83b44e8946" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f76f9f15-b495-4f24-a8ab-79d8f2b523b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121059Z:f76f9f15-b495-4f24-a8ab-79d8f2b523b1" ], + "x-ms-correlation-request-id": [ "c036b555-5611-4b99-82ed-915111e1f4ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021437Z:c036b555-5611-4b99-82ed-915111e1f4ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2505A69538A4FAD9AE0C3B8AA80E8D7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:10:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:10:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17296668F4F9479495D9B0CD8ADB2EE3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:14:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1905" ], + "Content-Length": [ "1900" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "850" ], - "x-ms-client-request-id": [ "add9e682-1737-4a6f-be01-f08606df8097" ], + "x-ms-unique-id": [ "988" ], + "x-ms-client-request-id": [ "b913404d-49f8-4062-9ef1-caee667b18e7" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -332,37 +332,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9f6e45c-ef8e-4535-9eb8-e764e67bfb10" ], + "x-ms-request-id": [ "35c1b898-09cd-407e-a69e-4ceab126e916" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fe513237-2b65-41a8-b1c7-b8c0113c1ad1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121129Z:fe513237-2b65-41a8-b1c7-b8c0113c1ad1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], + "x-ms-correlation-request-id": [ "a95fd3cf-e7b5-451a-a1fd-7af9d7eec505" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021515Z:a95fd3cf-e7b5-451a-a1fd-7af9d7eec505" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AA7ABCC734749B7A66646B9F8E33C92 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19D0560C6ADC48E993C3E9344D0B4E75 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:07Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "851" ], - "x-ms-client-request-id": [ "add9e682-1737-4a6f-be01-f08606df8097" ], + "x-ms-unique-id": [ "989" ], + "x-ms-client-request-id": [ "b913404d-49f8-4062-9ef1-caee667b18e7" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -377,36 +377,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8f95c53-167a-4990-b837-9e2badcf0114" ], + "x-ms-request-id": [ "5c7c20bf-0c94-447a-a678-953e2cee56d1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a53e3b70-17c2-47e8-a360-a70da05a7bbb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121129Z:a53e3b70-17c2-47e8-a360-a70da05a7bbb" ], + "x-ms-correlation-request-id": [ "25a923de-0b16-4365-93a2-47c95bf581eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021515Z:25a923de-0b16-4365-93a2-47c95bf581eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D9EEDDCC9234C8AAD1922BC4A49A4C2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 182492499D8D42FCA654B45C625756DC Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:15Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "852" ], - "x-ms-client-request-id": [ "8d388a70-8778-4579-9016-f615feedc48a" ], + "x-ms-unique-id": [ "990" ], + "x-ms-client-request-id": [ "5a448e8d-c805-4b9c-83e3-1d99c6eaa8d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -422,36 +422,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56eb84d6-7171-4912-8e0c-ac0b9acad39e" ], + "x-ms-request-id": [ "13624729-54b4-40fe-9517-8cc56a00b638" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "079d3c3c-a04d-4638-bf89-913f6c5128f4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121129Z:079d3c3c-a04d-4638-bf89-913f6c5128f4" ], + "x-ms-correlation-request-id": [ "b606e82d-e85d-43e4-9753-2fa08f4162fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021516Z:b606e82d-e85d-43e4-9753-2fa08f4162fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4CAA143D934486EADED51373A80DCCA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C49F0B9072142358F84B5C9B4775DA3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:15Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "853" ], - "x-ms-client-request-id": [ "3d2050de-6501-4d9c-9445-650c9e314c02" ], + "x-ms-unique-id": [ "991" ], + "x-ms-client-request-id": [ "d904c55c-237e-4d6f-a0bc-677136cd49f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -467,36 +467,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "681c0f5c-1299-4136-93db-db97c62b4760" ], + "x-ms-request-id": [ "a9af433a-bfd0-4239-8a6e-b096dd650e32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e4309d2a-a3af-468c-9bff-6a346b2f42ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121130Z:e4309d2a-a3af-468c-9bff-6a346b2f42ca" ], + "x-ms-correlation-request-id": [ "150a3cb1-6cfe-49b6-b3f5-f2b6f477fcb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021519Z:150a3cb1-6cfe-49b6-b3f5-f2b6f477fcb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3168B5D0284F4592BD5E50B2C7A4711E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:29Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A6AFD21E1504D1BA3E700ADF6102909 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:16Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60681,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60681\",\"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-12T12:10:24.3833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "854" ], - "x-ms-client-request-id": [ "e895add3-8a29-49ab-a0f9-62e4cb21ba5d" ], + "x-ms-unique-id": [ "992" ], + "x-ms-client-request-id": [ "fcb25ec0-ac3c-4b5f-a009-090418e2434e" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -512,18 +512,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69527650-7adf-415a-81ba-6026ac28ed19" ], + "x-ms-request-id": [ "30d37f53-1d53-4a05-8a9e-6ec0a18d879d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5c46665-b7e3-4149-9ebc-c5e9ae4ff3f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc3b80f6-494c-4d6f-bffa-2e221f97526f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "a44b8143-8156-4fe2-82a5-8f16e458197d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121139Z:a44b8143-8156-4fe2-82a5-8f16e458197d" ], + "x-ms-correlation-request-id": [ "747aadfa-2745-4c93-ab98-62f52d846020" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021528Z:747aadfa-2745-4c93-ab98-62f52d846020" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1975FA531FEA41F5949FF832EC93A882 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:30Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 361241ED7BE24A6D8F380159A138E866 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:19Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -540,8 +540,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "855" ], - "x-ms-client-request-id": [ "45f0f089-3526-44d2-83ba-780867825028" ], + "x-ms-unique-id": [ "993" ], + "x-ms-client-request-id": [ "f07a0e7a-bda2-4164-91ad-8c6ba6de66f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -557,18 +557,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6264212-598d-408e-91ab-1153380de643" ], + "x-ms-request-id": [ "b3273e97-68ad-41ad-8dd9-85b6550cfb88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0f8f442-60d4-473b-b9b4-609f3f978f8b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/219d65eb-67dd-4d13-a8fc-aa2991f66fce" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b9563cfd-492c-44fe-b156-35c852f0ffa6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121139Z:b9563cfd-492c-44fe-b156-35c852f0ffa6" ], + "x-ms-correlation-request-id": [ "46bb556f-4e45-4679-b196-5acc6b5c9c2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021528Z:46bb556f-4e45-4679-b196-5acc6b5c9c2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF106A9F9C624A4886B97D20CB008A28 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:39Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B28ECA1415964CA0B77B89155BD5F896 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -579,10 +579,10 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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,40 +597,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CD840392A0\"" ], + "ETag": [ "\"1DC550C8D6A6180\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b498f316-2b78-4f56-9e5b-ed164ee2ffbc" ], + "x-ms-request-id": [ "a720d0fa-a47b-4639-aa85-6f99e420ac98" ], "X-AspNet-Version": [ "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/d5eed4f4-01df-404d-be4c-4b0fd65dbca9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/79d5b4f6-da8c-4456-b932-5246c9b4f422" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3c5d3db0-ded3-42f0-bd52-d892045ac52b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T121147Z:3c5d3db0-ded3-42f0-bd52-d892045ac52b" ], + "x-ms-correlation-request-id": [ "cd374166-47aa-4635-b3bf-d30902ca740d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021533Z:cd374166-47aa-4635-b3bf-d30902ca740d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D872677E5D204A07855B08969998367A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:11:39Z" ], - "Date": [ "Wed, 12 Nov 2025 12:11:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D79BDF4321F4972BE296268F1B0ABF7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:15:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1911" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "857" ], - "x-ms-client-request-id": [ "f7544a4d-dd5d-4795-b8ec-296704c2df59" ], + "x-ms-unique-id": [ "995" ], + "x-ms-client-request-id": [ "1a127277-9279-4f91-89d8-caed729ab0d7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -645,37 +645,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "29ce1de6-d4f7-4db4-bc21-df6e14d93c0f" ], + "x-ms-request-id": [ "46cdcd81-845c-4416-850b-bac21adf12ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f5cfdfe8-7bf3-4cd0-8104-3b66d1751074" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121217Z:f5cfdfe8-7bf3-4cd0-8104-3b66d1751074" ], + "x-ms-correlation-request-id": [ "c6227bb4-8e7c-4979-8613-121f495e0205" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021603Z:c6227bb4-8e7c-4979-8613-121f495e0205" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DBE17FF32F645539F7170016312722C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 346D3B7D0E8448218A99B14E7260E0EA Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "858" ], - "x-ms-client-request-id": [ "f7544a4d-dd5d-4795-b8ec-296704c2df59" ], + "x-ms-unique-id": [ "996" ], + "x-ms-client-request-id": [ "1a127277-9279-4f91-89d8-caed729ab0d7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -690,36 +690,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2aabd8d-8a20-499e-b156-c989ef784a31" ], + "x-ms-request-id": [ "15e95a8a-4455-41a4-b156-d0c0915c046e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "50cf0e29-482c-40c6-a3c8-0a92fe3f2f30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121218Z:50cf0e29-482c-40c6-a3c8-0a92fe3f2f30" ], + "x-ms-correlation-request-id": [ "90078e9a-e1e8-4e14-bc29-5e80b3096193" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021603Z:90078e9a-e1e8-4e14-bc29-5e80b3096193" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 870900165DCB4FE9B2E32A46C543737A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D817B617492A4EBA8A8A6C6DAE287BD2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "859" ], - "x-ms-client-request-id": [ "9d66a21c-f0d4-4e29-a39f-d54adca778c0" ], + "x-ms-unique-id": [ "997" ], + "x-ms-client-request-id": [ "66ac7b58-0ce6-483b-8acb-92b6552a4487" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -735,31 +735,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc72b422-fea5-4329-87a9-e7847628ce23" ], + "x-ms-request-id": [ "63580c6b-973b-489c-b9a1-ceb5690f778e" ], "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": [ "ad22e4c9-5602-467d-bdcd-dcddfa4a21c1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121218Z:ad22e4c9-5602-467d-bdcd-dcddfa4a21c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "385da556-8f6f-4344-a937-c3aea71e6e83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021604Z:385da556-8f6f-4344-a937-c3aea71e6e83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14A7E1A61D7D4825990C2EB8A7848017 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1ECFF269797A412D9132BD0B5F05E3FA Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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,38 +775,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8842b544-05c0-4ce9-8504-b0f0fb6b9c0c" ], + "x-ms-request-id": [ "618508ed-13cd-4383-9ffc-55c92dff61e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d5b3aee-7999-4eb2-a3a3-10c9ff54e9c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f088264-3ad2-4e82-8273-0d9b71038633" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "20166b68-34a1-4a6a-a819-28c329793a1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121220Z:20166b68-34a1-4a6a-a819-28c329793a1d" ], + "x-ms-correlation-request-id": [ "a1bcec2a-562e-46af-8b12-6000810dad11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021605Z:a1bcec2a-562e-46af-8b12-6000810dad11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70166E14E1124D1885ED6FC0472933FC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1123845667F04E2A9B8B5DE38A23A6A8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1905" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "861" ], - "x-ms-client-request-id": [ "18e08726-e8ae-4f32-b79b-0126abc212ee" ], + "x-ms-unique-id": [ "999" ], + "x-ms-client-request-id": [ "05cbd574-1e18-40e3-88b0-a9a1b6f524f4" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -821,37 +821,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "748eb1b6-2dff-41e2-929e-889f96ac4867" ], + "x-ms-request-id": [ "6a7e086e-fcff-4559-85d4-650f5b2588ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "90b28768-9cb9-42c5-90f4-ab690186c015" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121250Z:90b28768-9cb9-42c5-90f4-ab690186c015" ], + "x-ms-correlation-request-id": [ "8ed149fd-fc4e-47c4-96fa-07ae4f07da90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021636Z:8ed149fd-fc4e-47c4-96fa-07ae4f07da90" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 648E796100294A37B11D131FB60CBA9C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 960280F697014E62945144CDCC43CBE4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "862" ], - "x-ms-client-request-id": [ "18e08726-e8ae-4f32-b79b-0126abc212ee" ], + "x-ms-unique-id": [ "1000" ], + "x-ms-client-request-id": [ "05cbd574-1e18-40e3-88b0-a9a1b6f524f4" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -866,36 +866,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e511d8f-282f-463f-83fb-ccaa641a3619" ], + "x-ms-request-id": [ "4ce39916-3ea3-4138-b974-16a5a4f80cee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c603348a-08a5-4819-a6b6-af2cbdb32020" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121250Z:c603348a-08a5-4819-a6b6-af2cbdb32020" ], + "x-ms-correlation-request-id": [ "1e499da8-277a-4fa0-a52d-9cf831a3b67a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021636Z:1e499da8-277a-4fa0-a52d-9cf831a3b67a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1312FCDD77F4B2E9C4DDFE25A645ABD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC37C86424DB425AAA2EAAA36FF1238E Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "863" ], - "x-ms-client-request-id": [ "8a2cf44f-61fa-4f43-9802-c1f035bd19b0" ], + "x-ms-unique-id": [ "1001" ], + "x-ms-client-request-id": [ "1081c04f-d630-4ba9-b59d-dda1a9bb079b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -911,36 +911,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e2f9f6e-05f1-42eb-8389-6af40b8711ef" ], + "x-ms-request-id": [ "f8dd79cd-1c7b-4975-baf1-de878e0c84bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b4bfbce-b5e6-473d-965a-8ee42deee12c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121251Z:1b4bfbce-b5e6-473d-965a-8ee42deee12c" ], + "x-ms-correlation-request-id": [ "bd1297c6-4060-4bfb-a52c-0873b0f1a2a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021636Z:bd1297c6-4060-4bfb-a52c-0873b0f1a2a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E307A3DBE0964A878F7C0BDB8F0643CA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:12:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FB2F2CE29484551B4595323F2F21426 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60682,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60682\",\"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-12T12:11:45.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "864" ], - "x-ms-client-request-id": [ "147e9bae-a0d6-441b-a7ea-aab56ae4f3ec" ], + "x-ms-unique-id": [ "1002" ], + "x-ms-client-request-id": [ "397272fa-edba-430c-9629-39c15c84c21c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -956,18 +956,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e93faaa1-0cc4-41e5-8f90-6c164524bf1f" ], + "x-ms-request-id": [ "273cd7b5-2ab5-4869-a3c9-c201b00f9422" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1b20e50-b74d-4c83-ab5d-7f366874bd63" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "1bc6234b-fc12-4734-ac59-95dff45ddcc6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:1bc6234b-fc12-4734-ac59-95dff45ddcc6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9b77f6e-4087-41b7-8a67-e897536802ca" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "c1a9df78-3a18-4627-bf17-c46be313fadd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:c1a9df78-3a18-4627-bf17-c46be313fadd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68969F9782C44EF8934352197BDF1319 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:12:51Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A09053BC73E143108637C2FB3633821D Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:43 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -977,15 +977,15 @@ "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "865" ], - "x-ms-client-request-id": [ "078935e9-7c12-4138-8072-f24302496724" ], + "x-ms-unique-id": [ "1003" ], + "x-ms-client-request-id": [ "353c7eb7-d8eb-4811-aa8f-46aaf35bd0e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1001,33 +1001,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "820f34b4-0cb7-4345-b709-b5107ff2eef6" ], - "x-ms-correlation-request-id": [ "820f34b4-0cb7-4345-b709-b5107ff2eef6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:820f34b4-0cb7-4345-b709-b5107ff2eef6" ], + "x-ms-request-id": [ "dc2824ef-a790-4375-be38-96b716f15976" ], + "x-ms-correlation-request-id": [ "dc2824ef-a790-4375-be38-96b716f15976" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:dc2824ef-a790-4375-be38-96b716f15976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 445CD43515EF40CF948358F32E5F915D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47B5C7009E44409A9D87EC95FF1934A2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:44 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "866" ], - "x-ms-client-request-id": [ "c2135dff-c81d-4fe9-9fd4-d62ee3396bf1" ], + "x-ms-unique-id": [ "1004" ], + "x-ms-client-request-id": [ "04aa4ad8-8225-4afb-9b4d-ac6471c22dfa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1043,21 +1043,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "a0454f59-8bc3-4597-9135-90cff723007c" ], - "x-ms-correlation-request-id": [ "a0454f59-8bc3-4597-9135-90cff723007c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:a0454f59-8bc3-4597-9135-90cff723007c" ], + "x-ms-request-id": [ "be14f2e4-57e5-4d0b-9ff9-5fa3ee9ebda2" ], + "x-ms-correlation-request-id": [ "be14f2e4-57e5-4d0b-9ff9-5fa3ee9ebda2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:be14f2e4-57e5-4d0b-9ff9-5fa3ee9ebda2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A6DF8C93CCE47738EF647B98C3E3E2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB6BCD1E41A343FDABB39A24C1908C92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:44 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1068,8 +1068,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "867" ], - "x-ms-client-request-id": [ "c40f9506-b67a-440c-8d70-c5d446d1cfda" ], + "x-ms-unique-id": [ "1005" ], + "x-ms-client-request-id": [ "e12842ed-4ecd-4cf2-b10d-6b0aff71f2d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1085,18 +1085,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "54a4c702-b31c-4ae0-9e01-f2022d1f05b7" ], + "x-ms-request-id": [ "d5fb57fb-f626-46c7-977e-2a67566c3ff8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/30499f3a-5e64-45ea-ad21-b68d5f972ef4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c269a951-cf37-41d1-bdf0-b80cb077b245" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121301Z:c269a951-cf37-41d1-bdf0-b80cb077b245" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4121e47e-3880-46aa-93a3-09dd1c3b672f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "af58f7c5-8795-4c31-9de8-d672a9e6307e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:af58f7c5-8795-4c31-9de8-d672a9e6307e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA6B82C128AB49B1B4FDDFD76E383D1A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 609C6DBD824E483691918293A8867B15 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -1107,11 +1107,11 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", - "Content": "{\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "Content": "{\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1125,40 +1125,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CDB271A92B\"" ], + "ETag": [ "\"1DC550CBA705C8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9c0044b-1fab-46ef-82d6-487e57863337" ], + "x-ms-request-id": [ "4c9a1ecc-c0b0-4e61-abc9-17117385b7a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b7e6f1f9-8b34-4bd7-8867-57f4520e57d8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9b2894b0-eac8-414e-ae3d-635f9fd710a0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8a4b3fe1-67ee-4b1c-bd95-00ed3d629ae5" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T121305Z:8a4b3fe1-67ee-4b1c-bd95-00ed3d629ae5" ], + "x-ms-correlation-request-id": [ "65248f1f-c5f6-44f5-98f8-f1088b3217e9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021649Z:65248f1f-c5f6-44f5-98f8-f1088b3217e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3DE20A6C96644962AEA46D024F705233 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04DAEC67867D428B846866A7448A0FDB Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:16:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2013" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "869" ], - "x-ms-client-request-id": [ "bd784c60-b371-4b0b-baea-5f0b83a6e122" ], + "x-ms-unique-id": [ "1007" ], + "x-ms-client-request-id": [ "852402e1-38c9-4f3f-a4b5-44177c0e47e4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], @@ -1173,37 +1173,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a794f33-5717-4b85-a1b9-36ae38fcc34c" ], + "x-ms-request-id": [ "dd42676c-c8bc-4c92-9bd0-bf90ee60e7fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "009b5493-2f23-4f1d-ae1f-3912049dadea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121335Z:009b5493-2f23-4f1d-ae1f-3912049dadea" ], + "x-ms-correlation-request-id": [ "a891918e-1259-4033-9c65-5abfe4ee0cd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021719Z:a891918e-1259-4033-9c65-5abfe4ee0cd0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 990610E96B9F4E1A9EB5C11E186F8116 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:35Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4734305540B84A62B9964626ACE4920F Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:19Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "870" ], - "x-ms-client-request-id": [ "bd784c60-b371-4b0b-baea-5f0b83a6e122" ], + "x-ms-unique-id": [ "1008" ], + "x-ms-client-request-id": [ "852402e1-38c9-4f3f-a4b5-44177c0e47e4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], @@ -1218,36 +1218,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9afe6fdb-5341-414c-ad36-6c86f69c74fc" ], + "x-ms-request-id": [ "c6297783-95ad-4823-946f-6b0bcb2f4995" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d18058cd-dcc2-4954-a3a9-70b061b8f376" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121336Z:d18058cd-dcc2-4954-a3a9-70b061b8f376" ], + "x-ms-correlation-request-id": [ "fa395015-c997-4c36-8e0b-0ab48f84c522" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021720Z:fa395015-c997-4c36-8e0b-0ab48f84c522" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17A060733132402797D3D698580549A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:36Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C05D31B2AFAE40A38D72C1A28CC060DA Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:19Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "871" ], - "x-ms-client-request-id": [ "ec515660-3b6b-4df3-b931-dc390869e37a" ], + "x-ms-unique-id": [ "1009" ], + "x-ms-client-request-id": [ "68717667-ea90-413e-8da2-cf35932f2331" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1263,36 +1263,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df3d01e5-b328-4b0c-8c13-96e5e50e6df3" ], + "x-ms-request-id": [ "e2f58e00-a9c4-415e-ba55-93adffc79477" ], "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": [ "949b50e4-97c3-4740-9980-ac797ef86c4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121337Z:949b50e4-97c3-4740-9980-ac797ef86c4e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d611405e-ab70-4f68-b4e8-88041e7c9903" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021720Z:d611405e-ab70-4f68-b4e8-88041e7c9903" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65554511A42343EDB244D3D237074529 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:37Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4BD74D44C5BA42718197CCC536E92424 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:20Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "872" ], - "x-ms-client-request-id": [ "9d71ceba-a376-40cd-b2ad-cab864db5c90" ], + "x-ms-unique-id": [ "1010" ], + "x-ms-client-request-id": [ "a9e7da60-bef5-452e-9fcb-657e3992d167" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1308,31 +1308,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a60cf298-45e1-4b19-bf91-68316f027c40" ], + "x-ms-request-id": [ "45c549e9-68e3-4813-98ec-b3490f8142d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8f83fcde-9145-4edd-b1d4-0bd0eb58d03b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121338Z:8f83fcde-9145-4edd-b1d4-0bd0eb58d03b" ], + "x-ms-correlation-request-id": [ "e634262f-6705-4091-ae59-ac70168d4ba1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021721Z:e634262f-6705-4091-ae59-ac70168d4ba1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B7CBFB6C97F4A8BAE00B3316B6F2C8A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:38Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F585FFA761CF4382985371BA65085D7F Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:20Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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,38 +1348,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fddcebd7-678f-4af6-ae44-121981119152" ], + "x-ms-request-id": [ "703286d7-15ba-4491-97f4-19914aeeeb51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f43afa2-e821-48d8-8bcf-64596b02fbdf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4068ac5-b238-46d9-9885-ac6d151dc8cf" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "162bbf9e-fe9b-470a-90ea-aba4dcb8fda5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121339Z:162bbf9e-fe9b-470a-90ea-aba4dcb8fda5" ], + "x-ms-correlation-request-id": [ "2d92672a-56ad-4563-aedb-406575f35d5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021722Z:2d92672a-56ad-4563-aedb-406575f35d5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BDDA0F9A84440F5801D0FA6B1070DE3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:13:38Z" ], - "Date": [ "Wed, 12 Nov 2025 12:13:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4F69A97F9DB4892897C51DB8850015A Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:21Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2007" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"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-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "874" ], - "x-ms-client-request-id": [ "556fbc3e-6d2c-40dd-9ff3-211980dd2595" ], + "x-ms-unique-id": [ "1012" ], + "x-ms-client-request-id": [ "809b3c96-ee4e-4507-bfbb-269a3d00cb25" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], @@ -1394,37 +1394,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c45e6ef8-b79c-4222-a8c4-f6f06c929d00" ], + "x-ms-request-id": [ "bfcbc89e-755d-4820-8a32-96a6d7730718" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "58cdb06c-ae14-4744-9fcf-fddb9cd8407a" ], - "x-ms-routing-request-id": [ "EASTUS:20251112T121411Z:58cdb06c-ae14-4744-9fcf-fddb9cd8407a" ], + "x-ms-correlation-request-id": [ "88e28818-56b2-43fc-a0f8-fd0167447227" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021752Z:88e28818-56b2-43fc-a0f8-fd0167447227" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFABCAA67D224E8F8B7FFE8A441E5150 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95926AF4DF4C48548CF3F1684D69D117 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1922" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "875" ], - "x-ms-client-request-id": [ "556fbc3e-6d2c-40dd-9ff3-211980dd2595" ], + "x-ms-unique-id": [ "1013" ], + "x-ms-client-request-id": [ "809b3c96-ee4e-4507-bfbb-269a3d00cb25" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], @@ -1439,36 +1439,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "09e6684f-8306-45ae-811e-00b7dc01ee48" ], + "x-ms-request-id": [ "1a17af60-f14c-4dd4-b385-39b30b469360" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4663add7-5745-4879-9b27-4b22b448ddd3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121411Z:4663add7-5745-4879-9b27-4b22b448ddd3" ], + "x-ms-correlation-request-id": [ "488362e6-c6db-4d75-aba9-78b6a40b7faf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021753Z:488362e6-c6db-4d75-aba9-78b6a40b7faf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75EF339BE138449F9AB95D1631CD2FD6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 477E02B546CF4D22A86D042F79B3AC47 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1922" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "876" ], - "x-ms-client-request-id": [ "596f5509-583a-4aa9-a715-a740bc3a9c41" ], + "x-ms-unique-id": [ "1014" ], + "x-ms-client-request-id": [ "3b5fdb40-1b10-4bce-a2a2-a7287ad85e4e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1484,36 +1484,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "695fba20-9f6e-47e7-8cf4-38445c4e59f7" ], + "x-ms-request-id": [ "43f4d0d3-4c6a-4cc0-9607-7fbe7a3de455" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1487ab83-73bb-481d-9605-5fa341458343" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121414Z:1487ab83-73bb-481d-9605-5fa341458343" ], + "x-ms-correlation-request-id": [ "41651401-0701-47af-bb75-c05300a82a9b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021754Z:41651401-0701-47af-bb75-c05300a82a9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01CE03DCF0084D2DA5BB5BB78AC51EC2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3D7AC7C8AC44389926AA745E4DC2723 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:17:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1922" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp\",\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60683,\"name\":\"Func-Windows-Premium-New-rqj7bp\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60683\",\"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-12T12:13:03.3166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "877" ], - "x-ms-client-request-id": [ "c6d90159-d2d8-4d88-b67d-bc3a5db61dcb" ], + "x-ms-unique-id": [ "1015" ], + "x-ms-client-request-id": [ "629f04e6-3a4a-42de-ad60-075a87ca7bf4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1529,18 +1529,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e69c068c-1181-4540-8c99-04f6146a382e" ], + "x-ms-request-id": [ "9d26193c-672c-425a-9b1e-3b16e8940bd8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f94a88c-d291-4e25-8287-a0d1d02fec1b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/832084a2-39ff-4cbe-a86e-b9261b73cc06" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "c6c55b13-d800-4b85-98da-60ea49e216e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:c6c55b13-d800-4b85-98da-60ea49e216e4" ], + "x-ms-correlation-request-id": [ "878994b3-5293-4cdd-aa2e-d984d9f1eb4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021801Z:878994b3-5293-4cdd-aa2e-d984d9f1eb4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD2A6633E7B242C493F216534652809B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:15Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7932F136EFA438CA71DD03E37CDB9D5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:01 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1550,15 +1550,15 @@ "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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "878" ], - "x-ms-client-request-id": [ "250df61a-60f8-4c17-b803-c90c7aedd32f" ], + "x-ms-unique-id": [ "1016" ], + "x-ms-client-request-id": [ "5cd7fe18-c032-46f6-baa5-9363a9a2c999" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1574,33 +1574,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "cadff26a-ee74-4907-8bcd-0cd3a7a90dd0" ], - "x-ms-correlation-request-id": [ "cadff26a-ee74-4907-8bcd-0cd3a7a90dd0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:cadff26a-ee74-4907-8bcd-0cd3a7a90dd0" ], + "x-ms-request-id": [ "ef1ec9bf-fc83-48ca-9b1e-5f20fae9f8a6" ], + "x-ms-correlation-request-id": [ "ef1ec9bf-fc83-48ca-9b1e-5f20fae9f8a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021801Z:ef1ec9bf-fc83-48ca-9b1e-5f20fae9f8a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FD2324024594F2DB1A6771B2830DE28 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7384854F31A46E0941DC99885AE4D74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:01Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:01 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-lf9t8w/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-rqj7bp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "879" ], - "x-ms-client-request-id": [ "c97c51f9-9949-4a5a-ab6f-537d14476b61" ], + "x-ms-unique-id": [ "1017" ], + "x-ms-client-request-id": [ "d85fc140-9282-47f2-b973-08b05a5f2503" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1616,21 +1616,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "a34554b2-1f02-4cbb-b2f1-4d1ab4b070c8" ], - "x-ms-correlation-request-id": [ "a34554b2-1f02-4cbb-b2f1-4d1ab4b070c8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:a34554b2-1f02-4cbb-b2f1-4d1ab4b070c8" ], + "x-ms-request-id": [ "ec803cac-1c12-4008-9962-5c5454af1213" ], + "x-ms-correlation-request-id": [ "ec803cac-1c12-4008-9962-5c5454af1213" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021801Z:ec803cac-1c12-4008-9962-5c5454af1213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A5DD87E0C7645B7934E9F4DC106BFDB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1634C029E87404F890C5C368BAE053F Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:01Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:01 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-rqj7bp\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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 37585471064a..8dedb75165d1 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "880" ], - "x-ms-client-request-id": [ "6e041f62-15ee-4d8d-9f1d-a2d0ce9f97c5" ], + "x-ms-unique-id": [ "1018" ], + "x-ms-client-request-id": [ "23712930-d9d3-43d8-9781-9ff9fbeba547" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9eb34c17-7870-42e8-bd5b-7099ce7e129e" ], + "x-ms-request-id": [ "694db262-63ea-4651-8443-f0799b5b79c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a050123-8fd2-4079-b393-eff99eff21c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7a235fe-9ffd-41af-a017-d37fa5c7b1a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77751e16-8322-4fbe-b168-28f98b8bd945" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121422Z:77751e16-8322-4fbe-b168-28f98b8bd945" ], + "x-ms-correlation-request-id": [ "2e93e8ac-2541-43ef-b8d2-57133214a027" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021802Z:2e93e8ac-2541-43ef-b8d2-57133214a027" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E0460BFA61F3429BA248417CF4B873E5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB2FD81F5A894BC99ACCCC9F4B869492 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "36851" ], @@ -45,10 +45,10 @@ "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CDE2E4012B\"" ], + "ETag": [ "\"1DC550CE90D3E40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e79314b-5bc4-4dd4-9a12-a2b6b5a20446" ], + "x-ms-request-id": [ "82c0c501-3d27-447e-baf1-614de5b0a72b" ], "X-AspNet-Version": [ "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/da3770b9-6098-4ade-9fcd-297302c31851" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9b764590-ff68-4ac9-8cc9-4f2cee7e6596" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "47d86281-6033-4efb-bdc2-55fa173a2e09" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T121426Z:47d86281-6033-4efb-bdc2-55fa173a2e09" ], + "x-ms-correlation-request-id": [ "94ae858a-ce47-4371-8f7b-0e7a02b16ee6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021807Z:94ae858a-ce47-4371-8f7b-0e7a02b16ee6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68F9E91B0CBB4D7DBCBF96D7DE67AC05 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:22Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 703BF3569E034575A43B1637C381BD16 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1914" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"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-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"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-14T02:18:04.3766667\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "882" ], - "x-ms-client-request-id": [ "b528596b-0320-484b-a1f6-4d8e9974ac7d" ], + "x-ms-unique-id": [ "1020" ], + "x-ms-client-request-id": [ "a5cd4a46-b0bd-4d1a-8dda-509c4a83c75f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -111,37 +111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bbab619-85ff-456d-98b0-b3180d6faac6" ], + "x-ms-request-id": [ "5dcec585-437a-4b4a-8c38-d688106fda63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "99d713da-1051-4561-8286-a5abb805444a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121457Z:99d713da-1051-4561-8286-a5abb805444a" ], + "x-ms-correlation-request-id": [ "eb330512-5e68-45f6-8b1e-f7af283da076" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021839Z:eb330512-5e68-45f6-8b1e-f7af283da076" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40CDC7C7E87C4C339CD505CD8054A25B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2D865689E7F4743AC86BDBFE3EDF8B4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "883" ], - "x-ms-client-request-id": [ "b528596b-0320-484b-a1f6-4d8e9974ac7d" ], + "x-ms-unique-id": [ "1021" ], + "x-ms-client-request-id": [ "a5cd4a46-b0bd-4d1a-8dda-509c4a83c75f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -156,24 +156,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1503e01d-89b1-479e-a59a-b398a20329ec" ], + "x-ms-request-id": [ "4404c6ac-9e25-464a-b3be-ff3357206b34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "28b35a5e-3657-4e04-a855-279ed76c1c49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121457Z:28b35a5e-3657-4e04-a855-279ed76c1c49" ], + "x-ms-correlation-request-id": [ "c142ff24-6264-46be-84e9-9b3ff09c18b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021839Z:c142ff24-6264-46be-84e9-9b3ff09c18b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9502011906D04583B87756153E7D899D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1AD64F933794B1E9ACD6A4E7F63BBC3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -181,7 +181,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\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": [ "552dec8f-065e-43e4-8449-08858786dc03" ], + "x-ms-request-id": [ "4811ce13-8940-436b-910f-8f56b9529e29" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dac4e4d5-b2ca-443e-80c8-11c5d3cc879a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f0b1ba8-31da-480d-a88f-4b64f71d0e8f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a753a026-166d-4c3c-9b89-719f36d2e688" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121457Z:a753a026-166d-4c3c-9b89-719f36d2e688" ], + "x-ms-correlation-request-id": [ "481d7567-dbbb-4510-98ae-e6d6e8689a1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021839Z:481d7567-dbbb-4510-98ae-e6d6e8689a1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 640292D08284498796E4A026C502B670 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CA4D7125E5749D5A17BEB9BFB939472 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -225,8 +225,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "885" ], - "x-ms-client-request-id": [ "cf9dc6c6-c7e9-4c4d-9df3-d9c9b6d61c6a" ], + "x-ms-unique-id": [ "1023" ], + "x-ms-client-request-id": [ "941afa7e-d272-4e91-b1d0-6619c88a0c17" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -241,36 +241,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e5164974-6e78-49c7-ba15-bd250d154233", "f7bbf79a-5f34-41f4-af7f-15e040a33413" ], + "x-ms-original-request-ids": [ "6b701a1b-a4fa-4961-a781-df57da5308d4", "445e69e6-bd28-475a-ab08-a7095655cced" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3974c99e-f2d3-401e-8e8c-6139221ab590" ], - "x-ms-correlation-request-id": [ "3974c99e-f2d3-401e-8e8c-6139221ab590" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T121458Z:3974c99e-f2d3-401e-8e8c-6139221ab590" ], + "x-ms-request-id": [ "d5286bf0-d813-4ab7-a7d2-715dd9e20406" ], + "x-ms-correlation-request-id": [ "d5286bf0-d813-4ab7-a7d2-715dd9e20406" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021840Z:d5286bf0-d813-4ab7-a7d2-715dd9e20406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FB687361AF543C88ED56CCDE3879387 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6579B1BDAA2142E8A9CD3C7C336A7A1D Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "18911" ], + "Content-Length": [ "17140" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501575,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":null,\"isXenon\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501572,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501608,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501657,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501649,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501669,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501559,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501689,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6501557,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295367,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":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\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1295372,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506100,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506119,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/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-le3f9v/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-cjes6i/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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "886" ], - "x-ms-client-request-id": [ "a5c757b9-513a-4a61-9ab3-44545abd7ae2" ], + "x-ms-unique-id": [ "1024" ], + "x-ms-client-request-id": [ "f5c255f0-b44f-49ce-96dc-3f878950a2af" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -286,36 +286,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7870127-6497-4ce4-a10d-8478ca1d172d" ], + "x-ms-request-id": [ "e7677ce8-d9cb-4af9-8944-c3f590903b73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "782ed028-a580-4743-b007-dc726296f2f4" ], - "x-ms-routing-request-id": [ "WESTUS:20251112T121458Z:782ed028-a580-4743-b007-dc726296f2f4" ], + "x-ms-correlation-request-id": [ "430b1ab1-93e9-4281-b5c1-05ec44a19d8f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021840Z:430b1ab1-93e9-4281-b5c1-05ec44a19d8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F0207B43551433EB8FB794C1B8B5C82 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:58Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD81E9B45B6448BBAD4EF32ADA683FF6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131951,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131951\",\"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-12T11:13:02.5566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/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-si2zeg/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-o1blrw/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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "887" ], - "x-ms-client-request-id": [ "02d0d1ed-74fd-48a3-a45f-284f4f8b0387" ], + "x-ms-unique-id": [ "1025" ], + "x-ms-client-request-id": [ "276147a1-0416-42b0-a781-f1f64eab4b4d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -331,36 +331,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c774e126-21cd-4e62-b644-857e34e92882" ], + "x-ms-request-id": [ "d3a1b555-4bc5-403e-aa60-e9fd06eff4ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f67ea0f5-a2d3-4276-a4cb-9889824ba2b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:f67ea0f5-a2d3-4276-a4cb-9889824ba2b7" ], + "x-ms-correlation-request-id": [ "349da470-685c-4c0a-b5c5-7a42ffc8a551" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021840Z:349da470-685c-4c0a-b5c5-7a42ffc8a551" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D0DD52F042A45DA9C9996151071750D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:58Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7030E2F777C40B9BDD1321913693504 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66362,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:11:23.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "888" ], - "x-ms-client-request-id": [ "631be7be-e043-4627-9859-0f000a83499f" ], + "x-ms-unique-id": [ "1026" ], + "x-ms-client-request-id": [ "f0cebc08-9022-432c-86c8-1ffe903b8e2b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -376,36 +376,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf4472b1-6d4b-4ce7-902d-34fd3cab7568" ], + "x-ms-request-id": [ "4e79268f-a3c0-4071-bda7-571b95d84ec1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db53422c-176a-4209-bac1-72fea63ce4dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:db53422c-176a-4209-bac1-72fea63ce4dd" ], + "x-ms-correlation-request-id": [ "741f4db8-e924-40d6-9f44-c33ad3c4b6e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021840Z:741f4db8-e924-40d6-9f44-c33ad3c4b6e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81FCEF59F50D4CD4920786A112FC8801 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C14EB5298FB34542B818630117FD0753 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Default1iy\",\"name\":\"Default1iy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60676,\"name\":\"Default1iy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60676\",\"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-12T11:29:43.9033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01+10": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?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-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "889" ], - "x-ms-client-request-id": [ "8d2be985-568f-4f7b-bca3-660d9efb54c4" ], + "x-ms-unique-id": [ "1027" ], + "x-ms-client-request-id": [ "89600ca7-939d-4506-b135-aa3653a80d12" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -421,36 +421,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d613bc29-5232-45fa-906a-084404bdbef0" ], + "x-ms-request-id": [ "5964146b-412d-4fda-8502-8ee9c61b214e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cef769dd-6ced-4a87-96f6-ce8aaec81785" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:cef769dd-6ced-4a87-96f6-ce8aaec81785" ], + "x-ms-correlation-request-id": [ "d14ce760-f532-4737-a42b-deaa36584d4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:d14ce760-f532-4737-a42b-deaa36584d4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE6F92A9F6DD454EB9EC8BD97A65354C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5F64F414BE843168AE478DB1A9FC384 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1758" ], + "Content-Length": [ "1752" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/serverfarms/Default1jz\",\"name\":\"Default1jz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66368,\"name\":\"Default1jz\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-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-o1blrw\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-321_66368\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:58:17.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83429,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_83429\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:07:09.5333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?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-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "890" ], - "x-ms-client-request-id": [ "3e723f09-6663-42a6-bc69-d3e927901d90" ], + "x-ms-unique-id": [ "1028" ], + "x-ms-client-request-id": [ "159f6d0c-4784-44e6-b977-97046bb7c9ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -466,36 +466,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b1e31a2-2ae8-4eca-800b-98c7d5afa263" ], + "x-ms-request-id": [ "a2fc4463-ff41-429c-80dc-8715df3a9af0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ae3d1eaa-9c5f-427b-89d3-0e8b0c834b34" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:ae3d1eaa-9c5f-427b-89d3-0e8b0c834b34" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3fdd6b9d-d063-4a1a-88c2-ccc1193b9b18" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:3fdd6b9d-d063-4a1a-88c2-ccc1193b9b18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2083657BB45F4EDDB21CE2F4420F12C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0367257A06864E26AAA72F508F9CBD24 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1735" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Default1oy\",\"name\":\"Default1oy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":77443,\"name\":\"Default1oy\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_77443\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:55:43.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "891" ], - "x-ms-client-request-id": [ "b0743edc-002e-4218-af83-f94504cccb74" ], + "x-ms-unique-id": [ "1029" ], + "x-ms-client-request-id": [ "dca80de8-48c1-475e-8bc9-a5db8b4d0c57" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -511,36 +511,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66397510-c121-442c-a652-48e6c2359000" ], + "x-ms-request-id": [ "1f61aabc-0b92-4e95-a0ca-7bfea1cb22a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "40bba12d-35de-40e3-b184-52fccc8f0111" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:40bba12d-35de-40e3-b184-52fccc8f0111" ], + "x-ms-correlation-request-id": [ "c6424634-d577-4fa3-9120-a5c40a27280e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:c6424634-d577-4fa3-9120-a5c40a27280e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 553ACC65BEDC42D290804DC48B316032 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5D23C96DF53E4CDE8DD80938A8468B10 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":19931,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-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-cjes6i\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-335_19931\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:03:07.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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\":5,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01+13": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "892" ], - "x-ms-client-request-id": [ "2cc7bc76-994f-4c40-93f3-d4bba33424bb" ], + "x-ms-unique-id": [ "1030" ], + "x-ms-client-request-id": [ "7f68bcbf-3f07-4d14-b205-b8c37b527fbe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -556,36 +556,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7eb35c9a-2019-43ca-ad42-9cc12957aa1d" ], + "x-ms-request-id": [ "171033fe-7ace-4459-8e83-2d0c79f59067" ], "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": [ "cc78f36a-2753-4eac-a316-97cb5a060305" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121459Z:cc78f36a-2753-4eac-a316-97cb5a060305" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "51286faf-e790-4d89-9a88-5a7306992537" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:51286faf-e790-4d89-9a88-5a7306992537" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9358150CA9348A9B88A27211658FB22 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3D4EF7F8EBB4589A98E5EACCDCB3871 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"name\":\"Functions-Linux-Premium-078h6t\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39896,\"name\":\"Functions-Linux-Premium-078h6t\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-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-gpxn1b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39896\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:08:21.27\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "893" ], - "x-ms-client-request-id": [ "d1645b62-6518-4b89-906d-e229c096d0f9" ], + "x-ms-unique-id": [ "1031" ], + "x-ms-client-request-id": [ "28373ad0-441f-425e-8ada-2ece4876bc2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -601,36 +601,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f5c034b-8e93-4500-9732-a92628c9fc40" ], + "x-ms-request-id": [ "0eba70b9-facb-4954-9575-79d9c295b2a3" ], "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": [ "68bb2f3c-045e-4dd9-933e-42db97925b67" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121500Z:68bb2f3c-045e-4dd9-933e-42db97925b67" ], + "x-ms-correlation-request-id": [ "019d911b-6e5e-42a3-8a3b-7cf760159dbe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:019d911b-6e5e-42a3-8a3b-7cf760159dbe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 640A3F8C96D14750B75B347054D643B6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:14:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 05F9CC47BA274CDA93FFEB637F8DB63A Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01+15": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "894" ], - "x-ms-client-request-id": [ "5f9dab5f-7c6b-43a4-8ffe-bf4d54048e9e" ], + "x-ms-unique-id": [ "1032" ], + "x-ms-client-request-id": [ "a3d2ea05-f2f7-43ba-a0f8-562ad77076a7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -646,36 +646,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdd7a5e2-9b18-4eee-8c24-2b497121d7c0" ], + "x-ms-request-id": [ "60a8f57a-3117-49c8-8694-a227072652fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3cdd933e-61c4-4fe6-8414-112998b45237" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121500Z:3cdd933e-61c4-4fe6-8414-112998b45237" ], + "x-ms-correlation-request-id": [ "c315dda1-49be-4854-8e73-51ae13f22d27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021842Z:c315dda1-49be-4854-8e73-51ae13f22d27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8724FEE1B7E146CFBA1F96CA51B5174F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:14:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D74DB293059C436EACD6BF0FFB289C49 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"name\":\"Functions-Windows-Premium-pe9wcd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60673,\"name\":\"Functions-Windows-Premium-pe9wcd\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60673\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T11:07:45.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01+16": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "895" ], - "x-ms-client-request-id": [ "fe8ed847-6975-44df-9819-0c24612020f6" ], + "x-ms-unique-id": [ "1033" ], + "x-ms-client-request-id": [ "6ac4f2f5-a732-4da0-95f5-2f0cbb313341" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -691,81 +691,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5a7dd6d-fea9-4b6b-a759-9ed5297a7037" ], - "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": [ "75b742be-ebe8-4bc1-a349-73b281a25c50" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121501Z:75b742be-ebe8-4bc1-a349-73b281a25c50" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3957CA896B8A41418D62A87936775099 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:15:00 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1823" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112925-0000\",\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52328,\"name\":\"ASP-FunctionsFlexRG112925-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-0f8c4409558aac1b8bc0975843672aea7ee9d08c9490c975f64d5d7808973f4d-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-112925\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52328\",\"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-12T11:19:57.4766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01+17": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "896" ], - "x-ms-client-request-id": [ "4312ea66-933b-44f4-b955-5cd37c5c0606" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8983b6dd-3a43-4edd-ae6b-1978d35a8009" ], + "x-ms-request-id": [ "f9a10daa-5500-4610-81db-14b140247f87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f0d61a01-72c3-4c5e-9a51-036fe735686e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T121501Z:f0d61a01-72c3-4c5e-9a51-036fe735686e" ], + "x-ms-correlation-request-id": [ "5f82a63e-01ba-4cca-94a2-f47126ddd8c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021842Z:5f82a63e-01ba-4cca-94a2-f47126ddd8c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB2CDA2516FB4125B276EAAF08F8374A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:15:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F57DB4AFEEC4B5A827F26A631078C86 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1701" ], + "Content-Length": [ "1691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Web/serverfarms/Default1lu\",\"name\":\"Default1lu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":986,\"name\":\"Default1lu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-112925-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-112925\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_986\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-12T11:31:36.6766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+18": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+17": { "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": [ "897" ], - "x-ms-client-request-id": [ "499ba292-3aef-4a7d-a03b-71369d660b05" ], + "x-ms-unique-id": [ "1034" ], + "x-ms-client-request-id": [ "a860289c-38e4-4efe-88a9-5509e99272d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -780,36 +735,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7ada8bba-e725-4434-96ed-3fa408e0c340", "41924b47-91d8-4b5e-9433-2c4b5b3534c7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "7d381300-b7a6-47e6-8a45-aa85443c865c" ], - "x-ms-correlation-request-id": [ "7d381300-b7a6-47e6-8a45-aa85443c865c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251112T121502Z:7d381300-b7a6-47e6-8a45-aa85443c865c" ], + "x-ms-original-request-ids": [ "e40e2a0a-ed6b-435e-aafb-4bf5ba08bd98", "208ff47b-7a30-42b0-843d-b680ecbdf637", "385ee0c2-c016-4f82-89b2-4e5e2e1466f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c76afa8c-d001-46e1-8c94-6790a1db31b3" ], + "x-ms-correlation-request-id": [ "c76afa8c-d001-46e1-8c94-6790a1db31b3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T021843Z:c76afa8c-d001-46e1-8c94-6790a1db31b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CC23F011FD041E0848250134BF8A8A8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:15:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5435ECCEAB640B0A46A6660F58B5181 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11077" ], + "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappcustomsa112925\",\"name\":\"flexappcustomsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:16:27.5084103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:16:27.4302364Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa112925.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa112925.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa112925.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa112925.table.core.windows.net/\",\"file\":\"https://flexappcustomsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa1\",\"name\":\"flexappdotnetisolatedsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:09.9601793Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:09.8819958Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa1.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa1.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa1.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa1.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa1.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappjavasa112925\",\"name\":\"flexappjavasa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:06.8200658Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:06.7419424Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa112925.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa112925.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa112925.queue.core.windows.net/\",\"table\":\"https://flexappjavasa112925.table.core.windows.net/\",\"file\":\"https://flexappjavasa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexappnodesa112925\",\"name\":\"flexappnodesa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:14:37.0073446Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:14:36.8978806Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa112925.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa112925.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa112925.queue.core.windows.net/\",\"table\":\"https://flexappnodesa112925.table.core.windows.net/\",\"file\":\"https://flexappnodesa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa11292\",\"name\":\"flexapppowershellsa11292\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:33.9922160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:33.8984588Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa11292.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa11292.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa11292.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa11292.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa11292.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa11292.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112925/providers/Microsoft.Storage/storageAccounts/flexapppythonsa112925\",\"name\":\"flexapppythonsa112925\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:15:58.6018809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:15:58.4925030Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa112925.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa112925.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa112925.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa112925.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa112925.table.core.windows.net/\",\"file\":\"https://flexapppythonsa112925.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragevo6\",\"name\":\"functionslinuxstoragevo6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:22.3465677Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:22.3465677Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:22.0965595Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragevo6.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragevo6.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragevo6.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragevo6.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragevo6.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragevo6.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx\",\"name\":\"functionswinstorageelx\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-12T11:07:00.2997038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-12T11:07:00.2997038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-12T11:07:00.0653493Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageelx.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageelx.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageelx.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageelx.queue.core.windows.net/\",\"table\":\"https://functionswinstorageelx.table.core.windows.net/\",\"file\":\"https://functionswinstorageelx.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-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01+19": { + "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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Storage/storageAccounts/functionswinstorageelx/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "898" ], - "x-ms-client-request-id": [ "d3e3c975-bc46-4df6-aa07-70c3284cf978" ], + "x-ms-unique-id": [ "1035" ], + "x-ms-client-request-id": [ "c4e939bf-9932-4a27-865f-77348000e2ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -824,30 +779,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6b188e95-35b3-4e2d-ad3f-15b37a80b3fd" ], + "x-ms-request-id": [ "efcaf0f0-f937-4db1-9940-4daf41408b73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/221c69d1-afd5-4550-a115-eb0b4bd7ae91" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/24a5c0ff-1285-42dc-a104-48c792907507" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6281951e-981a-49a3-a62f-48bd366ea2f7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251112T121502Z:6281951e-981a-49a3-a62f-48bd366ea2f7" ], + "x-ms-correlation-request-id": [ "ee4ff12d-0289-4c14-91c6-0e3288113f17" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T021844Z:ee4ff12d-0289-4c14-91c6-0e3288113f17" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E043FFB6EF5341A09F758BE05E3AABC7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:15:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BE6718D15A743D782E20761F6DAA79C Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"t6SxA5/uljhec7xnVAWAxM4/u7uj2dCQjVMpBZr6Oz1nRYYtTybuByqFeYYCvk6dDJpc/m90/LFK+AStZIyK4A==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"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-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2015-05-01+20": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2015-05-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-bzn08hgcxk?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": { @@ -867,30 +822,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bcd23e54-f71c-4520-ac86-5e165823aef1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "4273e728-eb68-4200-b35d-fa670096d5c6" ], - "x-ms-correlation-request-id": [ "4273e728-eb68-4200-b35d-fa670096d5c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121511Z:4273e728-eb68-4200-b35d-fa670096d5c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49011828-a2a0-4993-975a-3e27a64ae90e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "d5c6753f-dbbe-4cd9-97d2-786fb6e93d62" ], + "x-ms-correlation-request-id": [ "d5c6753f-dbbe-4cd9-97d2-786fb6e93d62" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021849Z:d5c6753f-dbbe-4cd9-97d2-786fb6e93d62" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10B79657B2954698918EF471981C3877 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:15:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E69D26EC6AAC4614BC93FEE2C520D907 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:18:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1683" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7306f1ee-0000-0300-0000-69147a4f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"name\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"AppId\": \"cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"144e186c-829e-48a9-a5e1-fde9a165497f\",\r\n \"ConnectionString\": \"InstrumentationKey=144e186c-829e-48a9-a5e1-fde9a165497f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\",\r\n \"Name\": \"Func-PowerShell-NewTest4-jm5wr8ezis\",\r\n \"CreationDate\": \"2025-11-12T12:15:03.029067+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-jm5wr8ezis_cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-jm5wr8ezis-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\": \"\\\"0a072ce8-0000-0300-0000-691691890000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"name\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"AppId\": \"77c9be64-4f1d-4ddd-845e-9b9350ff6de0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1bfe1304-4f51-46d2-afe7-cd03cfa9e5de\",\r\n \"ConnectionString\": \"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\",\r\n \"Name\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"CreationDate\": \"2025-11-14T02:18:44.6317333+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-bzn08hgcxk_77c9be64-4f1d-4ddd-845e-9b9350ff6de0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-bzn08hgcxk-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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;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=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-jm5wr8ezis\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=144e186c-829e-48a9-a5e1-fde9a165497f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\"\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-bzn08hgcxk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -904,39 +859,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CDFFF84255\"" ], + "ETag": [ "\"1DC550D05357EC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4d88b1c-d958-4550-ab4b-6bc2393d9e29" ], + "x-ms-request-id": [ "fdd817bc-5db7-45ca-800f-63df1e7f1ce2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/037ded68-5701-4b4e-9546-10b3d2ece36f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8193767d-6374-4a9a-9c3e-87c931943ad0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "ff65a180-23d7-4201-aa4a-dbeba1a7602a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121554Z:ff65a180-23d7-4201-aa4a-dbeba1a7602a" ], + "x-ms-correlation-request-id": [ "576df4b5-d968-4d39-8fb1-de3cb00d4b08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T021932Z:576df4b5-d968-4d39-8fb1-de3cb00d4b08" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CC7F1FC554943BF8C9E10AA705EC430 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:15:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:15:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4BA9279F96949B888FEFF9CEC62405D Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:19:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8507" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"func-powershell-newtest4-jm5wr8ezis.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-jm5wr8ezis.azurewebsites.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-jm5wr8ezis.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:15:13.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\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-jm5wr8ezis\\\\$Func-PowerShell-NewTest4-jm5wr8ezis\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:18:51.5833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "901" ], - "x-ms-client-request-id": [ "eeeeac52-2a12-480c-a311-761424df1686" ], + "x-ms-unique-id": [ "1038" ], + "x-ms-client-request-id": [ "5a1d1ae6-1819-4c41-a6ee-d7b1673aac4a" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -950,38 +905,175 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE17CDBD80\"" ], + "ETag": [ "\"1DC550D1CBA1ACB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8e703d80-ca34-4bd9-bd30-486bdaf89a57" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e3946f98-e3c1-4ea1-bd54-d2aaf16ea9f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022002Z:e3946f98-e3c1-4ea1-bd54-d2aaf16ea9f2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2025065A7B82430990E43BC55D5B465E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8481" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:19:31.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1039" ], + "x-ms-client-request-id": [ "ec2a195d-7b29-4bfa-b00d-b07b56010492" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC550D1CBA1ACB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "baa3e4f4-fa40-4230-a1c1-347103f77482" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b744b570-4a4b-4fd5-81f9-1dbe9f525a6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022002Z:b744b570-4a4b-4fd5-81f9-1dbe9f525a6e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B60445FDAB91480A86228DF7E8460510 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8481" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:19:31.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1040" ], + "x-ms-client-request-id": [ "32541759-1cdd-4feb-93fb-0cf82e1c16c4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9fe289b9-6cdc-4548-9afb-2f2353803e7c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/170ea4af-ce7c-465d-a9e4-ee5060d0a191" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d75f19b3-38c8-4839-ab2a-124f01361786" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022003Z:d75f19b3-38c8-4839-ab2a-124f01361786" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 87A63C17AE5048829A5DBF7A20F83D99 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:02Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-bzn08hgcxk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\"}}", + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1041" ], + "x-ms-client-request-id": [ "97b6db9d-bae3-47b4-965a-85c611e0420b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "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": [ "c96465c5-8e55-4e9e-88d5-d93bd347142a" ], + "x-ms-request-id": [ "fb3a241a-0696-4a79-adec-1078a20949c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50e38e1c-8bb2-413d-89b3-0a16cd079b00" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a34bd13-fced-4341-b1be-1201c2f26b87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121624Z:3a34bd13-fced-4341-b1be-1201c2f26b87" ], + "x-ms-correlation-request-id": [ "f6ced72a-5533-4fa0-bb0c-1674ef65163f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022003Z:f6ced72a-5533-4fa0-bb0c-1674ef65163f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFF5D0EC33C54C0490BA99D860D3FEE6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:24Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F649AC7148BF454F80E4EE332E9ABC3C Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8482" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"func-powershell-newtest4-jm5wr8ezis.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-jm5wr8ezis.azurewebsites.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-jm5wr8ezis.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:15:54.2\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-jm5wr8ezis\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-jm5wr8ezis\\\\$Func-PowerShell-NewTest4-jm5wr8ezis\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "902" ], - "x-ms-client-request-id": [ "6fc1892c-fb60-41ab-b042-346e47940dd6" ], + "x-ms-unique-id": [ "1042" ], + "x-ms-client-request-id": [ "a3af7a54-11e5-47f9-aa75-ac527f1daada" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -996,38 +1088,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE17CDBD80\"" ], + "ETag": [ "\"1DC550D1CBA1ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbb736e5-1099-4252-a296-3ac0c360fcb4" ], + "x-ms-request-id": [ "ac7c1514-54f2-4515-a7cc-72fd8b85bab6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "332bbd70-cc89-484e-bdca-115602d96f8e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121625Z:332bbd70-cc89-484e-bdca-115602d96f8e" ], + "x-ms-correlation-request-id": [ "6f72b1ba-dd71-4cc0-adc4-2f57f4286e09" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022003Z:6f72b1ba-dd71-4cc0-adc4-2f57f4286e09" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 237DDCE8227445509C7D8F4D0E403FEE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 273E106D2629457FB5D33E0AAC4AFFFD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8482" ], + "Content-Length": [ "8481" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Func-PowerShell-NewTest4-jm5wr8ezis\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"func-powershell-newtest4-jm5wr8ezis.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-jm5wr8ezis.azurewebsites.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-jm5wr8ezis.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:15:54.2\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-jm5wr8ezis\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-jm5wr8ezis\\\\$Func-PowerShell-NewTest4-jm5wr8ezis\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"func-powershell-newtest4-jm5wr8ezis.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:19:31.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "903" ], - "x-ms-client-request-id": [ "ef0ad995-2cbe-455b-be63-aa439650e8a2" ], + "x-ms-unique-id": [ "1043" ], + "x-ms-client-request-id": [ "63ff6396-bf4f-47c0-8760-69e34af3a553" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1043,36 +1135,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22afb0b5-b2d4-4ed9-bae2-439d128474bf" ], + "x-ms-request-id": [ "676cc875-87c5-4387-a80a-f06298e39ae5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2345fdb9-3b42-4758-a43f-344dd7b509aa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74b4fae5-b3ee-4f51-87dd-ce56cbaeb2d0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6f7c46df-a531-4cfb-8b49-3ee3060edf7d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121625Z:6f7c46df-a531-4cfb-8b49-3ee3060edf7d" ], + "x-ms-correlation-request-id": [ "578996a0-df4a-472e-853c-0513950befdb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022004Z:578996a0-df4a-472e-853c-0513950befdb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C91A799200CF43B69254F3DC1A44FAB0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4F08C80C0714D46A5C26E9423615B89 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:03Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-jm5wr8ezis\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=144e186c-829e-48a9-a5e1-fde9a165497f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cdf5e5be-9eb8-4d4c-bcbe-1e7f70e008e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-bzn08hgcxk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\"}}", "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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "904" ], - "x-ms-client-request-id": [ "d72c7dcf-87d3-4479-97a7-d3d4ef363f32" ], + "x-ms-unique-id": [ "1044" ], + "x-ms-client-request-id": [ "1437d0da-8be7-4a3a-84c6-7ff86d7e6418" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1088,37 +1180,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82775eb4-5c67-4f31-adf6-c372d9f9449a" ], + "x-ms-request-id": [ "ca5eab8b-46c1-44e4-a2e2-f58e2ac343ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63b175e9-b867-4c90-905f-b22ece045e57" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ba6c6e6-e42c-421d-ab40-8b45bc0202e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "acd57e56-631c-46a7-b024-6cee6b048cea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121625Z:acd57e56-631c-46a7-b024-6cee6b048cea" ], + "x-ms-correlation-request-id": [ "5eb52fbd-dc0e-4b94-8b83-633c032eae49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022004Z:5eb52fbd-dc0e-4b94-8b83-633c032eae49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6EC95828BB1475BAE0FC3EDB6DBA641 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A7BA1FACCE044DBA11CD5A6C02F8409 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis/config/web\",\"name\":\"Func-PowerShell-NewTest4-jm5wr8ezis\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1045" ], + "x-ms-client-request-id": [ "e07c1bc8-c38f-490e-a78a-9121241ae4ef" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9f3b3131-e7bb-4535-8165-35c71d3bfb85" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6f0a9b71-a42e-4a70-9676-d7dbcf580fa5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022005Z:6f0a9b71-a42e-4a70-9676-d7dbcf580fa5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C4CEE944F0824CF5981DA2F1A437AEB9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:04Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1825" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { + "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "905" ], - "x-ms-client-request-id": [ "429d6662-54ed-4b1a-9cbe-1285b5690bb7" ], + "x-ms-unique-id": [ "1046" ], + "x-ms-client-request-id": [ "64336e80-f86b-4fb6-858b-51161a78bfbc" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1133,20 +1270,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE17CDBD80\"" ], + "ETag": [ "\"1DC550D1CBA1ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e22c1cf-3d54-4b12-90f6-978d037d442a" ], + "x-ms-request-id": [ "7e0b6721-db15-4358-8c9c-a22efae15010" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87388fe4-9f0a-4f2c-af85-b33a98892506" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b3c7fee-49cb-4051-95d3-c307ec2f201c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "edc73272-6c0c-471b-8e29-249fade57fab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:edc73272-6c0c-471b-8e29-249fade57fab" ], + "x-ms-correlation-request-id": [ "522a2e63-d285-46a6-b880-00554ce7b308" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:522a2e63-d285-46a6-b880-00554ce7b308" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B56CB9D2E5F94017ABCAAC5E2EFCDADD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:25Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25478AB0BD0D475F95C7F5F5D4FEBBBD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:05Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1156,15 +1293,15 @@ "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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01+27": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "906" ], - "x-ms-client-request-id": [ "9355a6c6-068a-45e6-907b-58c2b47bf944" ], + "x-ms-unique-id": [ "1047" ], + "x-ms-client-request-id": [ "5701c7d0-c615-4e90-83d7-405f8340e554" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1180,36 +1317,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35744c8e-b277-4e9a-ad85-817308b08396" ], + "x-ms-request-id": [ "767715a8-da11-4630-96fd-153f893f9333" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e5fbced-fe22-47f0-a8c3-99d8f47544a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:4e5fbced-fe22-47f0-a8c3-99d8f47544a2" ], + "x-ms-correlation-request-id": [ "160c979b-1fef-49e0-bc2c-bef8e59bcbd4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:160c979b-1fef-49e0-bc2c-bef8e59bcbd4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 726F00C2E76B4D44A75D86DCAA5E4794 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED402D8879BF42B4A726AE6B19971DE7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2023-12-01+28": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-lf9t8w/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "907" ], - "x-ms-client-request-id": [ "30a25fff-3727-4e21-bc87-d81b542126a4" ], + "x-ms-unique-id": [ "1048" ], + "x-ms-client-request-id": [ "0bf1f591-8a60-4af7-bac3-34c254443958" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1225,33 +1362,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "956a23ce-d2d6-473f-b7d5-6d99888605ed" ], - "x-ms-correlation-request-id": [ "956a23ce-d2d6-473f-b7d5-6d99888605ed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:956a23ce-d2d6-473f-b7d5-6d99888605ed" ], + "x-ms-request-id": [ "8326fb9a-b337-4d8d-bdf9-f2dc50ef72af" ], + "x-ms-correlation-request-id": [ "8326fb9a-b337-4d8d-bdf9-f2dc50ef72af" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:8326fb9a-b337-4d8d-bdf9-f2dc50ef72af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D5F8AF2E64B4A7EB124929ED12B8599 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2388C5B7D14B42B8BF7FF3DAC7A86BA7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest4-jm5wr8ezis\u0027 under resource group \u0027Functions-Test-Windows-Premium-lf9t8w\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-bzn08hgcxk\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01+29": { + "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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "908" ], - "x-ms-client-request-id": [ "6c414b47-b906-49bb-93e7-60829348bf90" ], + "x-ms-unique-id": [ "1049" ], + "x-ms-client-request-id": [ "2d082c61-5ed0-41d6-8f39-d945d3f1602c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1267,36 +1404,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2a5ed7d-ee16-47ae-a839-93716421b856" ], + "x-ms-request-id": [ "28cce310-ab4d-4b90-8616-ca7f01ae9e3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df171305-23a7-4a50-beda-a6d09b1304ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121635Z:df171305-23a7-4a50-beda-a6d09b1304ab" ], + "x-ms-correlation-request-id": [ "5e8da7e4-e0e7-4d6b-aabd-54fb333cbfd2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:5e8da7e4-e0e7-4d6b-aabd-54fb333cbfd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E2E8840148F43269DD80F8117230B39 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A73E4E14AD4C42C9BF8B1A6B14DBD734 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1\",\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60684,\"name\":\"Functions-MyTestPlan2-nth8y5exl1\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-lf9t8w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-12T12:14:24.4466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01+30": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-nth8y5exl1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "909" ], - "x-ms-client-request-id": [ "eb0778be-d2fb-480f-93d5-82421cc15c83" ], + "x-ms-unique-id": [ "1050" ], + "x-ms-client-request-id": [ "9f1c8849-6054-4031-a36f-3232b6d2b5f4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1312,18 +1449,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d4d270c-8d03-4c25-b444-6873e9176777" ], + "x-ms-request-id": [ "94f81400-69f1-4169-80aa-7edc6ba00325" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e3d929f-c14f-4969-8e0c-34b9974aaf95" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3cd87da6-6151-4f91-b4b8-96b2db158e3d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "e44bbffa-4cff-4919-a3ec-2aa15469a5b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121641Z:e44bbffa-4cff-4919-a3ec-2aa15469a5b3" ], + "x-ms-correlation-request-id": [ "bc995e7f-77a1-4a59-8e68-c90bd89174cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022021Z:bc995e7f-77a1-4a59-8e68-c90bd89174cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3BA28DBE2D6D40D8B0FD9A92CF847B4D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:35Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CDC2D0BF8B3F42F5B98FE5887377E77D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:20 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 185fe2f680f1..7afbcec7ed19 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,13 +1,13 @@ { - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "910" ], - "x-ms-client-request-id": [ "533071a1-bba7-447a-88b0-2205a4ae30ee" ], + "x-ms-unique-id": [ "1051" ], + "x-ms-client-request-id": [ "85c3f40f-78e6-4cbd-9337-cbcbaf9f5e89" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e09979aa-d70d-4612-b8fc-9e6b056bfa29" ], + "x-ms-request-id": [ "5aaeb330-e049-41e8-8721-dd469e27acc3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50d547d1-31fa-44ff-9207-876b9c79af87" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1e792c3-d3f2-4975-a1ed-916d53cbaf62" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6449c2c9-cd7a-4fc3-895e-065dc9864ecf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121642Z:6449c2c9-cd7a-4fc3-895e-065dc9864ecf" ], + "x-ms-correlation-request-id": [ "53105a0d-922e-4823-b815-dbb32adea35b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:53105a0d-922e-4823-b815-dbb32adea35b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C7BED7333994ECEA8388E12DB753A96 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1798FC1F30714B6EACE8274B42230EC3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:22Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -44,15 +44,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "911" ], - "x-ms-client-request-id": [ "84db16ab-635b-443b-8b3b-9aef93f5dbdf" ], + "x-ms-unique-id": [ "1052" ], + "x-ms-client-request-id": [ "eb71d90e-5621-4c18-a2c7-3c87a70c6b4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -67,38 +67,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE34701000\"" ], + "ETag": [ "\"1DC550D3B25AE95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1836a9ab-afc8-4e7c-81f8-4dd47e0678ca" ], + "x-ms-request-id": [ "3c2b0d74-d6d3-4c24-a5db-a52bc68f61b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b26c4df8-14a1-4dfa-803e-73eeb0e90051" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121642Z:b26c4df8-14a1-4dfa-803e-73eeb0e90051" ], + "x-ms-correlation-request-id": [ "cf5395ad-275f-4437-a0e9-3e133354589f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:cf5395ad-275f-4437-a0e9-3e133354589f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59215131F06B4ADCA4BCDE30DBB48743 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 760E024360AD472B9D2FDD1E5400D1CE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:23Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8413" ], + "Content-Length": [ "8411" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:42.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:22.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "912" ], - "x-ms-client-request-id": [ "f460eacb-6c87-4452-8afc-f82c2791d3ab" ], + "x-ms-unique-id": [ "1053" ], + "x-ms-client-request-id": [ "8957822a-3257-4239-8c6d-608acad95967" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -114,36 +114,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd84de8f-97bd-454d-8aa5-28f845d8098f" ], + "x-ms-request-id": [ "187509e6-a5ad-4f75-bec7-2a2fe87a9f0e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea349dc0-fb25-424d-9584-7209bff484f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ed08193-7849-44d0-a80a-b25304e15d11" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "92c769c2-b9a5-4680-b3b5-3e0c34a03b6b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121642Z:92c769c2-b9a5-4680-b3b5-3e0c34a03b6b" ], + "x-ms-correlation-request-id": [ "9d2ff865-995a-4b27-b600-932e33ecfa0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:9d2ff865-995a-4b27-b600-932e33ecfa0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF5BF764DDE54EAAB4F34996AF29B7DB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 540B4E2EA35647DBBCE711741673C643 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:23Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "913" ], - "x-ms-client-request-id": [ "ba0b0ba2-9afa-4e9f-9937-6db29b2fb58e" ], + "x-ms-unique-id": [ "1054" ], + "x-ms-client-request-id": [ "c0224af2-8ffc-46bd-a12d-315a5f30ad6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -159,37 +159,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c73267ab-5b54-470e-921c-d18b89f192e0" ], + "x-ms-request-id": [ "fdbeb2b9-cf21-439c-91ed-505d89de0074" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0472b2ee-2516-4f39-a037-f4a09f1b5054" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6e4429d-4272-4060-bf71-a7e7a74a6534" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d36b141c-4b79-4031-907f-71202e4e6b1b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:d36b141c-4b79-4031-907f-71202e4e6b1b" ], + "x-ms-correlation-request-id": [ "8b94bfe1-11aa-473c-b136-98ddbda41cd7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:8b94bfe1-11aa-473c-b136-98ddbda41cd7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC6A7BB4434747A7B2F43AA2EA4F9F9B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:42Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 534BB66BD60D4CA69B716808F9937FD4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:23Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "914" ], - "x-ms-client-request-id": [ "c018a304-de71-4482-aa4d-7a02a197dfb5" ], + "x-ms-unique-id": [ "1055" ], + "x-ms-client-request-id": [ "9eb91b91-1b3d-4137-885c-0a69538bb668" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -205,18 +205,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f33cfb2-68bf-459e-9d41-981fe0b0a6b6" ], + "x-ms-request-id": [ "a185ba08-4b33-4743-8fc1-32f6c63c5368" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/002f6546-15d6-4a21-86fc-7f0c1ac86ef2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25847669-fcc4-497b-aab2-8057648caa99" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a63843a2-c1dc-4240-89cd-c062d1f008c1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:a63843a2-c1dc-4240-89cd-c062d1f008c1" ], + "x-ms-correlation-request-id": [ "18e9d7b4-c198-4a37-8dd3-268b8fe7bacc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022024Z:18e9d7b4-c198-4a37-8dd3-268b8fe7bacc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FA7C6938A614AF4A86630CB072F7AD3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD7498F8D979484D8C20636D749E01A6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -226,15 +226,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "915" ], - "x-ms-client-request-id": [ "303f5fab-6c39-408e-a700-691308e27808" ], + "x-ms-unique-id": [ "1056" ], + "x-ms-client-request-id": [ "b9de87cd-8468-442f-9b14-eb869a4c613a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -249,38 +249,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3515DFEB\"" ], + "ETag": [ "\"1DC550D3BE7FA2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7cf5a14-30cf-422f-98d6-039b25a092d9" ], + "x-ms-request-id": [ "1a2a3303-4ac2-4909-a8be-7b81f4d11ea7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9cccd4df-f042-4b41-84d4-af30b1c2dd96" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:9cccd4df-f042-4b41-84d4-af30b1c2dd96" ], + "x-ms-correlation-request-id": [ "bde7d3f5-fbce-47f8-a494-c91518b0d378" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022024Z:bde7d3f5-fbce-47f8-a494-c91518b0d378" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C80C3F0B80D745D486B6A7D5A0076B27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45C699A9ADC8405FB28AB7DD163FF508 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8411" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:43.3266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:24.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "916" ], - "x-ms-client-request-id": [ "0d81d546-205e-44c9-adaf-fe7d5571fe45" ], + "x-ms-unique-id": [ "1057" ], + "x-ms-client-request-id": [ "5408d4c0-7c95-44c2-96ee-6bd5bf546164" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -296,36 +296,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d4dfd521-94b3-4ea9-ab33-8ce875c05cd0" ], + "x-ms-request-id": [ "746de631-7b17-4a09-a6e1-461c54d02475" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f384485e-27e0-48bf-ab65-6f9025d1ee5d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74797f24-c891-4925-ad08-1545450e9549" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d768aad2-eb36-4715-a1ed-7f0d6e8c4963" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121643Z:d768aad2-eb36-4715-a1ed-7f0d6e8c4963" ], + "x-ms-correlation-request-id": [ "75ec49ad-8341-4079-8f06-7490c143b605" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022024Z:75ec49ad-8341-4079-8f06-7490c143b605" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7B152D794C94A168E7EE1A77EE9278F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00452789F9854C1BA2160FE467B21C61 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "917" ], - "x-ms-client-request-id": [ "517ffe6f-714f-4c88-9ecc-dbec9131c4e5" ], + "x-ms-unique-id": [ "1058" ], + "x-ms-client-request-id": [ "13fecaa7-730b-4af5-b0d6-6591c3d8ada5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -341,37 +341,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa5219a8-9a72-41ef-8086-3229ef7b7b40" ], + "x-ms-request-id": [ "218b40bb-8fea-4bbf-a70d-b61c1bcade61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/891ce095-f25f-4d6c-817c-7570ae3d426b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/82d08396-a37d-4bef-89f8-869491a74332" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3aee9590-fdde-4abc-89d5-66a955b8eb90" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121644Z:3aee9590-fdde-4abc-89d5-66a955b8eb90" ], + "x-ms-correlation-request-id": [ "74da78df-6b44-4557-a899-b4f47c684eca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:74da78df-6b44-4557-a899-b4f47c684eca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 682CD0F2DC334C31B15684FF33A5F4DC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:43Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5FFA15DBC054ABAB0135AA80965C1CF Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "918" ], - "x-ms-client-request-id": [ "260789cf-5d6e-4620-8e72-0ce51fcd1cad" ], + "x-ms-unique-id": [ "1059" ], + "x-ms-client-request-id": [ "79f724e7-0bf1-4d57-9720-c77ef8a9a6d5" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -387,18 +387,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f347d200-6758-4a97-a265-2f71ec30cdf7" ], + "x-ms-request-id": [ "7f18e5db-7869-4ef8-863d-38b2c5978326" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c968cc6f-0606-42b4-8da8-c2fbabcf6984" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f85e7ab5-87d4-4b30-8178-045c2ca9be28" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3fbb13a1-8e5d-4cd4-b7cf-f182bbabd52d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121644Z:3fbb13a1-8e5d-4cd4-b7cf-f182bbabd52d" ], + "x-ms-correlation-request-id": [ "ec963f4d-a834-415c-b20b-16f1f041e0dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:ec963f4d-a834-415c-b20b-16f1f041e0dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52C342C5541D4C8FB9BE6BA3B97EB13D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19898C2AAB834F2A9F568DF132FF192C Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:25 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -408,15 +408,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "919" ], - "x-ms-client-request-id": [ "4a272d6f-3350-4fcc-996e-e44a7dd8c57e" ], + "x-ms-unique-id": [ "1060" ], + "x-ms-client-request-id": [ "d2fafc65-7bb3-4621-aea7-08c238c6eb44" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -431,38 +431,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE35B490EB\"" ], + "ETag": [ "\"1DC550D3C8D47E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a7fb2ac-9ec5-4fd0-8d8e-64faa73c01df" ], + "x-ms-request-id": [ "78e80fc4-95d7-4e13-9f69-993ad2738673" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dff100ac-45d8-4e9d-a318-7ca3d64c487c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121644Z:dff100ac-45d8-4e9d-a318-7ca3d64c487c" ], + "x-ms-correlation-request-id": [ "f222cca7-9c5e-4e0d-b702-80253860e422" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:f222cca7-9c5e-4e0d-b702-80253860e422" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FFF269120FE4C01A66D19EFA7B8A65F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7EC0E12C890B469EB60D62357E7057BB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:44.3666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:25.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "920" ], - "x-ms-client-request-id": [ "15e76f8a-8e43-4ffa-b685-8e785a163989" ], + "x-ms-unique-id": [ "1061" ], + "x-ms-client-request-id": [ "b8fdf720-8bc1-4a1c-8d75-25714c159d26" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -478,36 +478,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a278a17-dd60-43fe-8c3e-334e2f1d1a75" ], + "x-ms-request-id": [ "7c44c3b4-22b4-4e15-bff0-e80a04c7114e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e84aee32-3891-415b-a8ea-ac2a6920cccc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/669c6be1-fca7-4e71-9a06-6644a6b7764e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8f5f4842-aa4a-4c39-b19b-903d95cd7436" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:8f5f4842-aa4a-4c39-b19b-903d95cd7436" ], + "x-ms-correlation-request-id": [ "d97843f6-a578-49b9-892e-7764cc4bd2bc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:d97843f6-a578-49b9-892e-7764cc4bd2bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B94D930C58BE49019C351B5AF3A38790 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:44Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E453A31F63584834A75963A927E858CE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:25Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "921" ], - "x-ms-client-request-id": [ "18bb2ec5-6b9d-4924-9db1-add24882a0fc" ], + "x-ms-unique-id": [ "1062" ], + "x-ms-client-request-id": [ "0c5a43d1-ac6a-4c85-9c0f-ef6fe6e3f87d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -523,37 +523,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa7aebb9-ca64-4815-93c7-5728ee687855" ], + "x-ms-request-id": [ "50872537-ada3-4b90-86a9-00438eec7b8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ed71511-108d-4678-97bf-047a949c845c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c9a1655-9b95-4e0e-a94d-8bc5f510dfdc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e9f9775-6d54-475e-a5d0-8fbd6c23d8c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:4e9f9775-6d54-475e-a5d0-8fbd6c23d8c7" ], + "x-ms-correlation-request-id": [ "58194001-b0b7-4dd6-befd-9fc240a37d2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022026Z:58194001-b0b7-4dd6-befd-9fc240a37d2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54EEE00AAB8845F0AFEF4C3E145342EA Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:45Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC9D67F44C7A47C0B4BD98163F3085CD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:26Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "922" ], - "x-ms-client-request-id": [ "ae9d871f-cb07-46a0-a867-9679c9175276" ], + "x-ms-unique-id": [ "1063" ], + "x-ms-client-request-id": [ "c9a32e29-0d45-42c2-a20a-64157f3d6640" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -569,18 +569,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc6dfd98-5faf-4cb4-9d38-00d4566126a3" ], + "x-ms-request-id": [ "6eda6d03-13ed-4447-a18b-d742ba6c8881" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ecb249f-4463-4d63-8b67-f583cb184282" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf2e4b20-2ef7-4eec-a1a0-2cc015375706" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3ee2fa94-c47f-4013-9ce2-df989775994e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:3ee2fa94-c47f-4013-9ce2-df989775994e" ], + "x-ms-correlation-request-id": [ "2d6449e1-a51f-4320-8c7f-1e132f1d779a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022027Z:2d6449e1-a51f-4320-8c7f-1e132f1d779a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C4BF3D4AB9D4FB2B95D549306EF5F1C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:45Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E690C1570DA49C284212CCFDD83CA4A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:26Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -590,15 +590,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "923" ], - "x-ms-client-request-id": [ "6a3481b5-7be5-4397-83f3-821e622442fc" ], + "x-ms-unique-id": [ "1064" ], + "x-ms-client-request-id": [ "aa31b80b-07af-458b-9e51-f881e237b33e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -613,38 +613,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53C4FCDC586B\"" ], + "ETag": [ "\"1DC55039C7D6A40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cff357e-2354-48b6-96ee-0c2ea1d9c5d7" ], + "x-ms-request-id": [ "c19c72ca-f6a2-4e53-857e-175dbfd54ffc" ], "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": [ "24b7dede-55db-4dbc-b679-b77fb143fefe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121645Z:24b7dede-55db-4dbc-b679-b77fb143fefe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "622bec31-56ab-4ee9-bee3-22575af0eba0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022027Z:622bec31-56ab-4ee9-bee3-22575af0eba0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 657607482BE74493B5BE55F13D071546 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:45Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23FC464947124730B885F1851BB6D8AB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:27Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8322" ], + "Content-Length": [ "8320" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T11:10:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "924" ], - "x-ms-client-request-id": [ "4cffb3dc-a4e8-4a7d-9a5b-d01a097a41b8" ], + "x-ms-unique-id": [ "1065" ], + "x-ms-client-request-id": [ "1736499b-3094-4c8e-9e4d-5dd82d2a7cf3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -660,36 +660,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a45fd6d-7c86-47ad-9a0c-443a002b78e2" ], + "x-ms-request-id": [ "2a9a8707-f7c9-491e-bd62-43966ab6b352" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2649c177-9faa-42f9-8d52-10f9fb7d1fa6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/19372d13-5235-4754-bd48-eddf3974233e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e0e73f52-65ba-401b-b068-e749803bcd4a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121646Z:e0e73f52-65ba-401b-b068-e749803bcd4a" ], + "x-ms-correlation-request-id": [ "c96e6660-3ea0-4d5f-9435-9b62ce52957f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022027Z:c96e6660-3ea0-4d5f-9435-9b62ce52957f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20342A7F8AB04B6EBFAC0322FD6A4F5B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14AF20D9F1EF4EB897A102E48A93BB8F Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:27Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "925" ], - "x-ms-client-request-id": [ "a37bc704-c83c-4433-86d5-c20033579033" ], + "x-ms-unique-id": [ "1066" ], + "x-ms-client-request-id": [ "c8d68d0e-7f2e-4e7b-be5e-49a3f257215a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -705,37 +705,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "642c4758-7b3f-4fb2-8b15-d0c70a073d19" ], + "x-ms-request-id": [ "ffef148b-64a3-4e0b-b419-ac31f6a4c292" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/30372f70-94ff-4d41-9f64-bc53cb0c3398" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69f9dc69-0d73-44f6-9b68-e6770b80067e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f2dae0a8-dfe2-451a-a5fc-90667edc47bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121646Z:f2dae0a8-dfe2-451a-a5fc-90667edc47bf" ], + "x-ms-correlation-request-id": [ "72d64ffb-fb9b-4273-a5cd-b6e7dbc96c28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022028Z:72d64ffb-fb9b-4273-a5cd-b6e7dbc96c28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56C83C8DE77D450CA7C5FF0BCBF0D5F4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 245017A99D1E4FE68BCAE8F6425A4412 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "926" ], - "x-ms-client-request-id": [ "3e1d41f1-050f-4bb8-9e42-9f8b8e9c892b" ], + "x-ms-unique-id": [ "1067" ], + "x-ms-client-request-id": [ "d3a4584a-452f-4d5d-b3ea-9cfab8d23675" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -751,18 +751,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99310699-e475-4b1c-878d-8bb678ef8609" ], + "x-ms-request-id": [ "b26433ff-ddd4-4af3-86e8-ebf6ea192747" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3d9a46c-561b-423a-b7ef-1489c3e063db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23b33e18-ad00-415a-a5c0-ec791e9ba5c2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1bc38d02-5e35-4c32-829e-4de75013a859" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121646Z:1bc38d02-5e35-4c32-829e-4de75013a859" ], + "x-ms-correlation-request-id": [ "a07b84ed-39ac-4931-a0d2-7e73f4494aa0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022028Z:a07b84ed-39ac-4931-a0d2-7e73f4494aa0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1EF89019F6C3461A8C339A38B68E1538 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 967A19E3563447F89B3759721772FC30 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -772,15 +772,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "927" ], - "x-ms-client-request-id": [ "d109d001-d1a8-4052-8e50-bbbbce171798" ], + "x-ms-unique-id": [ "1068" ], + "x-ms-client-request-id": [ "d8f440c9-69f3-4ac7-99fd-1d9e261a8b21" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -795,38 +795,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3711FE0B\"" ], + "ETag": [ "\"1DC550D3E63C295\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7ee58f7-be7b-4afa-ad71-13722db7e60d" ], + "x-ms-request-id": [ "addef9c9-d7c8-4b09-99e3-850ac8a504b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00dabb68-7ba5-4313-ab3f-00a0bfdfd871" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:00dabb68-7ba5-4313-ab3f-00a0bfdfd871" ], + "x-ms-correlation-request-id": [ "2a5b1ee8-633d-47cf-bfb7-eed58221e9d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022028Z:2a5b1ee8-633d-47cf-bfb7-eed58221e9d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 508FBDABFD9E4F139DF6B007E6557F2F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:46Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2832BE91427445C58A8463F12F50C4A8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8322" ], + "Content-Length": [ "8326" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:46.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:28.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\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "928" ], - "x-ms-client-request-id": [ "c21e1afe-4c4a-4932-addb-b5bf1180f134" ], + "x-ms-unique-id": [ "1069" ], + "x-ms-client-request-id": [ "773a70a6-6801-4a8b-9084-dd7778d78260" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -842,36 +842,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0afeebdd-2b77-4bba-af86-8fc95291412d" ], + "x-ms-request-id": [ "1b467906-6d63-4c34-8bb3-07d6cf12d93d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8d73d552-56da-4e9c-a5cc-78c8cd959190" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "3d465ee1-e008-4cd2-b870-298b3c98fd61" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:3d465ee1-e008-4cd2-b870-298b3c98fd61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d8d9cb8-95f0-4679-8eef-35dd2787d0b9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a2603374-08aa-476d-a4b4-f0e489511418" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022029Z:a2603374-08aa-476d-a4b4-f0e489511418" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BEC757CFC8534EB097B85492FE724E0B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:47Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 29E7B7C3B71B4742A09A169B1C8201D5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "929" ], - "x-ms-client-request-id": [ "78a63474-4158-4ed4-80ed-246442b9eba9" ], + "x-ms-unique-id": [ "1070" ], + "x-ms-client-request-id": [ "32481aef-02a2-434e-bc79-d711477076c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -887,37 +887,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9d2f0c69-3d13-4b6b-a959-2a4955f27479" ], + "x-ms-request-id": [ "dbeab3d2-e9cd-4c3a-ba27-02fc71e1a9be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f588258d-4c09-4602-ba6c-8cebce05348b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edefeda9-126d-4bab-b3c1-ad5feaac8aba" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13a6cfce-30d8-4e64-9918-25706cccac31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:13a6cfce-30d8-4e64-9918-25706cccac31" ], + "x-ms-correlation-request-id": [ "c80a6dc5-bf04-4b5e-a87a-cd0f930a4bf5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022029Z:c80a6dc5-bf04-4b5e-a87a-cd0f930a4bf5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBF225DAB62747B09B8D054A8A50A301 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:47Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6FD8A5F61A84B2CAE94715C2D1FD625 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:29Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "930" ], - "x-ms-client-request-id": [ "441398a9-3d02-4921-bd45-d0559c79b26e" ], + "x-ms-unique-id": [ "1071" ], + "x-ms-client-request-id": [ "65d35a66-5179-4ea8-975e-5fc10f209fc1" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -933,18 +933,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c44895e6-917b-4e37-9fd4-c8f0cd79784e" ], + "x-ms-request-id": [ "1b437f3f-676a-4e79-82a2-7705e3d164c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3091fb2-e1c2-43f3-aa29-0631c56c870b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4a0ed7b-addb-4602-aee5-29d255938203" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "fc367ae0-d58c-48a5-98a7-512e1c91fba3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121647Z:fc367ae0-d58c-48a5-98a7-512e1c91fba3" ], + "x-ms-correlation-request-id": [ "85e1155d-3040-4953-90aa-8a75e114c7b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022029Z:85e1155d-3040-4953-90aa-8a75e114c7b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31CE6CBA492840F88DB0213C94191C3D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:47Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3805824971BC42FE8D1CE06F8B9FA498 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:29Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:29 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -954,15 +954,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "931" ], - "x-ms-client-request-id": [ "20015810-536f-4b51-bf70-d597f8149a8c" ], + "x-ms-unique-id": [ "1072" ], + "x-ms-client-request-id": [ "46ef3e5d-7739-4708-8f58-a5b6a354085a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -977,38 +977,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE37C68E00\"" ], + "ETag": [ "\"1DC550D3F2DAF4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6093e2a0-113b-402a-ab42-a10a00a95407" ], + "x-ms-request-id": [ "315237dc-836f-4f70-a547-ef1c5dbb7ff5" ], "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": [ "91c135bd-d168-442a-a332-cd66082d352e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121648Z:91c135bd-d168-442a-a332-cd66082d352e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eb0a900f-2775-4122-b546-924b22a1bfe6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022030Z:eb0a900f-2775-4122-b546-924b22a1bfe6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CCF90CCFE3694E6C9BF2AD53EEC3C3A1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1D2B62B5C0F49D28427A441347948B8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8317" ], + "Content-Length": [ "8326" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "932" ], - "x-ms-client-request-id": [ "f7419e5f-3e00-4982-89ec-88f16d6e5998" ], + "x-ms-unique-id": [ "1073" ], + "x-ms-client-request-id": [ "88006101-388c-44d5-81de-7dbb05a4a6b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1024,36 +1024,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b232451-e546-45e3-bd52-c4b430f3d299" ], + "x-ms-request-id": [ "fc29eaaa-a5d7-43ce-a1f8-fa65c877ff36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e89d1c9-c18f-407e-b6c9-0430a355399b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "acfff569-cf74-47f7-91ac-46ad3fe347a4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121648Z:acfff569-cf74-47f7-91ac-46ad3fe347a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f4bfe7-18d8-44db-b240-a5a30ab56064" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "51269543-9859-4b8e-a1a8-4c32bb4163d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022030Z:51269543-9859-4b8e-a1a8-4c32bb4163d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B21A27D0BE7495C88524C90C5311927 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09F019114C6F4A57A06D4DBF5A471E46 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "933" ], - "x-ms-client-request-id": [ "e81199c4-b800-4666-be31-421c017072f8" ], + "x-ms-unique-id": [ "1074" ], + "x-ms-client-request-id": [ "4b20dbec-fc45-43f9-9957-9fbd7913c5fb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1069,37 +1069,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "09be5dc0-faab-4a49-a17f-438c685db122" ], + "x-ms-request-id": [ "3789fd00-108e-42dd-a301-0262013ebc2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8ef39206-aec2-4441-80b1-2c56ae36db47" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a50bf237-6e2c-400e-91d1-26eb16856f33" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121648Z:a50bf237-6e2c-400e-91d1-26eb16856f33" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9fd75bd0-b73e-4b52-af7d-9cf89c967537" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "764c670d-2277-4871-979b-6154600c576d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022030Z:764c670d-2277-4871-979b-6154600c576d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F78DDFD57AE47E68EEF74295FFCEA75 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04AA4CAF4052480F8A16F58B309645EB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "934" ], - "x-ms-client-request-id": [ "57a18ea9-e806-4328-8b1b-d071118bc80a" ], + "x-ms-unique-id": [ "1075" ], + "x-ms-client-request-id": [ "4dcb1f52-ff3d-493c-9657-859f78090a2b" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1115,18 +1115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "55743b6b-30b1-49e5-ad16-7aba57b8414e" ], + "x-ms-request-id": [ "e1fe77a5-c85c-4275-9ce2-db5b35496cef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ca46b405-9d4c-494a-a951-36e2eb6c7f0b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3132a60-2db3-4934-9925-64f98cdce6c6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "7fde9dc6-e44f-4206-84b4-e4bfb92d8dca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:7fde9dc6-e44f-4206-84b4-e4bfb92d8dca" ], + "x-ms-correlation-request-id": [ "559a7a13-33d0-481d-b218-d069a6399005" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:559a7a13-33d0-481d-b218-d069a6399005" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A38BCED2AC92436AA3506610706561DD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:48Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C99863E36D2D46EDB2E8CA61D86435CD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1136,15 +1136,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "935" ], - "x-ms-client-request-id": [ "85c179ef-dda2-4f14-b4c1-df9394535481" ], + "x-ms-unique-id": [ "1076" ], + "x-ms-client-request-id": [ "f5bbffa3-25c0-482a-b492-1272fdc4c7aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1159,38 +1159,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE386FED60\"" ], + "ETag": [ "\"1DC550D3FF07D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "52c7a6dc-d77f-470e-9f7e-afa75107ab9e" ], + "x-ms-request-id": [ "7bdf5723-1b35-4936-921c-1874f4c5fd20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "48c419de-4ab7-4131-b91c-994c330dd700" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:48c419de-4ab7-4131-b91c-994c330dd700" ], + "x-ms-correlation-request-id": [ "1fddecb4-19f8-4c74-8ffe-baf7a342d20c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:1fddecb4-19f8-4c74-8ffe-baf7a342d20c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A4976511B1C42C78BB23E9A0DBCEC93 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 789F3672DE234252BB996BCA11F49EB6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8682" ], + "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:48.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:30.9933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "936" ], - "x-ms-client-request-id": [ "ac1c1340-4c7d-47e4-83ff-27ea3e07c7c7" ], + "x-ms-unique-id": [ "1077" ], + "x-ms-client-request-id": [ "27f53258-e2d2-47b9-91c9-005127e0173a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1206,36 +1206,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7083b0f-26d3-45fb-99cd-fee8f2bea276" ], + "x-ms-request-id": [ "15df1300-e1df-437b-a083-9d1feec3ff0a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80e038d4-2c5a-405f-8c21-99534bed70cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b138fae7-6f28-4eaa-99cb-19b36f167c62" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "618d8fb0-c42d-41d9-beac-ec06036daef6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:618d8fb0-c42d-41d9-beac-ec06036daef6" ], + "x-ms-correlation-request-id": [ "5c60eb1b-1074-46a8-8975-370e2c2a4c49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:5c60eb1b-1074-46a8-8975-370e2c2a4c49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7045E8DF5C3432E9D673D21A50FC10C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2E79488ADE347C1BB1A86F0EFC894C5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "937" ], - "x-ms-client-request-id": [ "8f5a466e-887d-4982-b222-8ec2ca2d589b" ], + "x-ms-unique-id": [ "1078" ], + "x-ms-client-request-id": [ "4fc1ca84-1d68-48d5-a793-6f2ea9f83876" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1251,37 +1251,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18a1714e-1f62-4c6e-acf4-f22d6460e585" ], + "x-ms-request-id": [ "cd805c65-80de-4563-858b-08905569b80a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d34f60cd-d44f-4bbd-89d4-7c8e8b1757d4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "74513328-04d7-400a-9039-37b1a32f6a78" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121649Z:74513328-04d7-400a-9039-37b1a32f6a78" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f11f01db-d5cd-42cb-b9c3-396c9d5d6c9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bf9e0da9-a02f-481d-92ca-fd1eb4e6ddc7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:bf9e0da9-a02f-481d-92ca-fd1eb4e6ddc7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60B2BEDAEA6349D1B45FE065A185A184 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5051353E7DF14BB189FF5596F5E0D5DA Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:31Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "938" ], - "x-ms-client-request-id": [ "dc1bcf51-256d-4760-a92c-4841ab9b139f" ], + "x-ms-unique-id": [ "1079" ], + "x-ms-client-request-id": [ "f45cce5b-2410-486e-8417-21c3ef8adbe9" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1297,18 +1297,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d7bcfe4-50a3-4d54-abff-dae8c4a9c063" ], + "x-ms-request-id": [ "c99f4df9-c05d-42b0-9ff9-6b951213cc62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3207243-f4b7-4857-b223-5fcd6c707a20" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "91ce3bde-a646-42e3-8173-752138d05985" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:91ce3bde-a646-42e3-8173-752138d05985" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/900fa3ee-455b-4942-9782-47823d2a611c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "c8bd4617-e7ad-4f33-b9be-dd560751b8e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022032Z:c8bd4617-e7ad-4f33-b9be-dd560751b8e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5592ABE8F90468695726143A286E578 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:49Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B03B209575E54EE29B48BCDD85BF22A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:32Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1318,15 +1318,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "939" ], - "x-ms-client-request-id": [ "7688de3f-4124-471c-9d18-75514351065e" ], + "x-ms-unique-id": [ "1080" ], + "x-ms-client-request-id": [ "c18ff6f6-175b-4053-aceb-925b05eec6f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1341,38 +1341,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE39194CC0\"" ], + "ETag": [ "\"1DC550D40A48AD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "73ecfda7-0598-45b6-ac1c-af01a6730bf0" ], + "x-ms-request-id": [ "83373665-0724-4630-b466-2cad8b3ed00a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7310af34-f647-4d64-9621-4a4ee8dd74b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:7310af34-f647-4d64-9621-4a4ee8dd74b6" ], + "x-ms-correlation-request-id": [ "8d1a8f34-5c29-43a3-940f-a83dda14bcb5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022032Z:8d1a8f34-5c29-43a3-940f-a83dda14bcb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7506E65568604BF095C2678B49CBD4F0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3AA0882CE5D0401998114E8973CE46E9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:32Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8682" ], + "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:50.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:32.1733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "940" ], - "x-ms-client-request-id": [ "68ce7a0f-0393-4f40-a70f-b47114c02564" ], + "x-ms-unique-id": [ "1081" ], + "x-ms-client-request-id": [ "67369640-ec67-45c2-9993-531c236fbba4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1388,36 +1388,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef68d4dc-0695-434f-bf6e-77e951cb3c88" ], + "x-ms-request-id": [ "143baa25-c338-41cb-88f6-33088cd9057a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06f00be4-3deb-4d04-b74f-45cba39ce556" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ddf9bec-aca5-48e6-930d-5416b1610495" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0479bd66-1483-43e0-a516-d43186d7c584" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:0479bd66-1483-43e0-a516-d43186d7c584" ], + "x-ms-correlation-request-id": [ "bc7e2837-8e98-4b76-9d0e-2d93df47f563" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022032Z:bc7e2837-8e98-4b76-9d0e-2d93df47f563" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A7C9F482BE548A88AD2702D786A2138 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63067818E2CE4296AD535487BE64DDCD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:32Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "941" ], - "x-ms-client-request-id": [ "6d939671-e3c8-4fe2-a0b6-8ba347b5ad3f" ], + "x-ms-unique-id": [ "1082" ], + "x-ms-client-request-id": [ "db3857aa-bc8a-45cd-af89-ad6c76848608" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1433,37 +1433,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f8842f8-81de-4ded-b066-037226e475ed" ], + "x-ms-request-id": [ "2902f02c-d885-444e-8e5f-ead9d90147bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b35c851c-2ece-44c9-bdef-c91dca2db43e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e490f52c-0524-4aa4-b6f5-37882ef17649" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "0afe7d57-1e7d-448c-b932-dcc59272c247" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121650Z:0afe7d57-1e7d-448c-b932-dcc59272c247" ], + "x-ms-correlation-request-id": [ "772a9712-2319-4644-a97e-0a5c55ab7732" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022033Z:772a9712-2319-4644-a97e-0a5c55ab7732" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D1C663E868C45F58867B9988DA7FC27 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFB76654B5514FFF999EB0F23C5F0BD1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "942" ], - "x-ms-client-request-id": [ "07e1d1d4-8753-495b-b58a-276265cff355" ], + "x-ms-unique-id": [ "1083" ], + "x-ms-client-request-id": [ "9932aa99-2330-496a-88c8-b0f745f887a7" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1479,18 +1479,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83482459-1f56-4618-8a68-a4eb83b1418e" ], + "x-ms-request-id": [ "67cdd3e8-9a41-4b89-9c2f-202192bf7133" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ea7f10b-e6d6-4223-85de-bfd9fc27d107" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e9acfe4-d25b-4721-b86c-a7afad8f5a22" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c88fca40-4712-4814-aebc-8a05379dbc81" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121651Z:c88fca40-4712-4814-aebc-8a05379dbc81" ], + "x-ms-correlation-request-id": [ "c13511ee-0692-44bc-a6cd-d7eb0702eb27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022033Z:c13511ee-0692-44bc-a6cd-d7eb0702eb27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB5E3EEEFBC743DDA2D5BA8610F68413 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:50Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75654B41027D4B94B088BF61987CC681 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1500,15 +1500,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "943" ], - "x-ms-client-request-id": [ "b8dadd64-b5ec-4557-a95e-2db23327b89b" ], + "x-ms-unique-id": [ "1084" ], + "x-ms-client-request-id": [ "086d8148-ee25-4ab4-be87-aeb8c795f13f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1523,38 +1523,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE39B7FDC0\"" ], + "ETag": [ "\"1DC550D416C6EB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6a9a0cb-e6a8-4c88-bb79-8a167d970753" ], + "x-ms-request-id": [ "c9052022-5394-41a4-b896-6220f560d631" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c2c4a59-e22d-4604-8030-4ce8c50d575b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121651Z:2c2c4a59-e22d-4604-8030-4ce8c50d575b" ], + "x-ms-correlation-request-id": [ "5f719f1f-44df-444c-a7ac-aa3bd8dab8eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022033Z:5f719f1f-44df-444c-a7ac-aa3bd8dab8eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E44AFBC33B24A6CA6AE6276EA863DC9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:51Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C7DB54B6B3048EAA5F217FCD40558BF Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:33Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:51.1\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:33.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "944" ], - "x-ms-client-request-id": [ "d68d6a7b-9416-4d9a-8f9f-d478b38341c4" ], + "x-ms-unique-id": [ "1085" ], + "x-ms-client-request-id": [ "99be82c2-a361-4000-b02a-058edd2e0366" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1570,36 +1570,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d86a160a-e48a-42a6-9fda-6e812744abce" ], + "x-ms-request-id": [ "01b352b4-c47a-4e72-9922-0ca9d84ed72f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75592d73-1b43-49b3-90ba-8124236e3154" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/239e21c3-3917-483a-854c-084e0bdecadc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "66aa4313-3841-4bd3-8c04-b8aad04a2d29" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121651Z:66aa4313-3841-4bd3-8c04-b8aad04a2d29" ], + "x-ms-correlation-request-id": [ "8a708709-5021-468a-b575-2b2c79692020" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:8a708709-5021-468a-b575-2b2c79692020" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A005BF72D96447DE87AF824AE4A806CC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:51Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 05B868C719724B7682CEB46C4177111B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "945" ], - "x-ms-client-request-id": [ "ab6d6fc6-5ae8-485d-abfa-93bfa28a52c3" ], + "x-ms-unique-id": [ "1086" ], + "x-ms-client-request-id": [ "b958983a-7556-41b9-83f5-71935959300b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1615,37 +1615,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "54124f0d-9699-40f8-85cb-be93c7e5e0ff" ], + "x-ms-request-id": [ "75583bee-597e-411e-a493-b07caf8b0a14" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e9a3e99-6ed5-450a-bd4b-827b442a671d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab30b77e-6567-4beb-8ce9-475d6998d0e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "d00a25f8-1bbe-45cd-a631-d020ad9e8d79" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:d00a25f8-1bbe-45cd-a631-d020ad9e8d79" ], + "x-ms-correlation-request-id": [ "4fdce724-72a8-49d3-9f2b-e9d289a4fd8f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:4fdce724-72a8-49d3-9f2b-e9d289a4fd8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 498E6474B6924ACBA77B17B9DA5D8F09 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:51Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A8FCDD0F85D4D93A2FC97734480117D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "946" ], - "x-ms-client-request-id": [ "a72d0bc3-e61e-434e-90c5-7f6a4d9ac5a1" ], + "x-ms-unique-id": [ "1087" ], + "x-ms-client-request-id": [ "c0ae69a9-28ff-41f3-9276-21d5caabd025" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1661,18 +1661,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67408a2b-fc16-4998-93a0-ffd85e72c3c2" ], + "x-ms-request-id": [ "ca14a11c-c3fd-4c5f-a91d-dc49fc8cea08" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/facc7d3b-9252-4bcb-98e2-e8a312bcf1e9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "9ab523bd-4678-4570-83e2-476b168c7afd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:9ab523bd-4678-4570-83e2-476b168c7afd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94f0e40b-d15a-42d5-be1e-c8b2f3938caf" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "abeb8aaf-41fc-4f87-9aea-ca23e55a22b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:abeb8aaf-41fc-4f87-9aea-ca23e55a22b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E31E0E9EAE914AD78298661E8FEC0F79 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:52Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 096756CB8B9F493F9458895095A02CBE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1682,15 +1682,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "947" ], - "x-ms-client-request-id": [ "de87e5b0-5f81-4438-aed6-1599b6cb1016" ], + "x-ms-unique-id": [ "1088" ], + "x-ms-client-request-id": [ "ddc3c2e0-5255-4df1-995e-33ebddabca6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1705,38 +1705,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3A7CD460\"" ], + "ETag": [ "\"1DC550D422389B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41df5134-ded9-4758-b5ea-ecb57db00f3f" ], + "x-ms-request-id": [ "c9f09760-4969-4868-84ea-e512351142cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62b73d81-8e51-47da-b9f7-a541562574c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:62b73d81-8e51-47da-b9f7-a541562574c7" ], + "x-ms-correlation-request-id": [ "ba0ed117-5410-474c-985a-aec9a8add3bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:ba0ed117-5410-474c-985a-aec9a8add3bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C85C5BC5E66049A7AC66B8F4A31A36F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:52Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 894DD7BE141449B48511AC760743F269 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8745" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:52.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\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:34.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "948" ], - "x-ms-client-request-id": [ "bd5d3150-7aae-43bc-be20-7047d254b4f4" ], + "x-ms-unique-id": [ "1089" ], + "x-ms-client-request-id": [ "526c4568-3303-468d-9722-b54e6222e2aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1752,36 +1752,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d84ffc6e-bed9-4158-83de-1021bfb8c921" ], + "x-ms-request-id": [ "b04674a3-8806-47bb-b0ae-61105fcf438b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/051350ad-0c62-4c13-a8ff-a8777952a845" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8b07494f-b923-4a0e-9938-5576be9ba737" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121652Z:8b07494f-b923-4a0e-9938-5576be9ba737" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d515c68e-6a64-4783-9bd0-bc282309ed98" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "2e59d0e1-6743-49c9-b9ce-2c209d70a557" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022035Z:2e59d0e1-6743-49c9-b9ce-2c209d70a557" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBB7926E0B6C4EEAA14F33DA84CB95CB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:52Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 177A3D12CAB3443D9769CAA6337B23C3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "949" ], - "x-ms-client-request-id": [ "c420f1d2-7ffc-4f93-9bf6-2bbc02b726e3" ], + "x-ms-unique-id": [ "1090" ], + "x-ms-client-request-id": [ "92fde5c4-4588-4680-b16d-bf2415d278b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1797,37 +1797,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a753b61d-a72f-4899-a574-28c3e29fa5c5" ], + "x-ms-request-id": [ "f8a41d61-be78-4e33-857d-5398edd2c7d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c835e04-b4c1-49e3-94e1-84fcfde10efb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "3eef3a83-6108-4886-8ffa-a53b88a7f608" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121653Z:3eef3a83-6108-4886-8ffa-a53b88a7f608" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d052cb45-c031-4152-bfd4-d07bb530dabe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a39c115c-214f-435e-87b4-3214d2abdcf0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022035Z:a39c115c-214f-435e-87b4-3214d2abdcf0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3B358F88A304412B7CFC500CCEC636F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C1AE0AAF3074268B8CA1EF00584B62D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "950" ], - "x-ms-client-request-id": [ "e436b4af-bb39-4ff8-a1f0-a858cfb37185" ], + "x-ms-unique-id": [ "1091" ], + "x-ms-client-request-id": [ "f1d46477-f72e-4f60-943f-6bff18cce1f9" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1843,18 +1843,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95b90cb3-1745-42e4-8aef-cf5d5296a50c" ], + "x-ms-request-id": [ "5043b41b-3a7e-4853-8b2a-18cc0c18f5ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9682e57e-5987-4e55-aeed-a82ed07e02e3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "797" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11997" ], - "x-ms-correlation-request-id": [ "1e1a1299-836c-41b2-b4c8-35ced83251f4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121653Z:1e1a1299-836c-41b2-b4c8-35ced83251f4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a44d10a0-3a06-42b6-9cfd-a627231e6408" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a1d3daa1-3980-4058-9f82-80e40fc40a01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022035Z:a1d3daa1-3980-4058-9f82-80e40fc40a01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBA5482A2F6D49E6B3449777F2C127D6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 492862BB668640F0B4FB195DE2CFA76A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1864,15 +1864,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "951" ], - "x-ms-client-request-id": [ "1189a57a-dec6-4169-aba3-f7a271cc21c0" ], + "x-ms-unique-id": [ "1092" ], + "x-ms-client-request-id": [ "f6cd1ae5-7df4-431b-9867-b2ac76df624f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1887,38 +1887,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3B18FA55\"" ], + "ETag": [ "\"1DC550D42D1FF2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "881b3aa3-23e6-48d5-8ec6-2d1ea6b5b8b4" ], + "x-ms-request-id": [ "db1445dc-132d-4f3f-ac73-4df5d81a7451" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "83e51d83-ee0f-445b-8ba1-7c092c04372c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121653Z:83e51d83-ee0f-445b-8ba1-7c092c04372c" ], + "x-ms-correlation-request-id": [ "e8583c1a-a6a8-4234-a329-b84054c20071" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:e8583c1a-a6a8-4234-a329-b84054c20071" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B27F176EC84745CD954E0B6947AB85DC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BB77E2380CD45B3A9004A255D4C24B3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8750" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:53.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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:35.8266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "952" ], - "x-ms-client-request-id": [ "f5eb9dc8-fa4b-4419-bfcc-43be37a8f85b" ], + "x-ms-unique-id": [ "1093" ], + "x-ms-client-request-id": [ "03f9470f-8531-4649-8a75-9b827ac4d316" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1934,36 +1934,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16facee3-d4cb-444f-bcbc-b9c185649aca" ], + "x-ms-request-id": [ "0da05956-f9f6-4c09-8d0c-d183f3443326" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49bfe8be-c89a-46cd-a709-102784df9487" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97383da1-d41d-441f-b4f6-d7e64bc765f7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d08c2eb4-b9a7-48b2-9afd-f74a05d4d513" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:d08c2eb4-b9a7-48b2-9afd-f74a05d4d513" ], + "x-ms-correlation-request-id": [ "73e9e6b1-2bef-451f-a9f4-4a4029bf4d35" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:73e9e6b1-2bef-451f-a9f4-4a4029bf4d35" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 25B2861BEBAA489A94E5FB2B9749AB16 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:53Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA8C1D41F3BF44C2BFFF4D861C6CE20D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "953" ], - "x-ms-client-request-id": [ "388834b9-9c48-42d2-aa73-637f6fcae1c3" ], + "x-ms-unique-id": [ "1094" ], + "x-ms-client-request-id": [ "aec31d6b-53a0-4452-9ff5-d3f0612bc360" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1979,37 +1979,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "920a9a77-0940-438a-9a17-5ed1a774776d" ], + "x-ms-request-id": [ "ab2d4887-bf31-47d5-aeae-3eaf052d39e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63a65686-45d7-4484-92e8-c266a8ff380f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bfcd5e84-9783-4a6e-9d12-8df1628e8851" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:bfcd5e84-9783-4a6e-9d12-8df1628e8851" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8e23778-5713-4092-b243-4b105f101644" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0769794d-efa2-4d34-a4d0-78f6ec546ede" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:0769794d-efa2-4d34-a4d0-78f6ec546ede" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAEEC5850C1040D09EB3900C0FEE6EBE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54E4FD38C8DA4707BDE7743EB2C6E152 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "954" ], - "x-ms-client-request-id": [ "6546c111-7cdf-4a89-a508-ddece59c08a3" ], + "x-ms-unique-id": [ "1095" ], + "x-ms-client-request-id": [ "816b6fd3-6a55-4024-83b4-8d8b9c54f750" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2025,18 +2025,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac45cb1c-27af-4aad-a3cd-69e49801f308" ], + "x-ms-request-id": [ "b2201b4d-aa20-4416-a7b9-adf51874e084" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/30a9a648-5969-4444-b821-8cd62715691f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "098bf7d9-03ce-47ee-ab71-6ba096033256" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:098bf7d9-03ce-47ee-ab71-6ba096033256" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f51fc7b-a1bd-4baf-9ce4-6c8a91801ab7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "23f52c89-b80b-468d-92d6-eb445228accd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:23f52c89-b80b-468d-92d6-eb445228accd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C937C4B411B4EDBB62E981B6CAD70B7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA7C09881A92435F972FC1E13A6145E6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:36Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2046,15 +2046,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "955" ], - "x-ms-client-request-id": [ "d02f7164-7cf3-483c-b49e-2b96426afb46" ], + "x-ms-unique-id": [ "1096" ], + "x-ms-client-request-id": [ "c01d90a9-8f9c-4eea-b493-79113e2697c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2069,38 +2069,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3BB72920\"" ], + "ETag": [ "\"1DC550D4378514B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b0a7bcd-26de-4bc0-bea1-6db37c98f7c8" ], + "x-ms-request-id": [ "6fd9f94c-95c4-4bda-944a-5e383bee5b85" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2e77f7dc-cd88-4eb2-8cd9-fa5c37147f05" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121654Z:2e77f7dc-cd88-4eb2-8cd9-fa5c37147f05" ], + "x-ms-correlation-request-id": [ "ef9d7e6d-f332-4529-910d-7dc84bc1530c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:ef9d7e6d-f332-4529-910d-7dc84bc1530c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1DFD2647993498C96169FFEE2C7FC44 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C79B477F1A81471BADFA6AA18A925C44 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8745" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:54.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:36.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "956" ], - "x-ms-client-request-id": [ "4cf436ae-258e-426b-b41c-35f7affa336b" ], + "x-ms-unique-id": [ "1097" ], + "x-ms-client-request-id": [ "121a15be-5b5e-4d2c-b4c6-0f5fe32c647b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2116,36 +2116,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07e2e8f5-98ba-43ca-9238-168dc5da9458" ], + "x-ms-request-id": [ "e1701727-20fc-46ae-8e1a-063ada2faacf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/143d5858-dba6-4e17-ba1d-14eff4f5dc90" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fedcfefa-05d4-4de3-b286-c047a82599bd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3adbd507-ecd0-4906-a3fc-426e1e45f9e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:3adbd507-ecd0-4906-a3fc-426e1e45f9e7" ], + "x-ms-correlation-request-id": [ "8385fc1f-5ac0-40af-9a2e-cbcbfd7e4eae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:8385fc1f-5ac0-40af-9a2e-cbcbfd7e4eae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA54F3138B494E60BB3F7F72C95B7D2E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:54Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11CF9FB08E9642639B70386EB704C05A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "957" ], - "x-ms-client-request-id": [ "f4aa41ad-7490-43be-befb-1a78de21f8e5" ], + "x-ms-unique-id": [ "1098" ], + "x-ms-client-request-id": [ "76b07a00-c032-4278-80ce-ddf7726df1d3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2161,37 +2161,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cdf64af-f9f8-41c0-8b74-03e927975096" ], + "x-ms-request-id": [ "e6bbb953-fb8b-40cf-804b-639b101dc290" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5eb7dc2b-b5da-4f9d-8896-551d96d95dfb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ace1f52-ca17-4cc1-a47c-c7888e2f8af5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b819a2e3-ca05-4ca0-bb42-be0a1e584333" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:b819a2e3-ca05-4ca0-bb42-be0a1e584333" ], + "x-ms-correlation-request-id": [ "a0704b2c-69a7-45bb-8bd1-1284442aa19f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:a0704b2c-69a7-45bb-8bd1-1284442aa19f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90C20BCBA4D94C40B3C98BA5C0DC0C89 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CA48109C77142AA8A2C51FF8889ACC5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "958" ], - "x-ms-client-request-id": [ "73b7692b-3319-491c-aeaf-78f83a780c55" ], + "x-ms-unique-id": [ "1099" ], + "x-ms-client-request-id": [ "cc4634e7-99cf-46e8-bcb0-3356b733271c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2206,38 +2206,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE35B490EB\"" ], + "ETag": [ "\"1DC550D3C8D47E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a12bafd2-2e93-410c-8341-ed02068cc41e" ], + "x-ms-request-id": [ "b0a979ae-76c8-40f7-9268-5464533227a3" ], "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": [ "368ebf94-5f39-4e25-82c2-eb540db471c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:368ebf94-5f39-4e25-82c2-eb540db471c7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "22c36c09-c10c-4d41-af74-2f5d163e0454" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:22c36c09-c10c-4d41-af74-2f5d163e0454" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE52BDFCF8E84BFCBA0A568806CAA301 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9507E4CE61D64562808A7CDDDCED8BB4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:44.3666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:25.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "959" ], - "x-ms-client-request-id": [ "4f86f20e-8ee4-417f-a89c-9669b52dfdd4" ], + "x-ms-unique-id": [ "1100" ], + "x-ms-client-request-id": [ "07efd62e-0081-43b8-8bbe-eb5847a0c189" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2253,36 +2253,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b19cf69-29d2-40e2-9bcf-44f3700beb54" ], + "x-ms-request-id": [ "578b7104-96aa-4001-a281-0d81d5feddf2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/460888dc-b688-49a8-96c6-049b5992718d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c419e12-f0d2-4be5-9bd6-37a920c68eda" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "5e7104e4-c46c-4233-832b-a0fc66e84527" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121655Z:5e7104e4-c46c-4233-832b-a0fc66e84527" ], + "x-ms-correlation-request-id": [ "51db17f0-5e6b-4ec4-83d6-c3ad91371b9a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:51db17f0-5e6b-4ec4-83d6-c3ad91371b9a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B45125B48FC43ECA926A1A9FD0B8A51 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32260DB0B1694E2D9F87D7E397B2A8A1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "960" ], - "x-ms-client-request-id": [ "781e8155-1b97-4c20-901c-b0d36a0748df" ], + "x-ms-unique-id": [ "1101" ], + "x-ms-client-request-id": [ "5222e6ce-f7d0-4104-8f85-9fc4e7072291" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2298,37 +2298,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3342e50f-904c-46cf-84fd-c76597a43cbc" ], + "x-ms-request-id": [ "d0645e19-c722-4baa-ac36-8ae5bfbe480c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b11a556d-e091-4c2d-bc20-c685496faffa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/923a228d-8692-40ed-8ee1-c9b3778c180c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a0d669ae-ec30-4ff8-b239-b21926ae0e48" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:a0d669ae-ec30-4ff8-b239-b21926ae0e48" ], + "x-ms-correlation-request-id": [ "69de9ab1-d384-4dea-a766-7d088f9c7c3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:69de9ab1-d384-4dea-a766-7d088f9c7c3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78964DFE371A4AF3901571A497E03AD1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:55Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC5AEF06C3FD4F27B9F1655A3904E70B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "961" ], - "x-ms-client-request-id": [ "f7b09b5c-b0b1-4c54-b8fb-002ad543684d" ], + "x-ms-unique-id": [ "1102" ], + "x-ms-client-request-id": [ "a3769e9b-698e-4d0d-8ad8-de5994b1c7c5" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2344,18 +2344,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2d82f69-b925-4491-b5ba-c7dbbe695f8b" ], + "x-ms-request-id": [ "8d1e4465-eeb2-47b9-990a-8b930e9dc486" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80dd385f-ab6e-4eb2-b72c-851d3ec386d8" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "deef4b8c-28fc-4765-8d2b-5ba33f8afda8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:deef4b8c-28fc-4765-8d2b-5ba33f8afda8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/922ab327-3908-4a8c-857a-fa43dd2778ec" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "b3bbb891-f62e-4fe6-a6cd-1f36b34d1d5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:b3bbb891-f62e-4fe6-a6cd-1f36b34d1d5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1902434893C4E09A6C982541DD15677 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 361BC0ECDD354172AE69151D27408AEB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2365,15 +2365,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "962" ], - "x-ms-client-request-id": [ "32e57663-3b9d-4734-b5c8-be2e844b8b5b" ], + "x-ms-unique-id": [ "1103" ], + "x-ms-client-request-id": [ "d258c601-f7fd-4bd3-a809-278c31eb365e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2388,38 +2388,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3CC94F6B\"" ], + "ETag": [ "\"1DC550D447004C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a274780b-049c-40b7-8b62-9476b9771bcc" ], + "x-ms-request-id": [ "bde6de2a-7f54-479c-9c70-c03a9685e76d" ], "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": [ "d1118aa1-70e6-4487-8050-c736dbaab012" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:d1118aa1-70e6-4487-8050-c736dbaab012" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4ae197ed-02e5-435a-8e01-5b89c08e5ff7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:4ae197ed-02e5-435a-8e01-5b89c08e5ff7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61B07D18D1BD49A2892DE9872185C004 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB180BD614744900B7D04E8F618532FC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:56.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:38.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "963" ], - "x-ms-client-request-id": [ "93efc7e8-f6aa-426a-aa78-8050d2a0baba" ], + "x-ms-unique-id": [ "1104" ], + "x-ms-client-request-id": [ "342fde29-9fa2-469b-a59f-df90b14492a8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2435,36 +2435,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9b82bdf-b911-48fd-ab59-3a6604c2d479" ], + "x-ms-request-id": [ "67f3dfab-7137-47ca-ad7f-04a71bd61a2e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83ae4b5f-164e-4d54-8bc3-4c26d436337f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcb10d69-95d3-4152-9653-a72138c95afe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e8ecae3c-d620-4c68-b11f-a3f05c8a6882" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121656Z:e8ecae3c-d620-4c68-b11f-a3f05c8a6882" ], + "x-ms-correlation-request-id": [ "1139da7f-c888-4333-81fe-c573a4b06482" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:1139da7f-c888-4333-81fe-c573a4b06482" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E99C952875F5498BB804B1A7D048B574 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6ADFED06C4654026B0CA49589C753DF4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "964" ], - "x-ms-client-request-id": [ "94eaaf2c-2e0d-4b51-9498-ac6057863346" ], + "x-ms-unique-id": [ "1105" ], + "x-ms-client-request-id": [ "a31afa9b-0e03-4524-94c4-8406ac21fc04" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2480,37 +2480,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ac5e480-97e8-4590-aa6d-58af6b717fca" ], + "x-ms-request-id": [ "f331537e-cc65-4631-9a4f-07047775116b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2eb32e7d-1bb3-4618-afe5-a4754722a147" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b46f3410-3c2f-4350-8505-dc2262183613" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77d23f77-2984-4bb1-8847-fc230f66f5c9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:77d23f77-2984-4bb1-8847-fc230f66f5c9" ], + "x-ms-correlation-request-id": [ "ad09b4c4-7a34-446b-b23b-92a90f154c8c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:ad09b4c4-7a34-446b-b23b-92a90f154c8c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 748DF7137A014B11BC54F8541FEF8668 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:56Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B986B1E22CC4C55BF7E3B98CEC0C658 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "965" ], - "x-ms-client-request-id": [ "22cf58eb-348c-4fbd-b79d-e4c1420fbb42" ], + "x-ms-unique-id": [ "1106" ], + "x-ms-client-request-id": [ "9757fe2b-033b-476d-850e-cf50ed9d9357" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2525,38 +2525,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3CC94F6B\"" ], + "ETag": [ "\"1DC550D447004C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cbd1568-1581-434f-a639-4f82ac25413d" ], + "x-ms-request-id": [ "4ca4c6d2-3261-45b3-948d-40130c6f402e" ], "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": [ "8dba1ebe-503f-41de-999b-fa9905da701f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:8dba1ebe-503f-41de-999b-fa9905da701f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d8968b60-f449-4f52-84b7-0b78f9b624c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:d8968b60-f449-4f52-84b7-0b78f9b624c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E5EEA73B4064003A9F94A487F74C8C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F90AAC57DBCC41B99D6B465B8A9FEC4F Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:56.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:38.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "966" ], - "x-ms-client-request-id": [ "b751feb0-9424-42a6-81ff-365beb49e8d7" ], + "x-ms-unique-id": [ "1107" ], + "x-ms-client-request-id": [ "9423241e-4077-4772-8ff7-762a83b2a73a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2572,36 +2572,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b9f5a49-6d01-4a0d-a772-4426dba1c565" ], + "x-ms-request-id": [ "3d903a99-e029-46d9-b3c5-213bffbb6fb5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2a293cd8-5abf-417c-8ee5-f0c58cb1e29f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1468f47e-6cb1-4e89-ba96-f7f5487f8754" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0208d612-309f-4cfb-93c7-96856091fb81" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:0208d612-309f-4cfb-93c7-96856091fb81" ], + "x-ms-correlation-request-id": [ "714cc3df-ac54-46ae-95ad-167b93803b1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:714cc3df-ac54-46ae-95ad-167b93803b1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86C63C2699F04448A7A326744B754EFD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 446ECD377A304D9EADAEB20D8464647C Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "967" ], - "x-ms-client-request-id": [ "5022ee22-b773-468d-ac5a-fa468d781da2" ], + "x-ms-unique-id": [ "1108" ], + "x-ms-client-request-id": [ "21b7516b-66ef-4582-ab4f-46cd63b1290e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2617,37 +2617,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62a4f25c-ccfb-4b49-a255-c4fa9feef047" ], + "x-ms-request-id": [ "69d2483f-6b86-4ef4-85d2-0873a28034bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec476f2b-a68e-4baf-b4c7-610f69146015" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3491acd-136e-4c51-9349-d30df20a4ff5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "37b711bf-19e4-4cd1-8545-edc22b9d491b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121657Z:37b711bf-19e4-4cd1-8545-edc22b9d491b" ], + "x-ms-correlation-request-id": [ "61f10f41-bcb2-4418-a8f3-8b82ad76f273" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:61f10f41-bcb2-4418-a8f3-8b82ad76f273" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3319E4CAE5764CC095F84E2818E82BF7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C23067765104E3A9E93A7C67CD12117 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "968" ], - "x-ms-client-request-id": [ "e651c779-140d-4917-a4ff-94daf35aff92" ], + "x-ms-unique-id": [ "1109" ], + "x-ms-client-request-id": [ "df83ca14-812e-418b-8968-ddd7e41e75e4" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2663,18 +2663,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2219c6ce-f2e9-4b34-8c29-f2a55af597c0" ], + "x-ms-request-id": [ "66e291c6-be1d-48e7-9544-1ae2ad4c9bba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a81fffed-47e1-473f-b21c-1a404576f5ce" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/459d8da8-1e05-47e2-8578-5f55ee870f5c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d49ce5e8-1859-4a61-a2f0-330f4e30141e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:d49ce5e8-1859-4a61-a2f0-330f4e30141e" ], + "x-ms-correlation-request-id": [ "c398e99e-8980-4558-bee5-ae32429c31c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:c398e99e-8980-4558-bee5-ae32429c31c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70BE1D24E0964BEDB1F39C9B34F90A0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:57Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11892CDA481F4631A4AE8E7DFAE7CF2D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2684,15 +2684,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "969" ], - "x-ms-client-request-id": [ "0c9cae01-be66-4b3a-9df1-e53a45397ba5" ], + "x-ms-unique-id": [ "1110" ], + "x-ms-client-request-id": [ "055b554a-f825-4ff4-ba7e-b070af87a177" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2707,38 +2707,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3DE8AF20\"" ], + "ETag": [ "\"1DC550D4585BA80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4a6c979-5c7c-4b0c-b223-f91aea30304d" ], + "x-ms-request-id": [ "f8527017-2732-44dc-8148-121031e4510d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b83679cb-4807-4ac8-a9d9-7d1f5cdffc21" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:b83679cb-4807-4ac8-a9d9-7d1f5cdffc21" ], + "x-ms-correlation-request-id": [ "692ef1d6-8446-4aef-a3b9-4413dd1930b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:692ef1d6-8446-4aef-a3b9-4413dd1930b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3A5D58A119A460BA4FA75F0ECE8B4B9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:58Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E4FBF49EFAE423EACDA594DAD8BCF54 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8413" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:58.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:40.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "970" ], - "x-ms-client-request-id": [ "6a22554b-b92d-40ba-8ffc-55dd299a099b" ], + "x-ms-unique-id": [ "1111" ], + "x-ms-client-request-id": [ "f77929e4-3f98-4d4a-b3ff-8bda5218674b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2754,36 +2754,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "427f8107-5330-4f17-8129-7faafe2d63d2" ], + "x-ms-request-id": [ "db37033c-8095-441a-85d8-ee619459dedd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11e22391-3f2b-4c15-9a44-e30f5b00bef4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "812ce47c-3e88-469a-bbb5-51223f780c3d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:812ce47c-3e88-469a-bbb5-51223f780c3d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/31c23dba-33b0-49ca-9545-6f3b9a57bd42" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c5056abb-0c9e-4ca4-aca9-4da4d2f6919c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:c5056abb-0c9e-4ca4-aca9-4da4d2f6919c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58036E797BA84E2A901A49263CFAB1C4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:58Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88E073372F9746098C1F9B1F9F706AC2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:40Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "971" ], - "x-ms-client-request-id": [ "01a2b29e-48b3-4f86-a401-563a396d594e" ], + "x-ms-unique-id": [ "1112" ], + "x-ms-client-request-id": [ "ac6fa97e-828a-41e2-9f76-03d6a95bb5eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2799,37 +2799,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7976d0f1-e396-4f40-87fb-dc9954c2958a" ], + "x-ms-request-id": [ "891334db-cdc0-4f65-998e-b2d40f1c3c55" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e0bfa41-ed30-440b-b19e-42db17e27dc1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "5973c5e7-e8d1-4a38-8691-b78661d0be06" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121658Z:5973c5e7-e8d1-4a38-8691-b78661d0be06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff102d24-d987-4ba8-981a-4ffe23f8a8c7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "890a1840-148a-4209-8c53-2ef3f909e381" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:890a1840-148a-4209-8c53-2ef3f909e381" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBECFEE192AF4D3390BAA22E51BA0A0A Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:58Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 159E9B305E5B498B998667AA0F869232 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "972" ], - "x-ms-client-request-id": [ "46bd3aec-8faa-45ee-bf81-d11706f9ed94" ], + "x-ms-unique-id": [ "1113" ], + "x-ms-client-request-id": [ "ece4d030-13a7-4409-8bdd-5cabd34dd1fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2844,38 +2844,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3DE8AF20\"" ], + "ETag": [ "\"1DC550D4585BA80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8496dc80-d94f-497f-9d53-3f62ee1537bb" ], + "x-ms-request-id": [ "44a2db2d-5676-4b18-9a4e-7ce97f6eab94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d0b71b4f-b13d-4ff5-abdb-694ff0547417" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121659Z:d0b71b4f-b13d-4ff5-abdb-694ff0547417" ], + "x-ms-correlation-request-id": [ "9584e938-75cf-4a5e-9290-93c70798e8e3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:9584e938-75cf-4a5e-9290-93c70798e8e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B02C6D7ED21543E682B78C3F801DB216 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0B7A245D58241BCB9FD6F6759E233F3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8413" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:58.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:40.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "973" ], - "x-ms-client-request-id": [ "a986c4ec-713c-4a30-8678-756634439a7d" ], + "x-ms-unique-id": [ "1114" ], + "x-ms-client-request-id": [ "6ea25f26-2919-4ef4-9bb6-a27e8ff91efb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2891,36 +2891,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4438690-025c-4774-9aa6-2c9e3740953c" ], + "x-ms-request-id": [ "6307def5-b9a0-46a0-add7-701adafe17f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/68651ecf-665c-4ef4-90ba-bb20067a499e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "93e2ed9c-1643-4ef2-8c59-9dbc575e66a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121659Z:93e2ed9c-1643-4ef2-8c59-9dbc575e66a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d785ee88-1386-486a-a5a9-98f97abf6ef5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2fd17d6b-177a-4f39-be3e-e55369ad9a3e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:2fd17d6b-177a-4f39-be3e-e55369ad9a3e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 973A0A0F81204ABBA3C7062FC45A48C6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F79B768067744904840516B5F54B4CCD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "974" ], - "x-ms-client-request-id": [ "981356ef-86d1-43fd-948f-a0b838281926" ], + "x-ms-unique-id": [ "1115" ], + "x-ms-client-request-id": [ "657d7d60-6a58-4576-9570-4aab0dfaa648" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2936,37 +2936,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9634a95-da01-4836-a5fe-56fba7e19448" ], + "x-ms-request-id": [ "77d77e82-6d14-454f-81d2-53bbea07ccc3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c00fe373-376b-474e-9982-4bcd3ff4ce60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f53488de-fb74-4aa2-9245-af40927874e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c5d94e4a-a14c-4044-ba11-26496f2dbba3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121659Z:c5d94e4a-a14c-4044-ba11-26496f2dbba3" ], + "x-ms-correlation-request-id": [ "621f1f41-81f7-44e4-8cdd-aa862331fba9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:621f1f41-81f7-44e4-8cdd-aa862331fba9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12081E6C63CA48C5B8B24F21B770CE55 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C2305B285227453FB968B8FCFA4E331B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "975" ], - "x-ms-client-request-id": [ "fd760069-4b32-4aa1-a22b-fcbaef20670c" ], + "x-ms-unique-id": [ "1116" ], + "x-ms-client-request-id": [ "cabaeea6-b069-4f09-b6a0-d3c2cfdd432a" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2982,18 +2982,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5fa3a6e-5c4c-477b-a259-3d027ed9f9b9" ], + "x-ms-request-id": [ "2b10c66d-7f3f-4fa2-a0eb-b81e48e2adb5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e2e8a8d-46d9-4fef-8c75-84c6e3af50f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/276ac726-02e9-4928-8e54-2191f392c298" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "bfa4e786-416e-4918-ae83-de7a40c5f9af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:bfa4e786-416e-4918-ae83-de7a40c5f9af" ], + "x-ms-correlation-request-id": [ "93f8770c-7c3b-4ece-844e-bd5495cec52e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022042Z:93f8770c-7c3b-4ece-844e-bd5495cec52e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 84CE0F9BF6AF4117894A1C8E3FB12D86 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:16:59Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58281C7041704A96866CE4D839659C14 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3003,15 +3003,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "976" ], - "x-ms-client-request-id": [ "2f8a888c-58e5-4fc4-8bae-604b6cf9695d" ], + "x-ms-unique-id": [ "1117" ], + "x-ms-client-request-id": [ "1c27ff34-6f23-4bff-8b1d-4d4286a80c63" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3026,38 +3026,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3F006DB5\"" ], + "ETag": [ "\"1DC550D469B7040\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9a4c760-856a-4505-8070-a909274e34c6" ], + "x-ms-request-id": [ "59dfee9a-ced7-40df-aedd-235be476bbb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d5742f8e-884f-4641-808f-2556c7c0d3f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:d5742f8e-884f-4641-808f-2556c7c0d3f1" ], + "x-ms-correlation-request-id": [ "ab9141f6-b1d2-44e9-9291-4caf667a4630" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022042Z:ab9141f6-b1d2-44e9-9291-4caf667a4630" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 605963234C4344D69AD7885E869DC878 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4A15198643D41EDB7E1381C512CA862 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8406" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-du1wbt\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-lf9t8w-CentralUSwebspace/sites/Functions-PowerShell-74-du1wbt\",\"repositorySiteName\":\"Functions-PowerShell-74-du1wbt\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-du1wbt.azurewebsites.net\",\"functions-powershell-74-du1wbt.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du1wbt.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-du1wbt.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-pe9wcd\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:59.9633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du1wbt\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-du1wbt\\\\$Functions-PowerShell-74-du1wbt\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-lf9t8w\",\"defaultHostName\":\"functions-powershell-74-du1wbt.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:42.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\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-du1wbt\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "977" ], - "x-ms-client-request-id": [ "63338e1b-a639-419b-b8a3-a5811ac23ab6" ], + "x-ms-unique-id": [ "1118" ], + "x-ms-client-request-id": [ "e0dd15e8-d4dd-4619-8b14-3106fe7a1902" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3073,36 +3073,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66bbc583-70f4-4848-9434-0ad2a0ff9c17" ], + "x-ms-request-id": [ "3710299a-b624-4ce3-bad4-7d490c6ef2c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a2fa07b-9b0c-49ee-a79b-431d979a0a56" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50fb3e93-8ed9-47dc-b3a9-1db538ce1e3c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c54fd709-8835-4ca9-9b2e-e95353be67c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:c54fd709-8835-4ca9-9b2e-e95353be67c7" ], + "x-ms-correlation-request-id": [ "e0e8d222-b3ca-4d1f-a548-0759707abcb0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022042Z:e0e8d222-b3ca-4d1f-a548-0759707abcb0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A80E228EA29F4C0AB3455747683E4FA1 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9575D3206A94AEC815E32880EBA5EF1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:42Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-du1wbt\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=81a4af07-3a28-45a4-9de3-dd42f3385a36;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4a4e9fad-07ee-475e-930e-550a8185b341\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-du1wbt\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "978" ], - "x-ms-client-request-id": [ "dfbc3489-479e-44de-aa8c-675ecb96a5ea" ], + "x-ms-unique-id": [ "1119" ], + "x-ms-client-request-id": [ "5cd4731c-6837-4b29-b2df-c4953d0117c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3118,37 +3118,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6ff4938-488f-4784-9a5e-490657fa350b" ], + "x-ms-request-id": [ "60d3c3a3-c9a6-4409-b5e9-68e240529d64" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/034205d4-73fc-4774-8c71-9625b698540c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "b5714e7b-6858-400f-9691-16c3546b577a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121700Z:b5714e7b-6858-400f-9691-16c3546b577a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51e397b4-cffb-495a-b051-acd1f9a1c7c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aea68461-b25a-45cf-b20f-4848f13c5738" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022043Z:aea68461-b25a-45cf-b20f-4848f13c5738" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 002E59DB15C64FD59FEC36FDA22985FD Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74275FE464F5454985A67F96E10E1850 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.Web/sites/Functions-PowerShell-74-du1wbt/config/web\",\"name\":\"Functions-PowerShell-74-du1wbt\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "979" ], - "x-ms-client-request-id": [ "8b9c48a3-8069-4dd9-ae4d-cae936be34dd" ], + "x-ms-unique-id": [ "1120" ], + "x-ms-client-request-id": [ "5766e7be-78af-4a95-95cb-ebbcbb2606ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3163,38 +3163,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE37C68E00\"" ], + "ETag": [ "\"1DC550D3F2DAF4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "462be163-22e7-496f-89c0-c9645d6f0b3d" ], + "x-ms-request-id": [ "9be8ef12-8987-410c-a469-070024696b04" ], "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": [ "958ca3f0-f655-4ccc-8118-ea8366fb88b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121701Z:958ca3f0-f655-4ccc-8118-ea8366fb88b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dfaa8826-ce86-4515-ada1-c846431075a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022043Z:dfaa8826-ce86-4515-ada1-c846431075a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0465A2246F1406C9B1E1A9731D3E232 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:00Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB2F8DE8E0254E87A940E12E47218C8F Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8317" ], + "Content-Length": [ "8326" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "980" ], - "x-ms-client-request-id": [ "314b0ee1-0f39-4f24-87a7-a5f9ff6a2b42" ], + "x-ms-unique-id": [ "1121" ], + "x-ms-client-request-id": [ "7c288b15-3913-4c4a-bda9-54a46cf56049" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3210,36 +3210,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3126686f-7265-4661-b146-d3b8a3fce79b" ], + "x-ms-request-id": [ "30c15f29-3e91-4387-b13f-cc8300d53537" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f0884a9-d433-47a3-8dad-515ee4b4d1c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dfe9e1ea-6c12-43f6-b732-b119763636f7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ec31e80b-00cd-4e58-8775-fe25ffab6b7f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121701Z:ec31e80b-00cd-4e58-8775-fe25ffab6b7f" ], + "x-ms-correlation-request-id": [ "107ef5dc-0f8a-463d-a7c6-159c24a0554c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022043Z:107ef5dc-0f8a-463d-a7c6-159c24a0554c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7BA2381FB4704931AE152A58E83FC540 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1EFF42AC4E024687AFEB579C42E84209 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "981" ], - "x-ms-client-request-id": [ "b5344c4b-ee5a-4739-8122-fae16f6ee900" ], + "x-ms-unique-id": [ "1122" ], + "x-ms-client-request-id": [ "5807b095-fc2d-43ef-b1ba-3da27c4835dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3255,37 +3255,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8c4013c-f31c-4bd2-9757-8df2971a7d5d" ], + "x-ms-request-id": [ "de15f159-f6a3-43e7-87b8-851a82064b5a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aaffe27d-3bbb-4816-a5c4-bd99a5570439" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a8b203a4-6170-4486-a670-f9cdaf7efa4f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a2a3585-9790-4389-b7a0-64dcdf9267db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121701Z:8a2a3585-9790-4389-b7a0-64dcdf9267db" ], + "x-ms-correlation-request-id": [ "6f0ca719-aefc-46b1-aac1-e9788226ad21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:6f0ca719-aefc-46b1-aac1-e9788226ad21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF8FB24483F74B4690412A57F6B820F3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 049D185DE2E348BFBCB9C1E915F83AC3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "982" ], - "x-ms-client-request-id": [ "900e6e4e-9fe8-4792-83bb-a5aef815285e" ], + "x-ms-unique-id": [ "1123" ], + "x-ms-client-request-id": [ "96af8653-a795-4787-9989-1c2c586470ca" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3301,18 +3301,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8339cabb-c806-4197-b971-a7731586b12e" ], + "x-ms-request-id": [ "f74a713f-e372-410a-9126-ffb6f0099f9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf6216df-1643-4202-8152-02f662a7d547" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52a9bbbc-1cdd-479f-8430-a1e5386b2ff7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "47e0b3f6-2a90-4841-acbe-472a6b670e64" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:47e0b3f6-2a90-4841-acbe-472a6b670e64" ], + "x-ms-correlation-request-id": [ "3ef4a4b3-7887-46b1-8811-f1d521691fed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:3ef4a4b3-7887-46b1-8811-f1d521691fed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8969E915C0364B11882ED096272AD4C0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:01Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 290046FC06274BDC86EF43977EB1AE92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3322,15 +3322,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "983" ], - "x-ms-client-request-id": [ "af8b3c1f-b2fb-4e52-a0b1-a18ba243bf05" ], + "x-ms-unique-id": [ "1124" ], + "x-ms-client-request-id": [ "f4a482d1-1994-4ec6-ba17-e5ac740a4dd4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3345,38 +3345,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE37C68E00\"" ], + "ETag": [ "\"1DC550D3F2DAF4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5fa48b4-fc98-4f95-9add-6ab3e4c19b4e" ], + "x-ms-request-id": [ "0bfa6d9d-83d7-4098-8741-9ba425eab60b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aec95036-b9cf-4cef-9165-bb729d3baa86" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:aec95036-b9cf-4cef-9165-bb729d3baa86" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0368c08f-0e07-43b8-a416-5cfb7129179b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:0368c08f-0e07-43b8-a416-5cfb7129179b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC6F93B1AC6340FFB18B5F1794ACA687 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDF82C7A41234CBB825A7F12D8CA3C74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8317" ], + "Content-Length": [ "8326" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "984" ], - "x-ms-client-request-id": [ "3b8cbbb0-0e28-4dfb-8b7f-bc0371f337cc" ], + "x-ms-unique-id": [ "1125" ], + "x-ms-client-request-id": [ "1dd75603-579d-4845-a507-41836f32a4bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3392,36 +3392,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57dc7e6a-d00c-4a4a-9184-ee113270c3fc" ], + "x-ms-request-id": [ "bf8a97c2-2eab-4f44-8687-fe33fd5b07d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9127c811-133b-4cc7-b19a-271f0992b37e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cbb251c-74db-4b8c-8edf-7356075fff2e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "70b77f49-3f8d-4348-aca2-dd8a123cc4f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:70b77f49-3f8d-4348-aca2-dd8a123cc4f1" ], + "x-ms-correlation-request-id": [ "2330a84d-0df0-45c9-9147-da8c1fc7e952" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:2330a84d-0df0-45c9-9147-da8c1fc7e952" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFD4046136484233A62E865ADFDDC8C8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 641EDC549C514B70AB5D1EE98BEEDC4B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "985" ], - "x-ms-client-request-id": [ "66337d16-a870-4fef-9bae-759d5a7ead10" ], + "x-ms-unique-id": [ "1126" ], + "x-ms-client-request-id": [ "b1b06a26-7a3f-40f0-a830-5502d046703c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3437,37 +3437,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf70345a-a3a8-49fe-9d8b-60a928a48e88" ], + "x-ms-request-id": [ "1a041648-a9a1-4641-9ccf-5d562f6d3165" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f300f199-5c41-4f69-ba3a-a4cc578bbfe5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47014876-424e-4c58-9e43-9d741e71c4f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "85bddadf-51c4-4a22-9086-1f284c2bbbd6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121702Z:85bddadf-51c4-4a22-9086-1f284c2bbbd6" ], + "x-ms-correlation-request-id": [ "69c6b656-35d0-4f8a-81ba-661d214e99e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:69c6b656-35d0-4f8a-81ba-661d214e99e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7334E4F144654C3194B6A7FDB77F8AE4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42A92BA23FEA42DE91CCFA412EB29682 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "986" ], - "x-ms-client-request-id": [ "5f6dcb22-0902-402b-866d-66be22f9c718" ], + "x-ms-unique-id": [ "1127" ], + "x-ms-client-request-id": [ "5a08de10-fa2f-4bd5-81aa-b5a0bc417197" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3482,38 +3482,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE37C68E00\"" ], + "ETag": [ "\"1DC550D3F2DAF4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5b3aa30-5d64-4bee-95cb-8afe614c2c87" ], + "x-ms-request-id": [ "948faa32-b016-4a81-8248-2bd5184d9785" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "39d9cbaf-271e-42f6-804f-58089ce050ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121703Z:39d9cbaf-271e-42f6-804f-58089ce050ee" ], + "x-ms-correlation-request-id": [ "911b5e32-2693-4c92-8dde-89dedf8a71bc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:911b5e32-2693-4c92-8dde-89dedf8a71bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE8D0777DD864D539EBE2CD95A680188 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:02Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9240C19DA1CF410499B372401054AF68 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8317" ], + "Content-Length": [ "8326" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:47.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\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "987" ], - "x-ms-client-request-id": [ "f242011d-23f9-4089-afd9-3223ab77bbee" ], + "x-ms-unique-id": [ "1128" ], + "x-ms-client-request-id": [ "4f868edb-f2e6-4957-907b-1e7a6416cf12" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3529,36 +3529,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "926ed73e-3704-4baf-a6fa-f3edb4a9dfd0" ], + "x-ms-request-id": [ "0c1c96e3-6b22-4cc3-9b5d-759a0142fdf5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf0630bb-c0c8-44e5-b0ef-97bf60ab7a58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b04a490-d94f-4d96-8ace-1c88747c7ae7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f4e867a6-5ae9-48e3-aff9-ade58bd70f66" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121703Z:f4e867a6-5ae9-48e3-aff9-ade58bd70f66" ], + "x-ms-correlation-request-id": [ "acbe6555-7896-4d7c-bb43-e3aa210f3279" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:acbe6555-7896-4d7c-bb43-e3aa210f3279" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC2ED085EB6341979A6AC1E8BFAF58EE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DF49326EE6D4C2B9B7B863054B86E27 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "988" ], - "x-ms-client-request-id": [ "20a18ff5-c079-4f03-9c3d-c2ed38819604" ], + "x-ms-unique-id": [ "1129" ], + "x-ms-client-request-id": [ "95170122-2125-4baf-8d36-b187eb4cb0a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3574,37 +3574,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11894de8-e6c5-4b9f-bfa6-caa112e2e150" ], + "x-ms-request-id": [ "742e0894-4bd6-4552-a4d2-08d3a48daddb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d7eaa32-11e5-4458-9fac-293a11c91964" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "58d9f818-1727-4102-98b9-4a4f7b0c3167" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121703Z:58d9f818-1727-4102-98b9-4a4f7b0c3167" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e963ba92-02cd-4661-8034-e6bc253f52f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4e95e263-01a6-4b89-a41d-d06b80079994" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:4e95e263-01a6-4b89-a41d-d06b80079994" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FAE4E9EA3CFA424D920B2B3C5721F6A5 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 489B771F195C4B17B788E78F08E322A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "989" ], - "x-ms-client-request-id": [ "7571c3c7-390c-4ba6-952c-f9f7fd96a91e" ], + "x-ms-unique-id": [ "1130" ], + "x-ms-client-request-id": [ "bcceb03e-1da3-4bb9-aa06-4a7d7c4aaea5" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3620,18 +3620,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f185c541-826f-4700-ae93-285c09dcaa52" ], + "x-ms-request-id": [ "23b30b38-3fb8-4cb1-91de-980fa0b480a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/209f5dca-8b79-46a4-9249-bb4d3f1790d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ff2ffbc-f5a2-4225-9aa0-4d21e857687f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4c7654d3-ebf0-4b9f-aa48-5228bf76288c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121704Z:4c7654d3-ebf0-4b9f-aa48-5228bf76288c" ], + "x-ms-correlation-request-id": [ "1134707e-39b4-488a-8039-d6e5f7a8322c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022046Z:1134707e-39b4-488a-8039-d6e5f7a8322c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 702C93B8B4F44167BCED0FCA2B3159C9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:03Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D4366D988BB4F389FF3ECDD66335341 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3641,15 +3641,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "990" ], - "x-ms-client-request-id": [ "16ecdd98-9169-4a2b-9ce1-028bd9f802df" ], + "x-ms-unique-id": [ "1131" ], + "x-ms-client-request-id": [ "b0b678ef-beea-474a-ba6c-c56427a8d7f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3664,38 +3664,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE41993400\"" ], + "ETag": [ "\"1DC550D48F62920\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "588637ca-dccd-45c9-b888-1459ada28929" ], + "x-ms-request-id": [ "aa7543ac-def4-4aab-918c-b207011d1d38" ], "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": [ "308ff1bb-19b5-4627-ad72-dd72928c8a35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121704Z:308ff1bb-19b5-4627-ad72-dd72928c8a35" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b07b4b80-9de7-484d-9000-258fb3513d51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022046Z:b07b4b80-9de7-484d-9000-258fb3513d51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A94A3EC33D04899A1A8B60BBC19CEFC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE1733D95984471B9ACB2EEF4DE9B278 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8317" ], + "Content-Length": [ "8321" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:04.32\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:46.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "991" ], - "x-ms-client-request-id": [ "ae6dbd13-4f0d-4818-8c08-70e98254b141" ], + "x-ms-unique-id": [ "1132" ], + "x-ms-client-request-id": [ "013f3029-d77f-491a-bba3-dc94c17feb4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3711,36 +3711,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb5dd92c-149e-4ffb-a855-61111623ab9d" ], + "x-ms-request-id": [ "5941da55-0060-459c-9788-dccbd398078c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ffce8949-f935-49fb-860e-7b64aafdd4d1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "6559603a-8de5-4be2-adb4-f2124a67c045" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121704Z:6559603a-8de5-4be2-adb4-f2124a67c045" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16a3e34b-51c3-4b98-8d27-5053ee619f6d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5ef0cf3e-1701-4048-8b57-fcbc3f580038" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022046Z:5ef0cf3e-1701-4048-8b57-fcbc3f580038" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22EB1D845251410898BF508AE1FECC5F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:04Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 811EB4403C6348CBB29B5FE0A3B0DA63 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "992" ], - "x-ms-client-request-id": [ "4dfabee5-c10e-45d7-97ca-7be673809a21" ], + "x-ms-unique-id": [ "1133" ], + "x-ms-client-request-id": [ "2f428bd6-afcb-4d17-b47b-8ff4e3aecf3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3756,37 +3756,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ade93205-e294-480a-9f73-050421e1bf89" ], + "x-ms-request-id": [ "2433d447-cc3a-40d3-8844-472344982b3d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cda1e4c2-c236-4d77-a551-df6da9b198b8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], - "x-ms-correlation-request-id": [ "225a9ee7-d1ee-4c60-8882-b745e8a83c72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:225a9ee7-d1ee-4c60-8882-b745e8a83c72" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c017cee3-0d2a-4b47-a946-c6d873f9a233" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a3b9e723-2f38-4939-8686-e2b1b4bca767" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:a3b9e723-2f38-4939-8686-e2b1b4bca767" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C193CA527BE4AAFAC187BE27CD968F4 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAE65C9A3F8C43848C44E36AD60EB401 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:46Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "993" ], - "x-ms-client-request-id": [ "7b865aea-597d-4b6b-a754-d01a4f7355d5" ], + "x-ms-unique-id": [ "1134" ], + "x-ms-client-request-id": [ "054b155a-7f8f-477d-9b91-e93e591149f5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3801,38 +3801,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE41993400\"" ], + "ETag": [ "\"1DC550D48F62920\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0f4eabd-c448-42b7-b929-8b2c5204e55c" ], + "x-ms-request-id": [ "38c68f91-6b60-40ec-9627-db9c366bde8e" ], "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": [ "fadd6a51-7cc0-450b-b331-cf71d5e8f27d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:fadd6a51-7cc0-450b-b331-cf71d5e8f27d" ], + "x-ms-correlation-request-id": [ "6e21c66b-9b98-4a9c-82c6-98bf70729e15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:6e21c66b-9b98-4a9c-82c6-98bf70729e15" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49C48B999AE04067BB87A90DBECB533B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E3EBD5C4D23499F8D328F89E397A7BE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8317" ], + "Content-Length": [ "8321" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:04.32\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:46.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "994" ], - "x-ms-client-request-id": [ "fbb575df-5e52-4061-b235-472cbac173e9" ], + "x-ms-unique-id": [ "1135" ], + "x-ms-client-request-id": [ "fbefb7a5-3f68-4b2d-805d-0534f75bfdd4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3848,36 +3848,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d312581e-8b49-4f32-a81b-83e53e86fe87" ], + "x-ms-request-id": [ "d7b845d9-2d2e-4df1-855d-3a9a94062851" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/55bb52db-d6e1-4549-baeb-f7008d6a9296" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3e56d21b-2df5-492d-a786-8589ebd816a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:3e56d21b-2df5-492d-a786-8589ebd816a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e29f5e96-b6fe-45bc-9585-30cd12947d1e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "8331ae06-a16d-4f39-9147-fcb714e0016a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:8331ae06-a16d-4f39-9147-fcb714e0016a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C1C91DC8FF7468F87B506C0C7C0AEDC Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B5A45BB5B484EED9524037BD4323CD4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "995" ], - "x-ms-client-request-id": [ "1290b641-b9b0-4dfe-9bf1-054c91e33cab" ], + "x-ms-unique-id": [ "1136" ], + "x-ms-client-request-id": [ "be3b80f0-d173-4586-bb15-f2ec5145ad5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3893,37 +3893,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "195477ca-8b46-4b53-9b1d-98c115dd1089" ], + "x-ms-request-id": [ "acc10df8-b0eb-4176-8ab5-96ebe1a34dde" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8fc39472-2e53-41b4-a3d6-8b4dd4c20255" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a7d1dda6-5ebb-4341-843f-bb3449a8d8f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121705Z:a7d1dda6-5ebb-4341-843f-bb3449a8d8f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a824d07-1dc3-4dbb-aa69-20da3516213d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8cfd71f3-439d-4546-86da-ca5c7df9caf6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:8cfd71f3-439d-4546-86da-ca5c7df9caf6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC9254D41EE649E0B33F0A79FD0BFDA9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CBFA875EAE94FA4B7640556B5FE5CD6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:47Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "996" ], - "x-ms-client-request-id": [ "61d2daf5-d71a-4179-a200-007844eebeaf" ], + "x-ms-unique-id": [ "1137" ], + "x-ms-client-request-id": [ "f3acfaa4-c9ea-4134-9417-a34352fd99f0" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3939,18 +3939,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "759168bb-a88b-40a2-8ce1-876b3839bd5f" ], + "x-ms-request-id": [ "86581d06-2c76-4a22-abc7-a2a10baf626d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4977b731-fa84-442b-95e0-67f877e8dfb8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8cafc1cc-9dec-40c1-b609-642d5beea1eb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d1602124-a91f-4b1d-b7a4-acb9851dc681" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121706Z:d1602124-a91f-4b1d-b7a4-acb9851dc681" ], + "x-ms-correlation-request-id": [ "cadaf48f-0daf-4341-8fd1-c6e41a8574ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022048Z:cadaf48f-0daf-4341-8fd1-c6e41a8574ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C2C9BA2DF6334E67848EF9F97FC5F9A3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:05Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 333A7D9A98064D5388EC0A6449F4EBEB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3960,15 +3960,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "997" ], - "x-ms-client-request-id": [ "64780a8c-4080-47b2-ba51-a69f98ab07c9" ], + "x-ms-unique-id": [ "1138" ], + "x-ms-client-request-id": [ "95b03911-063d-48f3-b651-d78f56d92325" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3983,38 +3983,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE42C9DECB\"" ], + "ETag": [ "\"1DC550D4A3D3515\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42b16fa5-48f8-429b-9eeb-ed507b21b31f" ], + "x-ms-request-id": [ "c7318ea1-1aba-4efb-8187-c878a33531cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "43609788-ec82-4bba-9efc-c0eabbb943c1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121706Z:43609788-ec82-4bba-9efc-c0eabbb943c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4924e735-8254-401d-b67d-ed80f7a68ff1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022048Z:4924e735-8254-401d-b67d-ed80f7a68ff1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F9CE15091EA4992BCAEAC09BC01B1E2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6D7691CBDB5406787B6C4D073EFCC74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8322" ], + "Content-Length": [ "8326" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-e0u29b\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-gpxn1b-CentralUSwebspace-Linux/sites/Functions-Node-22-e0u29b\",\"repositorySiteName\":\"Functions-Node-22-e0u29b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-e0u29b.azurewebsites.net\",\"functions-node-22-e0u29b.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-e0u29b.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-e0u29b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-gpxn1b/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-078h6t\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:06.3166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-e0u29b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-e0u29b\\\\$Functions-Node-22-e0u29b\",\"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-gpxn1b\",\"defaultHostName\":\"functions-node-22-e0u29b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:48.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-e0u29b\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "998" ], - "x-ms-client-request-id": [ "3375a3db-4ea0-4e69-86b8-10111264321b" ], + "x-ms-unique-id": [ "1139" ], + "x-ms-client-request-id": [ "fe18d267-3699-4721-b10e-6ea7a30a4368" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4030,36 +4030,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ccfd5a2d-dbdf-477e-a252-7e0d23d021f0" ], + "x-ms-request-id": [ "03387396-8530-4ad7-90fe-d93c3a8b9e55" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/908ee01a-1795-4957-af54-a652641455e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6403a117-d15d-4739-9263-fd406b876482" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "47b32fed-e175-482b-a5df-01239e6c3ce3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121706Z:47b32fed-e175-482b-a5df-01239e6c3ce3" ], + "x-ms-correlation-request-id": [ "2654eda5-3113-4951-9374-bd2c2517bf43" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:2654eda5-3113-4951-9374-bd2c2517bf43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 401E930609644309911AE5DD74BADC59 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:06Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3A43CEC9F064F1F848A010B06CAAD6E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:48Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-e0u29b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=981c27d1-6867-46be-87f2-42bca97c6c04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2a429c15-cebd-4a2e-95df-beeca23b63ac\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-e0u29b\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "999" ], - "x-ms-client-request-id": [ "aae6633d-c842-402a-8d55-bc215f66bdb8" ], + "x-ms-unique-id": [ "1140" ], + "x-ms-client-request-id": [ "87a80c98-9286-4765-b5d6-42a001a99267" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4075,37 +4075,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d75b1673-5517-4333-8387-0b8942db9b88" ], + "x-ms-request-id": [ "c1c0997f-2fe5-44cd-ac82-86fdd6839297" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bcb0b122-c224-4143-bd47-5a3516faf563" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "48ce86ca-a57d-477b-a3b9-75035a65e6ad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:48ce86ca-a57d-477b-a3b9-75035a65e6ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e87443ab-c96f-4b6a-8098-8d52a3436b66" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d79996e5-62b8-47f7-825f-f09aa0d03bb1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:d79996e5-62b8-47f7-825f-f09aa0d03bb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 641E1277424C4C09AD6DB4BBFE6F4B35 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55F55310B67649CC90E3550E875E2583 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-gpxn1b/providers/Microsoft.Web/sites/Functions-Node-22-e0u29b/config/web\",\"name\":\"Functions-Node-22-e0u29b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1000" ], - "x-ms-client-request-id": [ "7668041f-2a95-436b-813f-9fab7894b5aa" ], + "x-ms-unique-id": [ "1141" ], + "x-ms-client-request-id": [ "e4d76616-3e92-4e16-9f32-dd53bf90b0ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4120,38 +4120,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE39B7FDC0\"" ], + "ETag": [ "\"1DC550D416C6EB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9537f26-1ae2-4a83-9189-25250ed6644a" ], + "x-ms-request-id": [ "5554910b-76b1-41de-bad8-898b22dc4dd7" ], "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": [ "add27d33-bad3-4f21-85a7-e8a40539db3b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:add27d33-bad3-4f21-85a7-e8a40539db3b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "d455175b-1f25-4b50-9f7e-5026000170b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:d455175b-1f25-4b50-9f7e-5026000170b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D379512F406E46A2B6D54010EFFC0076 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7EE785B0A9A04CE8B4A3E0E7DDD3ECF0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:51.1\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:33.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1001" ], - "x-ms-client-request-id": [ "8ce8f0bc-974e-4b4c-8bb7-2dad087852a4" ], + "x-ms-unique-id": [ "1142" ], + "x-ms-client-request-id": [ "f494eb49-0527-4ed5-acc7-51fc22d66894" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4167,36 +4167,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf5a5c63-2235-4e41-8dda-af35d6c1417b" ], + "x-ms-request-id": [ "640c6b96-c0d3-44e3-85f7-1fb2717ba61a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e5f8883-d6c6-4090-ae1b-a85df2339fe1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17d2c039-69ac-4fee-9618-7e0ada809dcb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "73b55580-7b79-4ea4-a90d-6e3ab3bb860a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:73b55580-7b79-4ea4-a90d-6e3ab3bb860a" ], + "x-ms-correlation-request-id": [ "17c74e62-3dd2-4280-b91b-47fa3bdf1967" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:17c74e62-3dd2-4280-b91b-47fa3bdf1967" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB7BEFFA23C84691A40F06A6181E1D4B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AB5EB4AD14D4D3FAB3574263EDA1389 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1002" ], - "x-ms-client-request-id": [ "f349b4c1-8d3f-4052-aeae-1e32edc41ab4" ], + "x-ms-unique-id": [ "1143" ], + "x-ms-client-request-id": [ "aca7f340-eb6e-403d-b476-707e8fef4d1a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4212,37 +4212,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd7ad93d-65b8-4923-8bb7-f439edb4172a" ], + "x-ms-request-id": [ "81641bec-6b57-4154-aa45-286826831549" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ecd37599-68d4-4061-be59-0a742e7a25dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b4051c2-189e-48f1-9b28-102bdae30888" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2cb23ca8-2eaf-4095-a48e-47043224d08c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121707Z:2cb23ca8-2eaf-4095-a48e-47043224d08c" ], + "x-ms-correlation-request-id": [ "df252123-14f4-4610-a61d-600d3c412b20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:df252123-14f4-4610-a61d-600d3c412b20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EFFBAE832CDC4886A66937BE23A62A8F Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:07Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F2B289605E3424CBAF84241491AE626 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1003" ], - "x-ms-client-request-id": [ "54151687-4f0b-4930-8a31-cf8ad047fad9" ], + "x-ms-unique-id": [ "1144" ], + "x-ms-client-request-id": [ "38c47cde-f00b-45ac-b1b0-8f3e24e05aa4" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4258,18 +4258,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9665f7d-51ed-44fb-9477-db392efc19c5" ], + "x-ms-request-id": [ "43d7a317-3b16-4a45-9ee1-e48568a46d13" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/447979e5-525e-449e-8989-8ea6733daa61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04304c3d-de16-489b-b8b8-b0fa6a59ad61" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "623b295a-6052-4d41-b3ad-b0654bfe1076" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121708Z:623b295a-6052-4d41-b3ad-b0654bfe1076" ], + "x-ms-correlation-request-id": [ "c4cfddd6-4a05-49b9-8dd2-318b54b019d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:c4cfddd6-4a05-49b9-8dd2-318b54b019d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 392A256693C74722ABD363971973A737 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7E357FD389240B0BE7C8DBC3820D822 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4279,15 +4279,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1004" ], - "x-ms-client-request-id": [ "70741aa5-6827-4114-b2ea-b4818950b0a2" ], + "x-ms-unique-id": [ "1145" ], + "x-ms-client-request-id": [ "ff076595-feea-4aae-959b-7512844cc285" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4302,38 +4302,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE43EA42EB\"" ], + "ETag": [ "\"1DC550D4B791075\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a954f93-078d-46d0-922d-cd7893f17ff9" ], + "x-ms-request-id": [ "903ae2a4-0829-4887-83ea-0fc281719f14" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a283e234-689d-486c-9399-e70a0cb202dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121708Z:a283e234-689d-486c-9399-e70a0cb202dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b37432a4-55d2-4eda-ac76-5bda92e4ad02" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:b37432a4-55d2-4eda-ac76-5bda92e4ad02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 100EF7A526E146D998941928DA838989 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1C32C98A75E46C6B1A6E26185ABBAAD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8687" ], + "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:08.2066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:50.3433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1005" ], - "x-ms-client-request-id": [ "17e2c90a-b8f7-4ea1-beb4-af3a409260c9" ], + "x-ms-unique-id": [ "1146" ], + "x-ms-client-request-id": [ "444fe573-d313-4199-be60-c61cd493ce73" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4349,36 +4349,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8042b764-9633-4c90-93e2-65998197bd82" ], + "x-ms-request-id": [ "5f91027a-e16f-4132-b29c-80a9f8ac69f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/020e570e-1d4d-45f2-87d6-eead448a8568" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61137b27-9256-43ac-9174-70eb1224f473" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "191aeee6-e6f3-45a1-ba28-7a0adc3ff8b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121708Z:191aeee6-e6f3-45a1-ba28-7a0adc3ff8b7" ], + "x-ms-correlation-request-id": [ "dd1d3744-2e7f-4aa6-8129-af54cffe5e3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:dd1d3744-2e7f-4aa6-8129-af54cffe5e3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F620F0942B6F42C482C357DDCE5A8990 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 847DD01E8F514ADC8CA685DCE75B5C29 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:50Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1006" ], - "x-ms-client-request-id": [ "df59fbb0-7a7f-4756-8ade-d4205809342d" ], + "x-ms-unique-id": [ "1147" ], + "x-ms-client-request-id": [ "881b3ccc-ff85-4a1b-9fbc-d4fd37d8fb86" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4394,37 +4394,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e761b4a3-a09f-4841-a73a-6c20fcbe10ed" ], + "x-ms-request-id": [ "527c3e2f-c8ac-4d77-acd7-1cbc852fcf56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de5e6f85-0cee-40d4-8691-a42809ceaafc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bded7a55-1325-418e-a9cd-fd513f11bd49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:bded7a55-1325-418e-a9cd-fd513f11bd49" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae56084c-cf35-477c-914d-3fb93aa181f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f23645b6-991f-4109-97ca-4a75546a6e95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:f23645b6-991f-4109-97ca-4a75546a6e95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7518F0201FCC485F99C719421F48BFC0 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:08Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D982D5948E2D40C892384AB73EFB088A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1007" ], - "x-ms-client-request-id": [ "3d739d65-243c-446d-ac32-ab3ddf2a09ef" ], + "x-ms-unique-id": [ "1148" ], + "x-ms-client-request-id": [ "27097ec5-0d3c-4bac-84c0-8bb405cff7b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4439,38 +4439,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE43EA42EB\"" ], + "ETag": [ "\"1DC550D4B791075\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a46fbe8-4d3a-4660-b30e-f22f2c3fecd1" ], + "x-ms-request-id": [ "f01841e1-ccac-473e-b874-bb0bac3d1fc5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e28812be-030b-4dfd-b620-51275adbd1e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:e28812be-030b-4dfd-b620-51275adbd1e1" ], + "x-ms-correlation-request-id": [ "e2ee4c48-4f98-4e20-8e70-5c029a167fdb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:e2ee4c48-4f98-4e20-8e70-5c029a167fdb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D72A33846A347959D7669C7AE25E5E2 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F420A6A5E544D56A6442E008306EE36 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8687" ], + "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:08.2066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:50.3433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1008" ], - "x-ms-client-request-id": [ "bc752f8b-7870-4912-a41b-b78bef22bdb2" ], + "x-ms-unique-id": [ "1149" ], + "x-ms-client-request-id": [ "b484f22b-6cee-405a-917f-27272d5fd1fb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4486,36 +4486,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ee2e908-0385-46a4-b12c-3ccd81ea9cd6" ], + "x-ms-request-id": [ "2ff6e53c-5f20-44b7-91bd-f6a1c1b2acd2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/879b8b4a-e361-4f8d-ba31-c8d32d132498" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edf4c14e-dad9-4f22-91ee-666e9891889c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3c5d7a9b-3825-44f5-8810-3be3e9cb2962" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:3c5d7a9b-3825-44f5-8810-3be3e9cb2962" ], + "x-ms-correlation-request-id": [ "339d67a4-d582-4621-8046-28e53761ad58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:339d67a4-d582-4621-8046-28e53761ad58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB1DAF598225475A92FE413B016C6921 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B258E87CEDC24A7BB3E7C9AB1B5B6283 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1009" ], - "x-ms-client-request-id": [ "21e0fca8-cbcd-4cd0-9f34-ad9edc2b8da8" ], + "x-ms-unique-id": [ "1150" ], + "x-ms-client-request-id": [ "0047a974-2fb5-49b4-b16e-f95cedf5e1cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4531,37 +4531,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b5e2daf-cfe9-48ff-933a-e7c45a7b4fd3" ], + "x-ms-request-id": [ "2bb98c2f-ed41-4c9e-bf3d-f600fb700f8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3406b098-ac5d-4e85-a394-cce68c0a830e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "3208617c-d431-4cb2-95f9-33beddaa0501" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121709Z:3208617c-d431-4cb2-95f9-33beddaa0501" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91181423-edf5-4926-8933-ea4e63490d70" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "c7cb8e4b-2929-4e58-b6ec-8361cc38deb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:c7cb8e4b-2929-4e58-b6ec-8361cc38deb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 045A6BB8CBC84EDEA53FF42CFC5B42C6 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7606E4D7112D4443B194182E0E409243 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1010" ], - "x-ms-client-request-id": [ "16e0f5fc-dbad-4f64-965e-e2b08a0acd45" ], + "x-ms-unique-id": [ "1151" ], + "x-ms-client-request-id": [ "761583a3-1141-42a8-b59d-5deae467bd45" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4577,18 +4577,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e367b828-f19e-43bd-833e-f62fa1bf945c" ], + "x-ms-request-id": [ "02865c1e-6844-48b3-85a5-09624e8a4c7e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f77fe048-5225-41da-bb9b-53e8b50c5339" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4a2d3165-fb26-491d-8bc0-4af9cda86c83" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4fc60a82-dc49-45f9-a94d-cc3ae6845467" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:4fc60a82-dc49-45f9-a94d-cc3ae6845467" ], + "x-ms-correlation-request-id": [ "478665b4-7cee-4145-9fb5-c72b68b174a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022052Z:478665b4-7cee-4145-9fb5-c72b68b174a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DF01B374D094CD5BBA631E7EC8EB8C3 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:09Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B4506C5503C4EEFBEAE45EDE8EC5054 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4598,15 +4598,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1011" ], - "x-ms-client-request-id": [ "1ed42723-4835-41e7-8bdd-efcd1d210df7" ], + "x-ms-unique-id": [ "1152" ], + "x-ms-client-request-id": [ "1fae838a-10e0-4487-8a01-b2932c79dbeb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4621,38 +4621,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE44FF7675\"" ], + "ETag": [ "\"1DC550D4C8B36C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c4b1fff-d384-4029-81f2-0e5f18781e83" ], + "x-ms-request-id": [ "12ebcdaf-eaee-4ef2-b306-ed7611139415" ], "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": [ "bc707ec4-1526-4be3-82a9-edcf7083a3c2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:bc707ec4-1526-4be3-82a9-edcf7083a3c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e168b1d6-8f76-4e26-a1df-2ac402fbd966" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022052Z:e168b1d6-8f76-4e26-a1df-2ac402fbd966" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7A221138CCE4A6686969EFED61F5450 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B19363C021B41C5A06AC51F8F15CFFE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:52Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8687" ], + "Content-Length": [ "8676" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:10.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:52.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1012" ], - "x-ms-client-request-id": [ "5c34e192-1b8e-4957-81ea-2ab5b2819e11" ], + "x-ms-unique-id": [ "1153" ], + "x-ms-client-request-id": [ "c1393066-66cd-4e8a-b0ee-d75e9d882b58" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4668,36 +4668,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "400f3a01-a1b1-4c98-83ab-df1bebd680c1" ], + "x-ms-request-id": [ "ef3d404c-3cc9-463a-b41f-2599ba93e811" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/153d4576-09c0-4128-8d66-b5c17a9a3862" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2785022-a605-451c-915f-d0d50ad1f6b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd1e1205-a3db-4f81-b710-7634a2ed1ade" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:bd1e1205-a3db-4f81-b710-7634a2ed1ade" ], + "x-ms-correlation-request-id": [ "415b85d6-0822-4c6d-9402-843c1a4d3df1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022053Z:415b85d6-0822-4c6d-9402-843c1a4d3df1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F0A17226938480192419BC6270BD502 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F589204496E4FDF835B2765A16F5A50 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1013" ], - "x-ms-client-request-id": [ "635b36a9-0e6e-4a79-844f-9de60d315118" ], + "x-ms-unique-id": [ "1154" ], + "x-ms-client-request-id": [ "a6d67b3b-13e6-4b12-b61e-a5fe426d3657" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4713,37 +4713,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efa9126c-12fc-4a64-8475-5957337da54c" ], + "x-ms-request-id": [ "7ab8e407-52e2-4e7d-a302-eab71a5db8c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0d7f4b9-1ada-4f82-9a77-8aea170170a9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a94808fd-ad62-45be-9ecb-b6e0a9480469" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121710Z:a94808fd-ad62-45be-9ecb-b6e0a9480469" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e8b300e-5b0e-4d0e-8aed-5618940c3876" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "161f8adb-30b0-4fed-bada-06b20f49b384" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022053Z:161f8adb-30b0-4fed-bada-06b20f49b384" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDB2404D14B04DB5866C96299F72AE94 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDB33AF15993491B8E82CF9DB6006AF6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1014" ], - "x-ms-client-request-id": [ "ed6b5109-e7be-43c5-b111-2d88f2593448" ], + "x-ms-unique-id": [ "1155" ], + "x-ms-client-request-id": [ "592a1f16-5b74-4cb5-87e1-b3802f5a103a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4758,38 +4758,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE44FF7675\"" ], + "ETag": [ "\"1DC550D4C8B36C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa3f79bb-65d2-4df8-9f92-a55ce430169b" ], + "x-ms-request-id": [ "d10c2620-95a9-4914-99ea-e0cdb33f1a1c" ], "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": [ "10533abc-4510-4e01-b3db-ae06f63604cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121711Z:10533abc-4510-4e01-b3db-ae06f63604cf" ], + "x-ms-correlation-request-id": [ "c65c4b18-4bcc-4de1-8fcc-418353e80c0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022054Z:c65c4b18-4bcc-4de1-8fcc-418353e80c0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFBC55431C4C4DAB8895901AB0BC6263 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:10Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 913FA128F1234318999DCD3223DAA75B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:53Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8687" ], + "Content-Length": [ "8676" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:10.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:52.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1015" ], - "x-ms-client-request-id": [ "4ce1246a-9a52-41a0-a5a6-88a615966e5e" ], + "x-ms-unique-id": [ "1156" ], + "x-ms-client-request-id": [ "bc05f92c-d017-4aa5-8be4-c90f14094920" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4805,36 +4805,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e56debf-bc00-4d36-b270-11a9567093da" ], + "x-ms-request-id": [ "7cc748bc-0377-4c8d-abdb-92ebf9582f4a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56a192e0-cf69-4121-ba57-c1cfc0c33e3d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47f25218-3948-4146-837e-790750ca5ce5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8a306dc2-c633-4d88-a69d-b5aaeaa15d61" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121711Z:8a306dc2-c633-4d88-a69d-b5aaeaa15d61" ], + "x-ms-correlation-request-id": [ "cc993522-3027-4f3b-8989-572c89762c20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022054Z:cc993522-3027-4f3b-8989-572c89762c20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D28B28BB550429491C9C552CE0E2857 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32EFE4D553824845803C6413A677075A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1016" ], - "x-ms-client-request-id": [ "e2238fc2-621a-4123-993b-e9aa051272c2" ], + "x-ms-unique-id": [ "1157" ], + "x-ms-client-request-id": [ "7e270525-bb64-4972-a778-db55299e0176" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4850,37 +4850,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d685d67-33b3-4631-befc-6a971298ed14" ], + "x-ms-request-id": [ "d34f20b2-eeaa-48d0-8cfd-32c086ea00f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/200c97d6-0860-4ec6-ae5a-89b6e31b4bb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/78f06cb0-cadc-4067-a298-7d31f9a40d99" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3b1a487b-c3c3-4eba-bbe3-39510a688883" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121711Z:3b1a487b-c3c3-4eba-bbe3-39510a688883" ], + "x-ms-correlation-request-id": [ "b0724fd7-36ad-47ca-9103-42e6b5938521" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022054Z:b0724fd7-36ad-47ca-9103-42e6b5938521" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FFE7F91140F407A844EA492D3A90DDB Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64F4037C59994F848F7734EA2DD59147 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1017" ], - "x-ms-client-request-id": [ "fc6ae80d-0e5a-4c4f-a174-49276c67eabf" ], + "x-ms-unique-id": [ "1158" ], + "x-ms-client-request-id": [ "7d9eb77e-c3ef-4a2a-89fa-d3b4bf5e7fe8" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4896,18 +4896,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "457e6823-59af-4330-81b3-1c1e5be999f8" ], + "x-ms-request-id": [ "9897fd03-8df9-432b-a884-ff846cfb4dd9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a44fbc67-0f18-4c09-bcc7-f5c577ffd8e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37ca5eca-1e47-4b2d-9392-5e0786275486" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "719a8069-ac6a-446a-9140-41163fb00762" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:719a8069-ac6a-446a-9140-41163fb00762" ], + "x-ms-correlation-request-id": [ "d6d4616f-a49d-44fc-8c3b-8e480db04541" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:d6d4616f-a49d-44fc-8c3b-8e480db04541" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0D308400DCB46CCA0C8F04CBDC2822B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:11Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBBFDBC6434E4277A74023E577CFDDEF Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:54Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4917,15 +4917,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1018" ], - "x-ms-client-request-id": [ "0bb3dfb5-61aa-4814-bd65-a1e4084de2d3" ], + "x-ms-unique-id": [ "1159" ], + "x-ms-client-request-id": [ "ea0387ad-046f-403a-b38b-ff2acfb8ab79" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4940,38 +4940,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE46205CCB\"" ], + "ETag": [ "\"1DC550D4E3675C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ccf58af4-3507-47b1-984d-18594439c9bd" ], + "x-ms-request-id": [ "f137a1c8-8100-4e57-a11c-37aed660ac6f" ], "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": [ "5bf21b04-dc60-4138-b1ff-20e7b2c6d02e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:5bf21b04-dc60-4138-b1ff-20e7b2c6d02e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "72d353e0-f575-4fbc-9652-4f0c293ff459" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:72d353e0-f575-4fbc-9652-4f0c293ff459" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56F850E7D4B041E9A009A977E34D7F52 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FAB9272409CC491FA3B9EB9DF8B545D6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8687" ], + "Content-Length": [ "8676" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-1axywr\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-321.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-o1blrw-CentralUSwebspace/sites/Functions-DotNet-8-1axywr\",\"repositorySiteName\":\"Functions-DotNet-8-1axywr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-1axywr.azurewebsites.net\",\"functions-dotnet-8-1axywr.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1axywr.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-1axywr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-o1blrw/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17: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-8-1axywr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"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.48.10\",\"possibleInboundIpAddresses\":\"20.118.48.10\",\"inboundIpv6Address\":\"2603:1030:10:7::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::1c\",\"ftpUsername\":\"Functions-DotNet-8-1axywr\\\\$Functions-DotNet-8-1axywr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-321.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.118.48.10\",\"possibleOutboundIpAddresses\":\"52.185.107.242,52.185.107.245,52.185.108.51,52.185.108.87,52.185.108.125,52.185.109.7,20.15.136.68,52.185.109.35,52.185.109.118,52.185.109.122,52.185.109.128,52.185.109.165,52.154.173.149,52.185.109.171,52.185.109.230,52.185.110.13,52.185.110.23,52.154.246.102,52.185.110.93,52.185.110.110,52.185.110.119,52.185.110.169,52.185.110.178,52.185.110.202,52.185.110.246,52.185.110.251,52.185.111.1,52.185.111.28,52.185.111.51,52.185.111.53,52.185.111.71,20.118.48.10\",\"outboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::288,2603:1030:b:6::18e,2603:1030:b:b::288,2603:1030:b:12::27f,2603:1030:b:3::324,2603:1030:b:a::290,2603:1030:b:5::379,2603:1030:b:13::22,2603:1030:b:c::2ef,2603:1030:b:12::280,2603:1030:b:b::289,2603:1030:b:3::344,2603:1030:b:e::270,2603:1030:b:a::291,2603:1030:b:6::18f,2603:1030:b:e::271,2603:1030:b:e::272,2603:1030:b:f::28b,2603:1030:b:6::198,2603:1030:b:d::2bb,2603:1030:b:8::29c,2603:1030:b:24::26b,2603:1030:b:13::23,2603:1030:b:e::273,2603:1030:b:5::40e,2603:1030:b:3::345,2603:1030:b:5::449,2603:1030:b:24::26c,2603:1030:b:e::274,2603:1030:b:8::29d,2603:1030:10:7::1c,2603:10e1:100:2::1476:300a\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-321\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-o1blrw\",\"defaultHostName\":\"functions-dotnet-8-1axywr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:54.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-1axywr\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1019" ], - "x-ms-client-request-id": [ "3e1d97be-0cec-4815-9733-f1a5869eeb20" ], + "x-ms-unique-id": [ "1160" ], + "x-ms-client-request-id": [ "f11c9251-f772-425c-a4d1-6e36fa881252" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4987,36 +4987,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f2bc06d-67eb-46fc-8685-9269586151e1" ], + "x-ms-request-id": [ "ae235f03-4471-430e-bc41-3a5c93e87627" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/668be6c4-fa42-46fc-b95f-00b2426164ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63bbb553-18a4-4c25-af5e-162a99d0fd55" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0b2e2248-db71-4f56-b834-5a76f6baf71a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:0b2e2248-db71-4f56-b834-5a76f6baf71a" ], + "x-ms-correlation-request-id": [ "a094ff1c-f62c-4956-b124-15925faab1ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:a094ff1c-f62c-4956-b124-15925faab1ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 691A8488190943B086E7567EFA41E3C7 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26792CC0ADB74E6F84B93510D7FFD486 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorageelx;AccountKey=9FUC+RgGmiwnpAqs5s3oQdrENkwaWRKS2Xgy2OSpm5qti89ERXojljefr6fkqUapnnXvjasDZR/A+AStzGgBCw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-1axywr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=803c0538-84d0-43dc-9582-8a96eb8291f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4d9ad9ab-1bf4-43c6-9323-4b55fba45329\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-1axywr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1020" ], - "x-ms-client-request-id": [ "971573c2-9741-4d34-b43f-f6542eaa75d9" ], + "x-ms-unique-id": [ "1161" ], + "x-ms-client-request-id": [ "fa75e0a4-c5e2-41ad-9880-8fde261ec05a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5032,37 +5032,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d1896f7-f4ab-49fa-ae18-a575bf9a1a6c" ], + "x-ms-request-id": [ "47a486e4-ce08-422f-b7f1-fcb6c99ba9b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a49c0956-3bf1-4e5b-a520-4ae55ff9005e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "300a8eab-a51a-4680-bcfd-e069fc55def9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121712Z:300a8eab-a51a-4680-bcfd-e069fc55def9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0160e986-e1d0-4fcd-88ea-0adb624e6a53" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bd0f7de6-cefe-4cf1-a177-3ff8a6f75b32" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:bd0f7de6-cefe-4cf1-a177-3ff8a6f75b32" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6E0C742E7A747A7BAD7076AADE61980 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 914D02354E4740EB8B622F2EA2F01AEC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-o1blrw/providers/Microsoft.Web/sites/Functions-DotNet-8-1axywr/config/web\",\"name\":\"Functions-DotNet-8-1axywr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1021" ], - "x-ms-client-request-id": [ "a85c219b-0064-4d89-a531-b190dc550db8" ], + "x-ms-unique-id": [ "1162" ], + "x-ms-client-request-id": [ "ebdf44a4-1e18-4b67-974d-d0a054d3a72c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5077,38 +5077,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE3BB72920\"" ], + "ETag": [ "\"1DC550D4378514B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4049686d-44ba-4fc5-9679-c5630263e35c" ], + "x-ms-request-id": [ "fdedbda4-0904-4115-b835-e6b74b162637" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "677ca1a4-2ed3-4a12-9d03-abfc161a17ed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:677ca1a4-2ed3-4a12-9d03-abfc161a17ed" ], + "x-ms-correlation-request-id": [ "a1d8eebd-7645-4f0d-be11-b8893082cf00" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:a1d8eebd-7645-4f0d-be11-b8893082cf00" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3CB4A6A0126F4837AC8512EFEFFF8AAF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:12Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 185DD27B651F4187A50EBC3698919412 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8745" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:16:54.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:36.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1022" ], - "x-ms-client-request-id": [ "79e1e049-b05a-43c8-a299-09e150be742d" ], + "x-ms-unique-id": [ "1163" ], + "x-ms-client-request-id": [ "83a77db0-ae99-4019-a09d-20b81b03d8b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5124,36 +5124,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05559832-0696-4b55-b2d6-87af3e1145c5" ], + "x-ms-request-id": [ "065dfb5c-32e6-44e7-9fcc-3aea7bfc4747" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f0e18cd-f248-442c-a92a-9fab274a5b90" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a754b834-7af5-4c37-beb7-75d1a6cc85f1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e4b6a509-6031-4cab-b612-9c1c40ed1c36" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:e4b6a509-6031-4cab-b612-9c1c40ed1c36" ], + "x-ms-correlation-request-id": [ "5b83002c-e658-4294-a6bf-4d034600679a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:5b83002c-e658-4294-a6bf-4d034600679a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9055C5EA5E1F45E19BE9CCA7510B803E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:13Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 613A32DE96924CC5A86A8919189ABDAE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:56Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1023" ], - "x-ms-client-request-id": [ "223ec3dd-4e76-4adb-9f4f-56ae4506b67a" ], + "x-ms-unique-id": [ "1164" ], + "x-ms-client-request-id": [ "6c51db18-2270-4240-91dd-662ffb326666" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5169,37 +5169,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a91267e-c23b-434c-a532-a0a6e2c7bab1" ], + "x-ms-request-id": [ "a7e9e61c-fc7c-441b-9d46-d95a15aaa457" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d2a68e73-296d-4cdb-b418-37d94d1250f9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "dff2d01e-c5b7-4aae-93e0-66d0cde9de22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:dff2d01e-c5b7-4aae-93e0-66d0cde9de22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a58d6c3-b771-4f8c-8464-312a27c0a97a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "347af2af-cd90-4786-87e8-c85dc859c2e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:347af2af-cd90-4786-87e8-c85dc859c2e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF6B29F36AD84127894CDD0BDA7AC3EF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:13Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 709E44CFBEB74D5D9A5034CC9FB6220D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:56Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1024" ], - "x-ms-client-request-id": [ "c4190df2-6f28-4bb4-8ea5-95647c7cb50c" ], + "x-ms-unique-id": [ "1165" ], + "x-ms-client-request-id": [ "c472abdc-830d-4dc2-bd00-bf2bf20852d4" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5215,18 +5215,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c050c83-4fa4-4b27-aecb-0eece675c4a3" ], + "x-ms-request-id": [ "c3e211b0-91c0-42f4-b148-cfba2b89ac19" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/547f763f-e367-4c6a-8627-a39084ce54f1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "9c9b753b-d492-4cc5-a28f-0ba2b16d75ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121713Z:9c9b753b-d492-4cc5-a28f-0ba2b16d75ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33d6f354-2896-4d88-b94e-48d0798cc5fc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "82aad041-2cb0-4481-987e-e6fb415f7b0e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:82aad041-2cb0-4481-987e-e6fb415f7b0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D83F3676CB8D44F9986FB57E60380213 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:13Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9630EEF14DE3448C89AAC7B291CC7265 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:56Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5236,15 +5236,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1025" ], - "x-ms-client-request-id": [ "0ef7e6e7-3ebd-4844-8f0b-e379fd741a57" ], + "x-ms-unique-id": [ "1166" ], + "x-ms-client-request-id": [ "3233d8f3-4f0a-4477-9ff5-e61cea2f4bb6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5259,38 +5259,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE474CF5EB\"" ], + "ETag": [ "\"1DC550D4F692960\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44f00ab9-2833-46f6-ac44-08c4350fab43" ], + "x-ms-request-id": [ "101f264d-273c-4f4d-aa80-2aebe87fbac4" ], "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": [ "dd4f2c8d-0321-4414-8503-457ef4adb36d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121714Z:dd4f2c8d-0321-4414-8503-457ef4adb36d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6d6a7e9a-68bf-48a5-8bab-146fb40cde2c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022057Z:6d6a7e9a-68bf-48a5-8bab-146fb40cde2c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EC35377733F463C88308FCBA73AEE00 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3136207A5A04E268E9198C31BCBDADC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8750" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:13.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:56.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1026" ], - "x-ms-client-request-id": [ "68f27159-4f9c-421e-9812-2e918223afef" ], + "x-ms-unique-id": [ "1167" ], + "x-ms-client-request-id": [ "4c7db6d0-8d46-454c-92f1-058b3799402d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5306,36 +5306,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2cf2971-2cd3-4e38-a73b-f369e8361066" ], + "x-ms-request-id": [ "35413f94-b340-4183-a18b-55eba4e6f261" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b52d090-efd4-4df5-88c1-3dfa90a304a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15168cbf-1bdc-4b05-acf0-16e5fa7c390c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "168d53cb-0559-415b-a358-8537c0bd7c26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121714Z:168d53cb-0559-415b-a358-8537c0bd7c26" ], + "x-ms-correlation-request-id": [ "241dec45-61f2-4a15-a893-40922001a828" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022057Z:241dec45-61f2-4a15-a893-40922001a828" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 43FA885774804F5D97D369EFA2E76FE8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3995D16D3871426692D24C1DFE79CCA9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1027" ], - "x-ms-client-request-id": [ "aec887c5-590f-44a7-a47e-4438c57af5f5" ], + "x-ms-unique-id": [ "1168" ], + "x-ms-client-request-id": [ "3331befd-e4a4-4cca-bc6d-3f9f8f045d54" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5351,37 +5351,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2ce0bab-8b13-49b4-9ac8-5795deb14bcd" ], + "x-ms-request-id": [ "355a20e7-1038-4dc8-9083-d857c525457e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ebe43cd-1efc-462c-aa27-332808199892" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0fe7eb6c-5f3f-4bbd-9e88-abdc30969e35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121714Z:0fe7eb6c-5f3f-4bbd-9e88-abdc30969e35" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/259a5510-1400-4815-91f0-4852c44e2aaf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c34b3db0-3366-4e73-881f-157c906ca517" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022057Z:c34b3db0-3366-4e73-881f-157c906ca517" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CFFE4D874DD434690462B2BBCCD9F95 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 689E18DB4ED2435AA351460C413652DB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1028" ], - "x-ms-client-request-id": [ "d0b654e1-1148-4f9a-b9d3-345beb3c6ac8" ], + "x-ms-unique-id": [ "1169" ], + "x-ms-client-request-id": [ "630bf2b6-0537-4598-b042-d3f075e79a07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5396,38 +5396,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE474CF5EB\"" ], + "ETag": [ "\"1DC550D4F692960\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4558699b-ea1a-4dc7-9e96-604e27b4d9c8" ], + "x-ms-request-id": [ "891d70cf-a608-4d9c-bd46-053714fdd365" ], "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": [ "c4160561-8a53-49dc-9897-282c554680f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121715Z:c4160561-8a53-49dc-9897-282c554680f9" ], + "x-ms-correlation-request-id": [ "d61b3e93-d664-4f37-85ee-8cf2d65a018d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:d61b3e93-d664-4f37-85ee-8cf2d65a018d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82C7088F91D946AB95C3CF556EA2DD2B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:14Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F92D1A88FC764C8892E8C4FA767228BB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8750" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:13.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:56.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1029" ], - "x-ms-client-request-id": [ "6962fb72-0c88-474a-90ca-a257166996ab" ], + "x-ms-unique-id": [ "1170" ], + "x-ms-client-request-id": [ "3ad21d44-66bd-4da1-a0bf-266eccc934a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5443,36 +5443,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "643a3ec9-7378-42a1-8c0e-daf49c6acb13" ], + "x-ms-request-id": [ "e96aa897-c554-43d5-8bfe-c2d8b3cb5c6e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb9f7d69-0fc7-4bfc-892e-74585f9cef68" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4083c0b-14e5-4173-93d6-30679b1dacf3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a3c9ffea-609d-4302-a8ae-452206bb6d08" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:a3c9ffea-609d-4302-a8ae-452206bb6d08" ], + "x-ms-correlation-request-id": [ "f28add97-42ac-4ed2-ad70-b6d2684061ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:f28add97-42ac-4ed2-ad70-b6d2684061ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E52AD58B75034D25A3D24FA0DAB57AAF Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:15Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C3F3F36C49B42AFA24A22CA74351ECC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1030" ], - "x-ms-client-request-id": [ "0a52eb01-e740-4700-a596-25624c25feb9" ], + "x-ms-unique-id": [ "1171" ], + "x-ms-client-request-id": [ "465bebde-af35-42df-836e-3a05698e7ae1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5488,37 +5488,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b5adb16-dd20-4492-8ab3-627d56cfafdb" ], + "x-ms-request-id": [ "6aa63de3-4be8-4b12-bb96-4386b99a6f05" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34ea44ac-ee64-4efe-b9f9-8c52e0a00a50" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "761c2114-cfe5-412a-badd-ef07a02415dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:761c2114-cfe5-412a-badd-ef07a02415dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37e29bba-8e97-478e-a95b-5d91c45a2be3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ff91fc96-570b-46ad-9c75-a8652aadec4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:ff91fc96-570b-46ad-9c75-a8652aadec4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F973064EF67449C8C88EEDD5227A61D Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:16Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8DCD9873DBE845459E0CE42D1E06F096 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1031" ], - "x-ms-client-request-id": [ "e7029dad-68f0-4c76-b266-9c9c9bc773a7" ], + "x-ms-unique-id": [ "1172" ], + "x-ms-client-request-id": [ "843322a7-0d62-412a-9d3a-ce6a04d8e0a2" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5534,18 +5534,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2aa254e3-f017-447e-b1c0-fbe1706b79af" ], + "x-ms-request-id": [ "504a2a13-2eef-4015-a2d0-af9c814189fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2dc0117-7271-4547-aeb0-2b94fd775630" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07f0512c-8afe-4464-9dcd-bf411cd335b2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "7cb91e10-d0b1-4276-8efb-a2b4f6742fb9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:7cb91e10-d0b1-4276-8efb-a2b4f6742fb9" ], + "x-ms-correlation-request-id": [ "d785d714-bc56-49da-bcd6-3518ef2c47f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:d785d714-bc56-49da-bcd6-3518ef2c47f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96CC0F9F6A6C4257BF5D480F5280E94B Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:16Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6FC7A0EEA954A9D9991C8B66C54B2CD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5555,15 +5555,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1032" ], - "x-ms-client-request-id": [ "8faa9ac2-0aa0-4a50-b1d5-c2e2ae8193e9" ], + "x-ms-unique-id": [ "1173" ], + "x-ms-client-request-id": [ "3217878f-694b-447f-ac72-2ffb4c775eae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5578,38 +5578,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE48EE08C0\"" ], + "ETag": [ "\"1DC550D50837300\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ca23e60b-8b7f-4625-83c4-f2922caef183" ], + "x-ms-request-id": [ "96144b3c-9aa1-4ec3-a78f-32906a45ffe4" ], "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": [ "71ba5699-0bfb-46e4-b54e-85c806f7906a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121716Z:71ba5699-0bfb-46e4-b54e-85c806f7906a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dc280295-a5d7-4c97-82d1-897e6fbfe37c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:dc280295-a5d7-4c97-82d1-897e6fbfe37c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 24B6ABF7FBC649BEB59D8A05EF4B2F89 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:16Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A737B99054E9441780DC65893CDF2740 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8745" ], + "Content-Length": [ "8282" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:16.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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:58.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1033" ], - "x-ms-client-request-id": [ "104b897d-5b58-4f05-8e10-9f33af0d89b1" ], + "x-ms-unique-id": [ "1174" ], + "x-ms-client-request-id": [ "f7bb60c9-5560-4322-aa1c-9773762e3f1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5625,36 +5625,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81b01f59-7892-470e-b6a3-eb889ce28ef4" ], + "x-ms-request-id": [ "94a1bc7f-5428-415c-a128-180e54a6b9fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97f49b3f-e560-4bbb-8a46-12511486e6dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1dd31381-aecf-4928-8efb-6e71284f24a3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ea19ba69-ca53-40be-b5e3-29edb754ce64" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121717Z:ea19ba69-ca53-40be-b5e3-29edb754ce64" ], + "x-ms-correlation-request-id": [ "78ccaa53-1c9e-4580-95f1-9318885aecab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:78ccaa53-1c9e-4580-95f1-9318885aecab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8169C85594FF41FBA3A64849E72FF6CE Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0207018CC0C24F3BBFAA13CC49E7836E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:59Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1034" ], - "x-ms-client-request-id": [ "ff06190c-287d-4500-9953-65ac4b70a84e" ], + "x-ms-unique-id": [ "1175" ], + "x-ms-client-request-id": [ "b43088d4-ba39-4266-a66c-d9f839256824" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5670,37 +5670,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a8b110e-75e1-4f06-9efb-dfb56feb06a5" ], + "x-ms-request-id": [ "a445cd88-7c42-41d5-b219-5f9af667c92a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29292011-ea92-4199-971d-ef4c0ccc18b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de18c405-175c-4b36-815c-57ac0c159501" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "6c1c4d44-97bf-4461-a9d2-88d3cc02a65b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121717Z:6c1c4d44-97bf-4461-a9d2-88d3cc02a65b" ], + "x-ms-correlation-request-id": [ "58c9dff0-54f0-4efa-b948-4a9fbaf4e8ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:58c9dff0-54f0-4efa-b948-4a9fbaf4e8ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16BAFB85FDFC4A7EB5E54796A5EABF2C Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 805502A490834124A34A99DD5D03C14E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:59Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1035" ], - "x-ms-client-request-id": [ "0dd579e3-e3ea-4d94-9b4e-66805a57058c" ], + "x-ms-unique-id": [ "1176" ], + "x-ms-client-request-id": [ "188a5eaa-a06b-44bc-b916-e38615a48394" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5715,38 +5715,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE48EE08C0\"" ], + "ETag": [ "\"1DC550D50837300\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6be09834-5be8-4f3d-959a-40aa45d63375" ], + "x-ms-request-id": [ "f5ca1cb8-2baf-4fb3-bb69-6ba2ab7e1146" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "91e356bf-146a-4ab7-baae-01ed19e7bd66" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121717Z:91e356bf-146a-4ab7-baae-01ed19e7bd66" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "8b4ebea0-0735-488f-9834-0c3af194a6b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:8b4ebea0-0735-488f-9834-0c3af194a6b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B91EB075B6148F1A88C0E77F0C46BA9 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B840A52D0C48415C900D10234E8134F2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:59Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8745" ], + "Content-Length": [ "8282" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:16.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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:58.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1036" ], - "x-ms-client-request-id": [ "30ef5634-6a63-4bdb-968b-dcfc6d4fe108" ], + "x-ms-unique-id": [ "1177" ], + "x-ms-client-request-id": [ "f342c586-8dd7-4119-9c64-ae90d1b2453c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5762,36 +5762,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "557e5c8d-621a-40eb-847d-f58b4ca5c3fe" ], + "x-ms-request-id": [ "4eb71ad8-fb7a-43ce-97ec-779fbf3fed74" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ccef544-e89a-40fd-b41b-33b8cd34ad85" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48cddc93-142e-41e0-9163-cd3205c2bcbc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2008e1e2-3809-4d73-8c87-555afed9ed30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121718Z:2008e1e2-3809-4d73-8c87-555afed9ed30" ], + "x-ms-correlation-request-id": [ "050348c8-0c5a-44eb-a758-1f1b38f85e49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022100Z:050348c8-0c5a-44eb-a758-1f1b38f85e49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13B77D66D9CC44A0839AFC28DD8DDF82 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:17Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC5A1F29F53945EDA7E9C54E56D9D64E Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1037" ], - "x-ms-client-request-id": [ "c398c84a-6640-460c-ac42-c9a2613227cc" ], + "x-ms-unique-id": [ "1178" ], + "x-ms-client-request-id": [ "e958c1be-88bc-4423-ab4a-493457b83f41" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5807,37 +5807,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "266e7a58-0d22-4ef0-bcb2-c0bbf219846d" ], + "x-ms-request-id": [ "06326d15-c225-41be-8a61-653872337d05" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd74b5fd-b62b-4e8b-bb33-171c98e53197" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7f68796-f197-471a-baa3-97068efe3564" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bcf89ae8-77c4-4e80-b7a7-7fe3308f2acd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121718Z:bcf89ae8-77c4-4e80-b7a7-7fe3308f2acd" ], + "x-ms-correlation-request-id": [ "06820bde-2416-4583-b5fb-3072d0ac762f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022100Z:06820bde-2416-4583-b5fb-3072d0ac762f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04CD20EEE74D43258F806D67C05C9747 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92FFF00976B34F2D8E7DAC393D880AFF Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:21: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1038" ], - "x-ms-client-request-id": [ "86f3d2f2-2733-45bc-b8a1-70a9ed9d0c3a" ], + "x-ms-unique-id": [ "1179" ], + "x-ms-client-request-id": [ "e2da55ac-2f9d-4675-bc2b-b0b1a7d5ec66" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5853,18 +5853,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ce3cff7-eb2a-4853-a424-43f3e79263f7" ], + "x-ms-request-id": [ "9da0243a-ef10-4c7f-ab8f-06efa27e1f6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/229f3656-8b06-4191-a099-d3708ae2ff94" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc0f9b1b-1fe1-47f0-bbaa-7b74565e6476" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1effb554-00c5-4f7f-a1ea-c89f4fdad118" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121718Z:1effb554-00c5-4f7f-a1ea-c89f4fdad118" ], + "x-ms-correlation-request-id": [ "d0429a51-a5ae-4666-bc90-19969b568285" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022100Z:d0429a51-a5ae-4666-bc90-19969b568285" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 930AFABEA21C48E6AF3C86B8ECF3C2B8 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 743CCD8D48FB4BB786AB47DB047A3701 Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:21:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5874,15 +5874,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1039" ], - "x-ms-client-request-id": [ "33aa5c26-97ef-4549-a004-6eafaf115774" ], + "x-ms-unique-id": [ "1180" ], + "x-ms-client-request-id": [ "e8fc2e7f-6d70-4fda-bbde-fdd6060d5604" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5897,38 +5897,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC53CE4A21C0CB\"" ], + "ETag": [ "\"1DC550D51A76695\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8bbd7c9-a9d7-4ca6-aa2c-756a0b96fc9f" ], + "x-ms-request-id": [ "3317c2a3-a1cf-4159-8608-046b56d801e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d8681155-b84b-4d21-a7a6-ec0c5164e146" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121719Z:d8681155-b84b-4d21-a7a6-ec0c5164e146" ], + "x-ms-correlation-request-id": [ "63b11353-4c31-4ea7-a7d6-5714c62c66a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022101Z:63b11353-4c31-4ea7-a7d6-5714c62c66a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79FE2C642DBE4B1A8AEB51F594270310 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:18Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6310ED84A9E44CE49EBABDD8486528BA Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], + "Date": [ "Fri, 14 Nov 2025 02:21:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8750" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-flmd3a\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-cjes6i-CentralUSwebspace-Linux/sites/Functions-Python-312-flmd3a\",\"repositorySiteName\":\"Functions-Python-312-flmd3a\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-flmd3a.azurewebsites.net\",\"functions-python-312-flmd3a.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-flmd3a.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-flmd3a.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-cjes6i/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-12T12:17:18.6366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-flmd3a\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-flmd3a\\\\$Functions-Python-312-flmd3a\",\"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-cjes6i\",\"defaultHostName\":\"functions-python-312-flmd3a.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:21:00.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-flmd3a\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1040" ], - "x-ms-client-request-id": [ "cc7867e9-3a4a-414f-9507-5d53d2cc869d" ], + "x-ms-unique-id": [ "1181" ], + "x-ms-client-request-id": [ "6fc0274f-0573-4a3a-8e48-77b2a86cb17a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5944,36 +5944,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42b80e5a-fcb2-495f-9058-5fbb49952ad6" ], + "x-ms-request-id": [ "857468e6-2a2a-4e82-80f6-6457aefe3305" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e856f9bf-ebfe-45e0-8d09-9d7397be52e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d90b3adf-3945-40d9-8020-e50fed8e17bd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b7a839ad-ac23-4f74-8771-f802c66e611e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121719Z:b7a839ad-ac23-4f74-8771-f802c66e611e" ], + "x-ms-correlation-request-id": [ "c5bf84a0-ef0e-4007-830c-aa79a8a4979b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022101Z:c5bf84a0-ef0e-4007-830c-aa79a8a4979b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08C82E393DF24B0383F9308ED8E35E02 Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6368AD2F924C47C3B27C0A8B7DCD3519 Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:01Z" ], + "Date": [ "Fri, 14 Nov 2025 02:21:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/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=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragevo6;AccountKey=zRz7bP/5njYZ0qX69PQyc1zk6qKjEixlQNm01WdCyLTg0JI4KzNx9PuNOQ6JYVmLioh9wwYUUPja+ASt5v6F8g==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-flmd3a\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5df6ce2-ade0-4846-9375-91cbac44fd63;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50af0760-dae4-471d-909e-6adb861ceda1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-flmd3a\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1041" ], - "x-ms-client-request-id": [ "56cdfe9d-febc-4f1e-85c3-d5c7c86b4ffb" ], + "x-ms-unique-id": [ "1182" ], + "x-ms-client-request-id": [ "2025bad2-b692-4c3a-a200-cba6122964ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5989,25 +5989,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17c6f929-380d-44ae-a760-54ef32e04094" ], + "x-ms-request-id": [ "85d9e283-9c9a-4063-b2ed-a0414e314d9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c5d39a6-dd6b-406d-a048-b2c131b427b5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "6abb3e56-b178-460a-acb8-b2cf8e8abbaa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251112T121719Z:6abb3e56-b178-460a-acb8-b2cf8e8abbaa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ff3a43c-0499-44b8-bf78-6059b156f868" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "382e2118-5c5f-4d1a-8d36-260ce9bd424f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T022101Z:382e2118-5c5f-4d1a-8d36-260ce9bd424f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE27360D55D64FF59B29953FCDBA2A4E Ref B: CO6AA3150220009 Ref C: 2025-11-12T12:17:19Z" ], - "Date": [ "Wed, 12 Nov 2025 12:17:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2D8535F2CF3436DB9FC418628648E02 Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:01Z" ], + "Date": [ "Fri, 14 Nov 2025 02:21: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-cjes6i/providers/Microsoft.Web/sites/Functions-Python-312-flmd3a/config/web\",\"name\":\"Functions-Python-312-flmd3a\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 b6f3a6fec023..b55c00168be1 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,106 +1,63 @@ { - "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-xj3rn0czbp", - "storageAccountWindows": "functionswinstorageelx", - "functionNamePowerShell": "Functions-PowerShellTest-u074f23mpl", - "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-rqj7bp", - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-lf9t8w", - "functionNameJava": "Functions-Java-pxi52b0hul", - "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-2g56pvnthz", - "functionNameTestApp": "Functions-TestAppName-f93hv67mky", - "functionNameContainer": "Functions-CustomImage-yji9lmaxko", - "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-cjes6i", - "functionAppTestPlanName": "Functions-MyTestPlan1-is0kb9p8ar", - "flexStorageAccountPython": "flexapppythonsa112925", - "functionAppPlanName": "Functions-MyPlan-4gtyj69072", - "flexTestRunId": 112925, - "flexResourceGroupName": "Functions-Flex-RG-112925", - "storageAccountLinux": "functionslinuxstoragevo6", - "newApplInsights": { - "AppId": "a216cd51-e495-41b1-87f4-8d6afd178401", - "ApplicationId": "Functions-PowerShellTest-u074f23mpl-new", - "ApplicationType": {}, - "ConnectionString": "InstrumentationKey=6d61e4a0-2d68-4b31-aac3-2033202c388f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a216cd51-e495-41b1-87f4-8d6afd178401", - "CreationDate": "2025-11-12T11:13:59.9408869Z", - "DisableIPMasking": null, - "DisableLocalAuth": null, - "Etag": "\"6f06faf3-0000-0300-0000-69146bfc0000\"", - "FlowType": {}, - "ForceCustomerStorageForProfiler": null, - "HockeyAppId": null, - "HockeyAppToken": null, - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-lf9t8w/providers/microsoft.insights/components/Functions-PowerShellTest-u074f23mpl-new", - "ImmediatePurgeDataOn30Day": null, - "IngestionMode": {}, - "InstrumentationKey": "6d61e4a0-2d68-4b31-aac3-2033202c388f", - "Kind": "web", - "LaMigrationDate": null, - "Location": "centralus", - "Name": "Functions-PowerShellTest-u074f23mpl-new", - "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShellTest-u074f23mpl-new", - "ProvisioningState": "Succeeded", - "PublicNetworkAccessForIngestion": {}, - "PublicNetworkAccessForQuery": {}, - "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", - "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-u074f23mpl-new_a216cd51-e495-41b1-87f4-8d6afd178401_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-u074f23mpl-new-ws" - }, - "functionNameDotNetIsolated": "Functions-DotNet-Isolated5ivf3pq4d9", - "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-wxft49p0i3", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "functionAppPlanName": "Functions-MyPlan-uha1k8c73r", + "flexTestRunId": "fqti", + "environmentACAName": "azps-envtestbjek", + "storageAccountWindows": "functionswinstoragerqm", + "location": "central us", + "storageAccountLinux": "functionslinuxstoragew45", "functionAppsToCreate": [ { - "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", - "RuntimeVersion": "7.4", - "Name": "Functions-PowerShell-74-du1wbt", - "FunctionsVersion": 4, - "OSType": "Windows", "Runtime": "PowerShell", - "StorageAccountName": "functionswinstorageelx", - "PlanName": "Functions-Windows-Premium-pe9wcd" + "FunctionsVersion": 4, + "Name": "Functions-PowerShell-74-zq9mby", + "RuntimeVersion": "7.4", + "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa", + "PlanName": "Functions-Windows-Premium-fo9ugi", + "StorageAccountName": "functionswinstoragerqm", + "OSType": "Windows" }, { - "ResourceGroupName": "Functions-Test-Linux-Premium-gpxn1b", - "RuntimeVersion": 22, - "Name": "Functions-Node-22-e0u29b", - "FunctionsVersion": 4, - "OSType": "Linux", "Runtime": "Node", - "StorageAccountName": "functionslinuxstoragevo6", - "PlanName": "Functions-Linux-Premium-078h6t" + "FunctionsVersion": 4, + "Name": "Functions-Node-22-nvsk38", + "RuntimeVersion": 22, + "ResourceGroupName": "Functions-Test-Linux-Premium-jxyp27", + "PlanName": "Functions-Linux-Premium-4e5vgl", + "StorageAccountName": "functionslinuxstoragew45", + "OSType": "Linux" }, { - "ResourceGroupName": "Functions-Test-Windows-Consumption-o1blrw", - "RuntimeVersion": 8, - "Name": "Functions-DotNet-8-1axywr", + "Runtime": "DotNet", "FunctionsVersion": 4, + "Name": "Functions-DotNet-8-r0w8sa", + "RuntimeVersion": 8, + "ResourceGroupName": "Functions-Test-Windows-Consumption-si2zeg", + "StorageAccountName": "functionswinstoragerqm", "Location": "central us", - "Runtime": "DotNet", - "StorageAccountName": "functionswinstorageelx", "OSType": "Windows" }, { - "ResourceGroupName": "Functions-Test-Linux-Consumption-cjes6i", - "RuntimeVersion": "3.12", - "Name": "Functions-Python-312-flmd3a", + "Runtime": "Python", "FunctionsVersion": 4, + "Name": "Functions-Python-312-wq8ygc", + "RuntimeVersion": "3.12", + "ResourceGroupName": "Functions-Test-Linux-Consumption-le3f9v", + "StorageAccountName": "functionslinuxstoragew45", "Location": "central us", - "Runtime": "Python", - "StorageAccountName": "functionslinuxstoragevo6", "OSType": "Linux" } ], - "flexIdentityInfo": { - "ClientId": "e76d6800-ea07-432f-b8ef-88057ad63ff7", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112925/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-112925", - "Location": "eastasia", - "Name": "my-flex-app-uai-112925", - "PrincipalId": "3f8376fb-b747-4ef3-b5a7-2249978a1f9c", - "ResourceGroupName": "Functions-Flex-RG-112925", + "functionNamePowerShell": "Functions-PowerShellTest-1hufk4w38b", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-5b9pkr", + "functionAppTestPlanName": "Functions-MyTestPlan1-mzxvaegbqk", + "identityInfo": { + "ClientId": "03a6c42e-ee57-4c44-be18-1e994b809a8b", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "Location": "centralus", + "Name": "ID1", + "PrincipalId": "32f8d9da-35d3-41c0-989c-25e3ed74edba", + "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa", "SystemData": { "CreatedAt": null, "CreatedBy": null, @@ -119,14 +76,82 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-o1blrw", - "identityInfo": { - "ClientId": "07c990f3-9ff2-49a7-83b7-6611809c6eb1", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-lf9t8w/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-ry1xpa", + "functionNameTestApp": "Functions-TestAppName-9ekrmwpy0z", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-12q6pcrzoi", + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-le3f9v", + "flexResourceGroupName": "Functions-Flex-RG-fqti", + "flexStorageAccountNode": "flexappnodesafqti", + "flexStorageAccountCustom": "flexappcustomsafqti", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-4e5vgl", + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-jxyp27", + "functionNameContainer": "Functions-CustomImage-pj3v91g7zb", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", + "functionAppTestPlanName2": "Functions-MyTestPlan2-e36rsf8y2l", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-zeaoxcpv3i", + "flexLocation": "East Asia", + "storageAccountNameACA": "funcacastotoragebjek", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-0vcunwydg7", + "functionNameNode": "Functions-Node-zur6igjh15", + "newApplInsights": { + "AppId": "c1f3521a-f04c-4aef-bcc1-e1cca9013861", + "ApplicationId": "Functions-PowerShellTest-1hufk4w38b-new", + "ApplicationType": {}, + "ConnectionString": "InstrumentationKey=a866cc82-d5d8-4255-9a52-47cf08de5202;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c1f3521a-f04c-4aef-bcc1-e1cca9013861", + "CreationDate": "2025-11-14T01:14:39.0556967Z", + "DisableIPMasking": null, + "DisableLocalAuth": null, + "Etag": "\"0607a1ca-0000-0300-0000-691682830000\"", + "FlowType": {}, + "ForceCustomerStorageForProfiler": null, + "HockeyAppId": null, + "HockeyAppToken": null, + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b-new", + "ImmediatePurgeDataOn30Day": null, + "IngestionMode": {}, + "InstrumentationKey": "a866cc82-d5d8-4255-9a52-47cf08de5202", + "Kind": "web", + "LaMigrationDate": null, "Location": "centralus", - "Name": "ID1", - "PrincipalId": "a33012dd-6c07-4e9f-923e-7b3bbf5547ea", - "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", + "Name": "Functions-PowerShellTest-1hufk4w38b-new", + "PrivateLinkScopedResource": null, + "PropertiesName": "Functions-PowerShellTest-1hufk4w38b-new", + "ProvisioningState": "Succeeded", + "PublicNetworkAccessForIngestion": {}, + "PublicNetworkAccessForQuery": {}, + "RequestSource": {}, + "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa", + "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-1hufk4w38b-new_c1f3521a-f04c-4aef-bcc1-e1cca9013861_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-new-ws" + }, + "flexStorageAccountPython": "flexapppythonsafqti", + "functionNameDotNetIsolated": "Functions-DotNet-Isolateduhnte46q0o", + "acaTestRunId": "bjek", + "workSpaceACAName": "workspace-azpstestbjek", + "functionNameDotNet": "Functions-DotNet-ah7tpo8wyj", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-7jfq3l", + "functionNameCustomHandler": "Functions-CustomHandleri5nz8vgkem", + "functionNamePython": "Functions-Python-nds0y973f2", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-9mznld", + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-si2zeg", + "flexStorageAccountJava": "flexappjavasafqti", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-fo9ugi", + "locationACA": "WestCentralUS", + "flexStorageAccountPowerShell": "flexapppowershellsafqti", + "functionNameJava": "Functions-Java-la9uw4623c", + "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsaf", + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-q8hc7lwuof", + "flexIdentityInfo": { + "ClientId": "8a484c9c-cfe7-487d-9c03-6b99c456c37c", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti", + "Location": "eastasia", + "Name": "my-flex-app-uai-fqti", + "PrincipalId": "0b3df055-ad5e-4754-832a-e212e1370f96", + "ResourceGroupName": "Functions-Flex-RG-fqti", "SystemData": { "CreatedAt": null, "CreatedBy": null, @@ -145,45 +170,26 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-rozbul", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-o8n3yqx5lc", - "functionNamePython": "Functions-Python-10bxo65l7g", - "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-jm5wr8ezis", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-pe9wcd", - "flexStorageAccountPowerShell": "flexapppowershellsa11292", - "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsa1", - "functionNameDotNet": "Functions-DotNet-we3pd25b9g", - "flexStorageAccountCustom": "flexappcustomsa112925", - "functionNameNode": "Functions-Node-qb4h0d3z2x", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-bzn08hgcxk", + "resourceGroupNameACA": "Functions-ACA-Test-bjek", "servicePlansToCreate": [ { "WorkerType": "Windows", + "Name": "Functions-Windows-Premium-fo9ugi", "MaximumWorkerCount": 10, - "Location": "central us", + "Sku": "EP1", "MinimumWorkerCount": 1, - "ResourceGroupName": "Functions-Test-Windows-Premium-lf9t8w", - "Name": "Functions-Windows-Premium-pe9wcd", - "Sku": "EP1" + "Location": "central us", + "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa" }, { "WorkerType": "Linux", + "Name": "Functions-Linux-Premium-4e5vgl", "MaximumWorkerCount": 10, - "Location": "central us", + "Sku": "EP1", "MinimumWorkerCount": 1, - "ResourceGroupName": "Functions-Test-Linux-Premium-gpxn1b", - "Name": "Functions-Linux-Premium-078h6t", - "Sku": "EP1" + "Location": "central us", + "ResourceGroupName": "Functions-Test-Linux-Premium-jxyp27" } - ], - "functionAppTestPlanName2": "Functions-MyTestPlan2-nth8y5exl1", - "location": "central us", - "flexStorageAccountNode": "flexappnodesa112925", - "planNameWorkerTypeLinux": "Functions-Linux-Premium-078h6t", - "flexStorageAccountJava": "flexappjavasa112925", - "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-q80swm", - "flexLocation": "East Asia", - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-gpxn1b", - "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "functionNameCustomHandler": "Functions-CustomHandlerh7ucdtvris" + ] } From 37ea7f559f27f4c1d8e244e834bbfc28b647969b Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 14 Nov 2025 15:05:25 -0800 Subject: [PATCH 23/26] Update Flex Consumption tests to latest version --- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 52 ++++++------------- 1 file changed, 17 insertions(+), 35 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 8fb6bea0e4bc..4e1c3789b9c8 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -61,8 +61,8 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 } - $conainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix - return $conainerName + $containerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + return $containerName } function Get-FlexPlanName @@ -718,10 +718,10 @@ Describe 'New-AzFunctionApp - Flex Consumption' { # Verify no function app was actually created $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue - $functionApp | Should -BeNull + $functionApp | Should -Be $null } - It "Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)" { + It "Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)" { # Use the PowerShell test case as base $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "PowerShell" } @@ -736,20 +736,6 @@ Describe 'New-AzFunctionApp - Flex Consumption' { Write-Verbose "Storage account name: $storageAccountName" -Verbose Write-Verbose "Invalid App Insights name: $invalidAppInsightsName" -Verbose - Write-Verbose "Getting storage account context for the container validation..." -Verbose - $storageAccount = Get-AzStorageAccount -ResourceGroupName $flexResourceGroupName -Name $storageAccountName - $storageContext = $storageAccount.Context - - Write-Verbose "Capturing existing plans and containers before the test..." -Verbose - $plansBefore = Get-AzFunctionAppPlan -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue - $containersBefore = Get-AzStorageContainer -Context $storageContext -ErrorAction SilentlyContinue - - $planNamesBeforetest = @($plansBefore | ForEach-Object { $_.Name }) - $containerNamesBefore = @($containersBefore | ForEach-Object { $_.Name }) - - Write-Verbose "Plans before test: $($planNamesBeforetest.Count)" -Verbose - Write-Verbose "Containers before test: $($containerNamesBefore.Count)" -Verbose - $errorId = "ApplicationInsightsProjectNotFound" $expectedErrorMessage = "Failed to get application insights project name '$invalidAppInsightsName'. Please make sure the project exist." @@ -770,30 +756,26 @@ Describe 'New-AzFunctionApp - Flex Consumption' { } Write-Verbose "Validate FullyQualifiedErrorId is $errorId" -Verbose - $myError.FullyQualifiedErrorId | Should Be $errorId + $myError | Should -Not -BeNullOrEmpty + Write-Verbose "Caught error FullyQualifiedErrorId: $($myError.FullyQualifiedErrorId)" -Verbose + $myError.FullyQualifiedErrorId | Should -Match $errorId - Write-Verbose "Validate Exception.Message is $expectedErrorMessage" -Verbose - $myError.Exception.Message | Should Match $expectedErrorMessage + Write-Verbose "Validate exception message is '$expectedErrorMessage'" -Verbose + $myError.Exception.Message | Should -Match $expectedErrorMessage Write-Verbose "Verifying no function app was created" -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue - $functionApp | Should -BeNull + $functionApp | Should -Be $null Write-Verbose "Wait for the plan to be deleted by the backend..." -Verbose - Start-Sleep -Seconds 10 + Start-TestSleep -Seconds 10 Write-Verbose "Verifying the Flex Consumption plan was cleaned up." -Verbose $expectedPlanName = Get-FlexPlanName -ResourceGroupName $flexResourceGroupName - Write-Verbose "Expected Flex plan name: $expectedPlanName" -Verbose - - $flexPlan = Get-AzFunctionAppPlan -ResourceGroupName $flexResourceGroupName -Name $expectedPlanName -ErrorAction SilentlyContinue - $flexPlan | Should -BeNull - Write-Verbose "Verifying the deployment container was cleaned up." -Verbose - $expectedContainerName = Get-AppPackageContainerName -Name $appName - Write-Verbose "Expected deployment container name: $expectedContainerName" -Verbose - $deploymentContainer = Get-AzStorageContainer -Context $storageContext -Name $expectedContainerName -ErrorAction SilentlyContinue - $deploymentContainer | Should -BeNull + Write-Verbose "Expected Flex plan name: $expectedPlanName" -Verbose + $plan = Get-AzFunctionAppPlan -Name $expectedPlanName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue + $plan | Should -Be $null } It "Removes Flex Consumption app and deletes the plan automatically" { @@ -835,13 +817,13 @@ Describe 'New-AzFunctionApp - Flex Consumption' { Write-Verbose "Verify the function app was deleted." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue - $functionApp | Should -BeNull + $functionApp | Should -Be $null Write-Verbose "Wait for the plan to be deleted by the backend." -Verbose - Start-Sleep -Seconds 10 + Start-TestSleep -Seconds 10 Write-Verbose "Verifying that the Flex Consumption plan was deleted." -Verbose $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue - $plan | Should -BeNull + $plan | Should -Be $null } } From 7e30c139b74e7c83fbf82f9f66ce5d7f9a9e2b21 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 14 Nov 2025 16:48:57 -0800 Subject: [PATCH 24/26] Update test recordings to latest version --- .../test/Get-AzFunctionApp.Recording.json | 736 +- ...unctionAppAvailableLocation.Recording.json | 148 +- .../test/Get-AzFunctionAppPlan.Recording.json | 258 +- ...Remove-AzFunctionAppSetting.Recording.json | 872 +-- ...FunctionApp.FlexConsumption.Recording.json | 6965 ++++++++--------- .../test/New-AzFunctionApp.Recording.json | 5919 +++++++------- .../test/New-AzFunctionAppPlan.Recording.json | 142 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 3259 ++++---- ...te-Remove-AzFunctionAppPlan.Recording.json | 780 +- .../test/Remove-AzFunctionApp.Recording.json | 714 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3080 ++++---- .../Functions.Autorest/test/env.json | 234 +- 12 files changed, 11576 insertions(+), 11531 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index 8939496ce78e..f5d6d51d66ea 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json @@ -7,7 +7,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "549009c0-7cdb-4360-bbf3-598c86eaa706" ], + "x-ms-client-request-id": [ "86a83d17-9968-41b6-a60b-87d9b807df8f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,38 +22,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5503F3A7DE40\"" ], - "x-ms-original-request-ids": [ "4ab56373-43a4-40f8-9a26-48d08e9834ea" ], + "ETag": [ "\"1DC55BC4DB59F75\"" ], + "x-ms-original-request-ids": [ "67c50af4-9d33-48de-8bde-c06edd34dc90" ], "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": [ "ab51f2cc-bc74-441c-afff-bacdd49d58fd" ], - "x-ms-correlation-request-id": [ "ab51f2cc-bc74-441c-afff-bacdd49d58fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011759Z:ab51f2cc-bc74-441c-afff-bacdd49d58fd" ], + "x-ms-request-id": [ "fadd8429-4f0b-4d1f-bda3-0b1c12a5bd28" ], + "x-ms-correlation-request-id": [ "fadd8429-4f0b-4d1f-bda3-0b1c12a5bd28" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T231911Z:fadd8429-4f0b-4d1f-bda3-0b1c12a5bd28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCEC3502D53748A3B4A80E5AB0AE6FF7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:17:59Z" ], - "Date": [ "Fri, 14 Nov 2025 01:17:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFC5CBFA61B34BAF9B66C301970294AD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "33773" ], + "Content-Length": [ "33726" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:13:57.54\",\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.28\",\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:12:54.9266667\",\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:13:36.0233333\",\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:10:08.19\",\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:11:08.82\",\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:12:32.4233333\",\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "c11752c5-b7a4-4272-8af1-536c5a17ad5b" ], + "x-ms-client-request-id": [ "5e618146-eb58-4497-aa0a-78d2665fe8ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -69,36 +69,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44037d69-eaf5-4e4b-b0d8-b44255ae6025" ], + "x-ms-request-id": [ "335632bc-ec0b-4958-bb0d-9fccb256442a" ], "X-AspNet-Version": [ "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/ceff0300-f3ef-4a22-9f79-343c6dbe784b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/01874c2d-1f7f-4921-a4f0-1f8a83364586" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "53f2843f-5440-4770-a6b8-7fa07e2d6153" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T011800Z:53f2843f-5440-4770-a6b8-7fa07e2d6153" ], + "x-ms-correlation-request-id": [ "ff89cdd7-fdcc-499d-9a7b-be369f23ac68" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T231911Z:ff89cdd7-fdcc-499d-9a7b-be369f23ac68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3BB050513FA42339900E4F35B68F4BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:17:59Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD635837B9C44D0E917C6B751F46F2A9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "98288fe8-ac7c-461f-850e-ca2f0e8ca543" ], + "x-ms-client-request-id": [ "059fb4da-ef11-4204-9857-14a9b58d542d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -114,37 +114,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9365678b-b58d-4dbd-bd5f-50a09d98d8d3" ], + "x-ms-request-id": [ "57c2c138-2abe-4247-9b7b-d5789d318c6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/886a2e3b-3a20-4b46-addf-f8a38a82fb4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/375320ab-a3a7-4b6f-a286-be57e90fcd0c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "de8f273d-ea17-41be-b5c3-0b7317a06522" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011800Z:de8f273d-ea17-41be-b5c3-0b7317a06522" ], + "x-ms-correlation-request-id": [ "c7746640-e30b-4e49-be25-f69ef60bb569" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231912Z:c7746640-e30b-4e49-be25-f69ef60bb569" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C031496E00A74BBF99B3F576F5E944A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:00Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54A140D8AAE742A29161D4399438B057 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "b64306d6-7130-4b3b-98ea-3cd158fe033e" ], + "x-ms-client-request-id": [ "6690e3c5-825b-41e2-8539-398be279c99c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -160,36 +160,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d3816d9-d3a9-4fae-b236-05b7cbf4e76d" ], + "x-ms-request-id": [ "c989edf5-a94d-48e5-bc1a-edecedef6343" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20222d23-e3a8-4895-ae29-4b686c659b61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad993916-c7dc-4924-89f1-f3c1875cf588" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4e2a156a-1c64-43e7-8128-cc398fdcee26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011800Z:4e2a156a-1c64-43e7-8128-cc398fdcee26" ], + "x-ms-correlation-request-id": [ "286b554a-2b35-4961-8d6e-a00a15801a27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231912Z:286b554a-2b35-4961-8d6e-a00a15801a27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EB050E1BF1D41CEA70D5A5C4C091A33 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:00Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8CC69A7D4E243299F7F3D6AFD012310 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "d8a86769-90fc-4847-ac1f-68859c357051" ], + "x-ms-client-request-id": [ "3cdf7b47-65f6-4c55-9bfd-d67e7231c163" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -205,37 +205,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a00ea874-8917-4414-8490-5409a8bc5f2b" ], + "x-ms-request-id": [ "1dd8ff4b-bd9c-4327-abba-8290ef0daa46" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37b5a26f-d85b-4e8b-a569-74a2d5e76fbb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4df0d6c4-c723-4512-a1f7-4a577302ec7c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "87a72186-6435-4c40-a18b-d35611064ec7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011800Z:87a72186-6435-4c40-a18b-d35611064ec7" ], + "x-ms-correlation-request-id": [ "99e93faf-6018-4d28-ae96-e22069c267e3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231912Z:99e93faf-6018-4d28-ae96-e22069c267e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C45E84AFF4C4CA5B960DBC6A16D6019 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:00Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE72F00A46484200A3485776C43B7B3E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "17ed079a-40e1-4266-8801-bfc259e75a67" ], + "x-ms-client-request-id": [ "ac0a248b-777a-4a0e-b611-dd022e9c9f4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -251,36 +251,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "92c35df8-3f8a-47aa-b7c0-d87e194f45c0" ], + "x-ms-request-id": [ "d733360c-f2f3-49bc-93c4-7ef31089504f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a49e5b8e-1424-4c9e-abc9-7afda982df38" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2a9090b6-2a62-44e2-930d-fbc0df6d5f39" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7fc15d44-c947-4441-9975-ca5301874d75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:7fc15d44-c947-4441-9975-ca5301874d75" ], + "x-ms-correlation-request-id": [ "276507fa-d9b6-4e83-b3fc-94f00402f252" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231912Z:276507fa-d9b6-4e83-b3fc-94f00402f252" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF972D98DE364963997312FBB85484C1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 08233EE02D194F9684E3D0D2AFFBF105 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1198" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "a71feafb-1a16-4113-aff8-848703b7ddc5" ], + "x-ms-client-request-id": [ "dcbd5a89-3f2f-4d47-b0b1-6672d91451eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -296,37 +296,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc527f08-b3c1-4194-a90e-4b3d04059d50" ], + "x-ms-request-id": [ "8c9e83c8-633a-48ec-bfe7-a27e414c06b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f0c76b9-c106-4fa5-af95-e49ef2b437fc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "343a45ec-02d0-4858-a31a-4de90f5539b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:343a45ec-02d0-4858-a31a-4de90f5539b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33319a72-2e07-4797-8a22-4be1b5a9a1c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "018a3b04-d6da-4ff2-a536-5038e08fa975" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231913Z:018a3b04-d6da-4ff2-a536-5038e08fa975" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 936C697062154A319CEC25CDD683F3D4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A300CF637FC4066A51B495723B647EA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:12 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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "4db03d98-c2c0-42fa-9c62-ba69e9227149" ], + "x-ms-client-request-id": [ "47ca0dc1-25f2-4810-9b77-da9fea934c08" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -342,36 +342,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3930de11-bcfe-4099-9793-0372ef03fa7d" ], + "x-ms-request-id": [ "353eecad-df12-49ec-81b6-55a6e057ba94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20656e6c-4182-4c75-b7aa-103a5ddc5446" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6c196e10-7188-4310-a420-fbc765e88c7a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:6c196e10-7188-4310-a420-fbc765e88c7a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a90155b6-9878-4b4e-9a75-e1df660a2837" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "bb886bf8-22d5-404a-bc71-b7903ccac610" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231913Z:bb886bf8-22d5-404a-bc71-b7903ccac610" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03BE6BF09E5948EF82FCFB24D9AE2BFA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F25255AAE48420BAA5A45A07B8041EA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "bdcc8c02-17c4-4f02-acc4-2d4e56da690d" ], + "x-ms-client-request-id": [ "83f45957-c14e-48a3-85c8-aebf14916704" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -387,37 +387,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2de6f4ee-023c-4d43-b669-33ee40d34a62" ], + "x-ms-request-id": [ "2a21428f-2de2-4a06-a4ab-48b035c0debd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/abcfc35b-559c-4ae9-8d92-0d8a544047b6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eab91897-be43-4e57-b901-0b37f01406b9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84d83c50-33ab-4832-bef5-afcb67f4fb4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011801Z:84d83c50-33ab-4832-bef5-afcb67f4fb4f" ], + "x-ms-correlation-request-id": [ "ec528ef8-2d07-4163-9a82-cfb6aecc2bf7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231913Z:ec528ef8-2d07-4163-9a82-cfb6aecc2bf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E295AFCDB6B426FA0E91E4B090A7CA3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3ED82A7AAF340E48A293B771F255527 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "d51be4da-02c4-4f88-bb96-e3d0c08207b5" ], + "x-ms-client-request-id": [ "6a9455aa-60fa-4ab8-b700-bb100e18dff6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -432,38 +432,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550378B71700\"" ], + "ETag": [ "\"1DC55BBD1D4C5E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "877d2cb7-1ece-4fa1-ad91-c26d27d8ff06" ], + "x-ms-request-id": [ "8ca4d270-a287-45ed-95e0-a07e5eb825b7" ], "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": [ "6c97e90b-0726-4e6a-ada2-b587dfee3f4d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:6c97e90b-0726-4e6a-ada2-b587dfee3f4d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "83bd6f05-c869-4754-b010-1814e411a266" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231913Z:83bd6f05-c869-4754-b010-1814e411a266" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FA42FF0455C40EDB0614F2F3367110E Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C97AB6421C84D3DAC0BA2AA72723B82 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8395" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:10:08.19\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "1c805077-822d-47b1-8f85-27972603d936" ], + "x-ms-client-request-id": [ "5c3efbdc-f518-4d57-934a-3964dee56ee6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -479,36 +479,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74cf39b4-7ec2-42d1-a610-7ee350c1e93c" ], + "x-ms-request-id": [ "b035ffd4-cf73-4435-b3c8-4937ec60aee3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c65c6f06-0d8e-4d80-9895-7cf7beb4ef96" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "637c22d2-6741-4818-ae40-4971675164db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:637c22d2-6741-4818-ae40-4971675164db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5827c9e-9691-4c22-bdc1-50b0ce3b9f2f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "7f96f284-9aa2-4b4f-afc1-35c8d372d797" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231914Z:7f96f284-9aa2-4b4f-afc1-35c8d372d797" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58ACBF9BA7284567B964D3B3FC602F03 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 96941AB0872A4E36B42D84250EDFBDA4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "9b80ebec-8920-4d1d-9024-0583e437333c" ], + "x-ms-client-request-id": [ "50b553e5-2b4d-4da1-816a-b82d73bc4eb7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -524,37 +524,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2e9d510-90aa-42c2-911b-b5720a75b35f" ], + "x-ms-request-id": [ "9933f78c-6b17-45a2-9948-f6cf0592032c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b92e2abc-e339-4058-b631-2cd0b9bc2918" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc9c51d3-a253-4237-b2ec-48f6d2ed013f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b9285d36-caff-4412-807a-bb19c63e582c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:b9285d36-caff-4412-807a-bb19c63e582c" ], + "x-ms-correlation-request-id": [ "070e27bb-715f-4440-b1c3-f119124b743a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231914Z:070e27bb-715f-4440-b1c3-f119124b743a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1F1F9AAA07B48E49F2EB08E38CCBDCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE92B3F325E341509E095D6CC3A7F1A7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "c8217b5c-e751-455b-a8cf-a872ea28805f" ], + "x-ms-client-request-id": [ "b76e9f4e-e5bc-4a50-b2f2-7b1bfe2f05c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -569,38 +569,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55039C7D6A40\"" ], + "ETag": [ "\"1DC55BBF5F82D40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "65876fd7-9812-4ab1-b554-1d1e8e6b40b6" ], + "x-ms-request-id": [ "995fcc22-9596-4cbe-b016-b9ca7c3aa705" ], "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": [ "1f7a10d9-7469-423c-9166-3183ea7073a1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011802Z:1f7a10d9-7469-423c-9166-3183ea7073a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e0e12a84-c518-4944-b10f-5e29d373b29a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231914Z:e0e12a84-c518-4944-b10f-5e29d373b29a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69CEE01ECDC84760906A71B8A423E679 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F15E2D44CFFD40B8A4884A0831D2BEC1 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8320" ], + "Content-Length": [ "8332" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:11:08.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\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "fd8e2628-508b-4496-a66e-f537172553bc" ], + "x-ms-client-request-id": [ "dd6394a7-a950-497f-83e2-f31cb7ff3e8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -616,36 +616,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e265231-14c5-482c-8404-d259311ba00a" ], + "x-ms-request-id": [ "27074ef4-9b78-4219-b68c-ea978cc21d08" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8622b1b-3257-4df5-9e79-551f0522da94" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49a5eabc-3636-458c-a49f-8b86e845bbb4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fc34c19e-a4ef-44cf-a688-2968571ab101" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011803Z:fc34c19e-a4ef-44cf-a688-2968571ab101" ], + "x-ms-correlation-request-id": [ "53d18a6a-c148-4215-a8e2-1da697b146cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231914Z:53d18a6a-c148-4215-a8e2-1da697b146cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FA40936FE7E425898272450B68BAAE1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84310024B94D4AD7B1817EC9843DB3D2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "ce4b0d39-abff-4b09-835b-2aed9bf4fd80" ], + "x-ms-client-request-id": [ "906af1af-990e-4c7b-a481-4ec2b26cff53" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -661,37 +661,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e840d232-9d29-4c49-961f-72275ec1608a" ], + "x-ms-request-id": [ "39cd4a1e-4234-4293-b6f1-80f25a0c79da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b42a22f2-0bcd-4b91-9898-6bd637d5983b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f8ec2360-9311-49b9-9bfb-e1d83073e59c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011803Z:f8ec2360-9311-49b9-9bfb-e1d83073e59c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4f97dab-f551-4ca8-b06b-c82d39a34fee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "8f1a1c26-058c-4be4-9e90-9f162910da30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231915Z:8f1a1c26-058c-4be4-9e90-9f162910da30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A190A94225D4087B3F4449F0CD4F2CA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51F7C2405F934AD887282A2CCD332200 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "8ef58c3c-f30c-4df4-9fa1-73eb4c9db4a8" ], + "x-ms-client-request-id": [ "fe7bdd02-40ba-49a4-8183-96a0d76359ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -706,38 +706,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5503CE55D4EB\"" ], + "ETag": [ "\"1DC55BC27CD0875\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "986fa33b-5d35-40d5-b0b6-a0abd1b41548" ], + "x-ms-request-id": [ "947fa9c9-eef6-434d-9d21-77388f0908a4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ce290dd5-a7a0-4c52-b132-b8eb56c25660" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011803Z:ce290dd5-a7a0-4c52-b132-b8eb56c25660" ], + "x-ms-correlation-request-id": [ "2a86f401-1b8a-406a-a685-956e286cc2b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231915Z:2a86f401-1b8a-406a-a685-956e286cc2b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EA38C482FA24F2CB8C90624C1D77498 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 159EB11C7A344422BEE02D0F7B5E4C74 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:12:54.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:12:32.4233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "b51bac5e-2f9a-4d38-b187-f340e4000ec0" ], + "x-ms-client-request-id": [ "321fec68-4b1b-4d12-b832-1f7deb5b4426" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -753,36 +753,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5cf4ee69-5dc2-40f2-95d2-4bf0fcecf66a" ], + "x-ms-request-id": [ "6b9a34a0-df0a-4523-bf40-943969a2c580" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/846fb423-863d-4a49-beea-d9916d1892ba" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5f722744-f6c3-4bed-a134-e7b8ae45c0ef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:5f722744-f6c3-4bed-a134-e7b8ae45c0ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea3fb6bd-21f2-4a98-a941-b7727737c761" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "796" ], + "x-ms-correlation-request-id": [ "c29e71d1-9fde-4124-b40f-0ed6262b780e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231915Z:c29e71d1-9fde-4124-b40f-0ed6262b780e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1C10463DCF741C1BFDBC327A80B165D Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46B0BDFC8A024370A8D6E7C89F7EEBFF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "c33d8b07-8582-4447-951b-44766def5ec2" ], + "x-ms-client-request-id": [ "6f091e68-4082-4713-9674-12eab6291ccc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -798,37 +798,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11cf6246-0aa6-4de7-bdc2-6a5830c1df87" ], + "x-ms-request-id": [ "d89ebcd8-e50a-4f40-a1b9-102c96942d91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/66176d8f-c570-4dfa-ab52-e92c5bfc1077" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3bfb98d6-32bb-4bba-bfed-df7ba7a3131f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "60c23916-a8ae-4bc6-abb9-c7daaa57e21a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:60c23916-a8ae-4bc6-abb9-c7daaa57e21a" ], + "x-ms-correlation-request-id": [ "3c4ca6e8-ae76-4501-aace-5822c7b2687c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231915Z:3c4ca6e8-ae76-4501-aace-5822c7b2687c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80257AFD5F774649879BE7A6B1B71D13 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57229DA1070945BDBA372A234D68729F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19: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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "6c9a588c-a5c6-48b7-90fd-1232f3e8c956" ], + "x-ms-client-request-id": [ "8443b2b3-754d-4c13-9918-7d8bce65dbc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -843,38 +843,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5503F3A7DE40\"" ], + "ETag": [ "\"1DC55BC4DB59F75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c26117a-3786-494c-997f-b0f01736b99b" ], + "x-ms-request-id": [ "948d89b6-91d4-4b29-a54b-f19ed0aee4b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a7dacde-dbd2-468f-ae2d-f474ba772cdd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:3a7dacde-dbd2-468f-ae2d-f474ba772cdd" ], + "x-ms-correlation-request-id": [ "9427d578-01ad-4869-a101-4e132cc81631" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231916Z:9427d578-01ad-4869-a101-4e132cc81631" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 927AC9E37E864318B6464057EE9FB2DF Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF1FC146FDA4425089E0650C32F97FAA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8283" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:13:57.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:13:36.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "352ae0b5-79fa-4377-acc6-a1ef84f13817" ], + "x-ms-client-request-id": [ "5073f283-2cfb-4e5a-a9bd-94d605ea2afa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -890,36 +890,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2efad2a5-e0c1-4ddb-9f41-d76f738e873a" ], + "x-ms-request-id": [ "0a135f8b-5033-4737-9e92-fd0b41604eec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49ff7ea4-0609-4e28-8174-9e6b19600067" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e914a7cb-21de-4b74-9f79-c6dacc3ca2f5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011804Z:e914a7cb-21de-4b74-9f79-c6dacc3ca2f5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6918bad2-1b3f-4f64-8000-70723b519a68" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "403fbc0a-b0a6-4623-bfe2-42b5b5b7d4c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231916Z:403fbc0a-b0a6-4623-bfe2-42b5b5b7d4c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AC1E1D11C744133A6FCF0864FD1D63B Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB41277F8F414E71886C725702E6A849 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:16Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "b8a1aef0-586a-4a25-8c33-21f9963adcdc" ], + "x-ms-client-request-id": [ "85615a24-9d5b-4221-b231-8481b78909dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -935,37 +935,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b80b2b34-b6e2-49d3-bbcb-9e51ad7e0d0b" ], + "x-ms-request-id": [ "534c979c-97c0-4788-bbb4-509346b495ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d99c52d-1f63-4722-af9e-b970c7d80b9e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1095" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16495" ], - "x-ms-correlation-request-id": [ "490ce7ab-b094-41a5-98a2-cd686301be40" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:490ce7ab-b094-41a5-98a2-cd686301be40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a99e731a-7daf-4c2d-924a-21b0b0ef4d99" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bdbfc8db-fe60-4069-8bb0-1ca901d324e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231916Z:bdbfc8db-fe60-4069-8bb0-1ca901d324e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE7D7B82F44B462EAF062F6BB08B70F9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAA5755B5A7947F88E408DA152090EB2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:16Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-ry1xpa/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-rs70mo/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-ry1xpa/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-rs70mo/providers/Microsoft.Web/sites?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "d9596307-26f9-4085-afa4-9adcf344b942" ], + "x-ms-client-request-id": [ "a9adba35-3efa-4a23-a81f-b43317f72260" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -980,37 +980,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "74d6e1fd-e69b-4271-83e4-88b908fee34c" ], + "x-ms-original-request-ids": [ "4b1ebd95-0807-4204-abcb-f649dc8fff22" ], "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": [ "ead3e0fd-0ea0-4b57-9d3b-f602ed54bd87" ], - "x-ms-correlation-request-id": [ "ead3e0fd-0ea0-4b57-9d3b-f602ed54bd87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:ead3e0fd-0ea0-4b57-9d3b-f602ed54bd87" ], + "x-ms-request-id": [ "f20935c3-8622-470a-8d80-9f5ede027766" ], + "x-ms-correlation-request-id": [ "f20935c3-8622-470a-8d80-9f5ede027766" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231916Z:f20935c3-8622-470a-8d80-9f5ede027766" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90FA9355414F4A7D866440904EC1AF96 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 691B4824794E411E81A6A0826271DC9B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:16Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8217" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:10:08.19\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "7243c8b3-5e24-465c-8e03-3b099c450dac" ], + "x-ms-client-request-id": [ "16cbffc0-2cdd-4df7-ab9c-68e95bb585bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1026,36 +1026,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6622d405-7cb1-47a5-9142-0fc1bcffaa07" ], + "x-ms-request-id": [ "41499723-17eb-4686-af62-97ab8abba2f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/64ed7440-0a15-4667-b631-84a28629bb98" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a69e2f4-5d90-48dc-a796-b24d32d6cb3f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a0033112-8446-4fe8-b26b-ec0808be97ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:a0033112-8446-4fe8-b26b-ec0808be97ae" ], + "x-ms-correlation-request-id": [ "004b5b0f-935f-4797-bb9c-bc6a81cada37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231917Z:004b5b0f-935f-4797-bb9c-bc6a81cada37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78EF51DC46DF49B69B8E582D8A9BB1B3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63573F4852314AF2AF5A1C88D598AFE3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "ce3f97b9-38e1-41db-a517-bea3044c94f1" ], + "x-ms-client-request-id": [ "3140053d-44de-4ba2-b86a-12faa65d5e01" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1071,25 +1071,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "993139b5-a658-44ee-bf24-8f24c522cfc3" ], + "x-ms-request-id": [ "22c0fc3f-e64c-487b-8ec4-bd04ed0e405c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bba8114e-d354-4c58-8341-ce1553f551bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/53b7449c-5d90-4d5f-a28f-01c2cab00502" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "34464a94-4a6d-4d54-8b0c-dd6920b7e4fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011805Z:34464a94-4a6d-4d54-8b0c-dd6920b7e4fe" ], + "x-ms-correlation-request-id": [ "198470d1-a811-41a9-b366-972fb89719a3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231917Z:198470d1-a811-41a9-b366-972fb89719a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2667AD64C974DC2854E0E15D46A80E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14FD7172489F4B619CB39CB8B4EDD3A4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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,7 +1101,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "b55ae8f9-9815-4f48-8286-9a74c69d6144" ], + "x-ms-client-request-id": [ "7f433488-d77f-4871-a5d6-91fd4bb8957f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1116,38 +1116,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5503F3A7DE40\"" ], - "x-ms-original-request-ids": [ "db21edbe-4267-4db0-bb56-7d8daed7dfcc" ], + "ETag": [ "\"1DC55BC4DB59F75\"" ], + "x-ms-original-request-ids": [ "711ccd0e-8227-457f-abea-60b62bda9f1d" ], "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": [ "bc14b505-abc2-4afb-8198-b51bdbcb17f7" ], - "x-ms-correlation-request-id": [ "bc14b505-abc2-4afb-8198-b51bdbcb17f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011806Z:bc14b505-abc2-4afb-8198-b51bdbcb17f7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "7552a4c4-aab8-43b8-b3e5-99c5d02524c7" ], + "x-ms-correlation-request-id": [ "7552a4c4-aab8-43b8-b3e5-99c5d02524c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231917Z:7552a4c4-aab8-43b8-b3e5-99c5d02524c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3E098A58EFB4100ACB41A61EE6F04BA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F4CB4AA2B1F44029E47DEB14DE18BAA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "33773" ], + "Content-Length": [ "33726" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:12:54.9266667\",\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:13:57.54\",\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:10:31.28\",\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:11:08.82\",\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:10:08.19\",\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:13:36.0233333\",\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:12:32.4233333\",\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "3fb0c376-d890-498f-a5b9-5b7a097a7f1f" ], + "x-ms-client-request-id": [ "ffb2cda6-7e9e-46a6-b14d-393d561d77db" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1163,36 +1163,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "822cf694-6ac8-43a7-b6cd-d7e73bcbf6d9" ], + "x-ms-request-id": [ "0fc97c43-eb4f-42e9-9da1-f9309c064036" ], "X-AspNet-Version": [ "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/95ace025-364d-48dc-9b63-90e6c739b9a0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/96c93285-654d-4021-b22a-888f6a3695b7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7c26185b-daf7-41be-97e4-3f7b4574f9f6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T011806Z:7c26185b-daf7-41be-97e4-3f7b4574f9f6" ], + "x-ms-correlation-request-id": [ "74704dd0-0214-4959-99e4-7339c4ce5bc6" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T231918Z:74704dd0-0214-4959-99e4-7339c4ce5bc6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2495E5434689440B97A4D0FEB16F6790 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2FE04647CF5418E954120620D872C52 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1198" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "eedad91b-9233-4fac-91be-b013319197b0" ], + "x-ms-client-request-id": [ "a3f821e4-1e4e-47ba-b031-d5fa9bad4e8c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1208,37 +1208,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c222143a-bc11-4a6c-b22d-3c46489cf517" ], + "x-ms-request-id": [ "7b43a1ed-c38f-42ad-bd57-cb8090b83070" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b938e44-d784-43eb-b0e4-a7606a413b3a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "5306db0b-79db-47a3-981f-856a6e45b4bc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011806Z:5306db0b-79db-47a3-981f-856a6e45b4bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a44d79f9-9463-47ce-8443-06fadb479101" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b93ba96f-b55d-4f48-98e5-a2d999ff3b50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231918Z:b93ba96f-b55d-4f48-98e5-a2d999ff3b50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D1B52B3C2564E91A697FB7580F75314 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57794EAB131C48B98C7A70CB17A912E0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:18 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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "c74181f8-5dad-4952-9f70-302a7be1bce1" ], + "x-ms-client-request-id": [ "e7c7caa1-a22c-4c1b-b89b-a5fecbb3958e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1254,36 +1254,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed4fde6a-0228-4df4-812e-95502d7fb99b" ], + "x-ms-request-id": [ "593d2ea0-452b-4bdc-8086-e1e92d092f1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c1d8e89-3999-4d9a-8e6f-4b63d5c70a86" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5b1dea8f-b618-4a98-89dd-99b2b55fc840" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6b20676e-ff5c-4ac6-812e-207276b7c6b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011807Z:6b20676e-ff5c-4ac6-812e-207276b7c6b5" ], + "x-ms-correlation-request-id": [ "55af039a-f31c-46f2-b9d1-fc29f36e5878" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231918Z:55af039a-f31c-46f2-b9d1-fc29f36e5878" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 572DB2D2D2CF4F7EB94CE35B38EE78FD Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1CAE6D695FF4517B834250998F04A85 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "454a4927-1aeb-41ac-9f04-8e5aa9c80e4d" ], + "x-ms-client-request-id": [ "288b68d2-152b-49ed-bb85-de3b3a7678c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1299,37 +1299,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c356d01-b71c-430c-905b-6c9706b4d7ab" ], + "x-ms-request-id": [ "42fd265c-5555-41f1-a01d-f777994590ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e6eda69-e3e7-4675-84c7-6e23cf416ced" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f33a9055-7bb0-4b91-8412-9f35679e284f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f4c20c6c-e77e-453f-9765-eee09c572e5c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011807Z:f4c20c6c-e77e-453f-9765-eee09c572e5c" ], + "x-ms-correlation-request-id": [ "58c3b5b9-2385-4705-9d43-1868e1dcf26f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231919Z:58c3b5b9-2385-4705-9d43-1868e1dcf26f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A14F8A99239424FB445BB234548FB7C Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C90087298358445D8B2B06C42615FFF1 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "d369204d-a15f-4aa6-ae84-4e7194af7d99" ], + "x-ms-client-request-id": [ "3851591e-80f4-4d82-8590-06c869c43221" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1345,36 +1345,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0bf99c1d-bb42-4929-b973-c5e71a142f6e" ], + "x-ms-request-id": [ "8e196d83-b76b-4051-b05c-56a80344df90" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44420e39-aa0e-4bd2-bcf9-01b1ea269aeb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f66ef6b1-28d0-4334-b1c0-cd151ee6d625" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011807Z:f66ef6b1-28d0-4334-b1c0-cd151ee6d625" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2b6b8527-e98f-40a1-90fd-f100e6af6dd6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "bb3ed25f-f3c4-4fe2-8aa6-0fbfc4ae0a09" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231919Z:bb3ed25f-f3c4-4fe2-8aa6-0fbfc4ae0a09" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFC8132DAD144C67879173E2062B28DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D722F0B4849E4BEC9E1B599BA1007A86 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "8dd2278b-8a4c-4872-bf12-48463e571c20" ], + "x-ms-client-request-id": [ "bfe28cc2-8e3a-4e8c-ae03-7b126872a737" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1390,37 +1390,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be3602a0-5438-4ac4-8f64-b5b8d5fa6206" ], + "x-ms-request-id": [ "011fda6f-eda7-46f2-b5b2-78a2a9492a24" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4543dfc-a510-4352-83b4-0f18ff1341f7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f879ecb7-4906-4cb3-b00c-130fe36261f3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011808Z:f879ecb7-4906-4cb3-b00c-130fe36261f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5536a741-b9fa-4996-a58d-08a4fee7b707" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3fe43dc8-fbb3-4437-b58b-aba70835059b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231919Z:3fe43dc8-fbb3-4437-b58b-aba70835059b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E313B87E09B4583A53A645205575D36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8575110FCFE34CBFA86F287205865C99 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "ead6a6b0-3e32-4920-b657-fa20f96f6aae" ], + "x-ms-client-request-id": [ "41b849f4-82a9-438f-a289-7d5eeb93dc21" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1436,36 +1436,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9b2ccc9-2142-40be-ad8a-722b60c13093" ], + "x-ms-request-id": [ "19498e6b-d896-427c-a7af-13b5f7401167" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fec84652-caf0-41a6-9000-edec7f1d81a9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f34d9404-84a5-4911-bdfb-136e1da51712" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "565da15b-e5db-4c83-bedd-0628719288f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011808Z:565da15b-e5db-4c83-bedd-0628719288f2" ], + "x-ms-correlation-request-id": [ "6902bdde-d185-46fd-9d0e-7b7422024f0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231919Z:6902bdde-d185-46fd-9d0e-7b7422024f0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FC56F812E8E4249B8B1307C84A7267E Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED63269E0D324C2B94055CC86BE7DD4D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1172" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/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-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "61cbfcda-677d-4fb6-adf3-a8d2c35eafff" ], + "x-ms-client-request-id": [ "15e49c3d-5ca0-4115-8755-ee4b0bbd0972" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1481,25 +1481,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0e80ab1-cb3d-49c3-b650-03eeb5145123" ], + "x-ms-request-id": [ "1d82e0c9-d832-4f18-8491-8433dfb144d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad8911c4-ae54-48fc-b090-cdd38b99b76a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "3d159593-5e15-4ecf-8793-3429205823c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011808Z:3d159593-5e15-4ecf-8793-3429205823c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c598cc3e-2c0e-4419-bf48-2fca97ab27e0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bcf1d878-b9fd-4c48-bb4d-141cc978c373" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231920Z:bcf1d878-b9fd-4c48-bb4d-141cc978c373" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 325163848EE44B868A3535CB8F0E34A5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42477D3B101B4AF6BE2CE5D44DC44848 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4181" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"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 959ffe01c28a..1dd2d889a102 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json @@ -7,7 +7,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "4bfbed3a-98b7-499c-b87e-387d27d48b8a" ], + "x-ms-client-request-id": [ "f46b1734-b026-4cc3-98c7-d3bd20ea2176" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,25 +23,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41fe5ea0-412a-4941-bfb8-c4adba9211ef" ], + "x-ms-request-id": [ "2ad6689b-e4ff-47ce-b5f4-6c9c251908c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd558c56-cc2c-42f3-88b8-84d007f61f1c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c39ec779-803d-4dd6-bf71-2492febfdba3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d557901-4f53-4c3d-8523-e8b9ebcf4c7e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011810Z:0d557901-4f53-4c3d-8523-e8b9ebcf4c7e" ], + "x-ms-correlation-request-id": [ "9ea16a30-b52c-41f6-aee4-6d64b9e1aa58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T231920Z:9ea16a30-b52c-41f6-aee4-6d64b9e1aa58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2163A08B60A44C3FAA19AFD588506973 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8212BA8FD31B438888AD6F02CF1F90C0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -53,7 +53,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "f36c0f89-ce83-4ec3-be5e-c48ca364abfa" ], + "x-ms-client-request-id": [ "dfcec242-284c-432e-8938-300e2140736c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -69,25 +69,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "201dcae3-013e-4ec2-a5ea-c4bdf83f099c" ], + "x-ms-request-id": [ "73545495-d3f3-413a-9a5c-f52bb944e0e7" ], "X-AspNet-Version": [ "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/a2a3965c-666e-4835-bc6b-24a08ad4c040" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c8902c4c-0c48-4639-ade7-bec30fa294d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3132804c-a7cf-4d12-8ea8-d29103df25e4" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011810Z:3132804c-a7cf-4d12-8ea8-d29103df25e4" ], + "x-ms-correlation-request-id": [ "6896ccf1-1a8d-43fb-a808-ca19edf95464" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T231921Z:6896ccf1-1a8d-43fb-a808-ca19edf95464" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F4688109108455F94B4971C94352CF3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A368E2D60B44E2581174D3D821DF75D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37348" ], + "Content-Length": [ "37360" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -99,7 +99,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "e7a2e697-5dbc-4393-8231-82b5fa515317" ], + "x-ms-client-request-id": [ "fd54aec7-7dfc-4660-977e-dd21a00b42c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -115,25 +115,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9e8c8f5-a4bf-4522-9485-251e015df7e7" ], + "x-ms-request-id": [ "8581487c-7b80-411b-b546-448fa8dcbd42" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5edaf6bf-cbf9-452c-b081-ee5464e9476d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7bf17d31-298c-40ed-9f06-441eb19889fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7b6d3e1-315e-4437-b5e5-3a4ef1bf7001" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T011810Z:c7b6d3e1-315e-4437-b5e5-3a4ef1bf7001" ], + "x-ms-correlation-request-id": [ "8868f880-e054-4922-a9d0-3141557fe264" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T231921Z:8868f880-e054-4922-a9d0-3141557fe264" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02D07B8DC7D74D2D96DC899F860C945A Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6CF2C2B36224864ABAC5E0DDDFABE6C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -145,7 +145,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "ace9f0d1-c7d8-4922-aadb-66173cc73535" ], + "x-ms-client-request-id": [ "2b40fbfb-d5ef-459c-b4e1-2d928daf19eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -161,25 +161,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b9ffe0b-4937-4b08-afae-23fe26d6e674" ], + "x-ms-request-id": [ "745d1035-a17f-4cfd-bdd4-a416190b9b31" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/70dc80c3-586a-4c85-bb4d-5eed0ca62a5d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "dd18ca9f-e8fa-4f3c-bb1b-eccf333ef61c" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T011810Z:dd18ca9f-e8fa-4f3c-bb1b-eccf333ef61c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4d10c79c-863c-4878-9ba9-8042bc712771" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d8dda832-385f-4fcf-a3f1-2e1ed338e2c2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T231921Z:d8dda832-385f-4fcf-a3f1-2e1ed338e2c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C019981885794B748A19CA93A94DDFF7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DD19A743C6D41529F34455DC9C74C02 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37704" ], + "Content-Length": [ "37716" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -191,7 +191,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "87" ], - "x-ms-client-request-id": [ "75ff21b6-6ccb-4609-80dc-8e376d52661e" ], + "x-ms-client-request-id": [ "7ef34bae-9e31-401b-9f01-72079030795e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -207,25 +207,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a00d3523-0413-476c-b849-4f87c90d1b9f" ], + "x-ms-request-id": [ "e9fd9f86-e2ad-4736-b4e7-6d4001ea46d1" ], "X-AspNet-Version": [ "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/01d8070b-5efe-4e61-bab0-17add57bce80" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5a4a4862-ce18-405e-ab2d-081146c59a05" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e22b85ad-2ff6-4600-8c9d-837838900b77" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T011810Z:e22b85ad-2ff6-4600-8c9d-837838900b77" ], + "x-ms-correlation-request-id": [ "bb449b1b-8a7f-46d7-808a-bc7d3f6c8bbd" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T231921Z:bb449b1b-8a7f-46d7-808a-bc7d3f6c8bbd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69DA1AB2B9EE4E0596EF3934732DC902 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF61510975764EEEB765A2CE0E790508 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -237,7 +237,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "353ff101-cdea-4068-b6dd-e6793ac81287" ], + "x-ms-client-request-id": [ "99234e1c-c5c5-4d8e-9d8e-8423e834b7e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -253,25 +253,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5ac2b64-d4a0-44b3-a7be-320355bd52df" ], + "x-ms-request-id": [ "a07972cd-53a2-497e-947d-f5e0e1820afd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1c924eb4-8de1-44e6-a3fb-6025218eb0be" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e45c5766-a2f7-4276-87fb-e31edc1947b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d750340e-ef7a-4c2a-ab2d-23b3d76a6383" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T011811Z:d750340e-ef7a-4c2a-ab2d-23b3d76a6383" ], + "x-ms-correlation-request-id": [ "7b7494c7-9250-4053-b689-1ac7d9e22f7f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T231922Z:7b7494c7-9250-4053-b689-1ac7d9e22f7f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F0F97BA97D54010A7C34F6DA051BE57 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B16880DC0DE42F09ED9BB43A0A08757 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27175" ], + "Content-Length": [ "27187" ], "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}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -283,7 +283,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "b945f31a-9926-4def-a684-ff42105736a0" ], + "x-ms-client-request-id": [ "b53bb168-1730-4f1b-889f-6b4f2f5352f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -299,25 +299,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdf5d177-8809-40ac-96bf-f300b2e7594c" ], + "x-ms-request-id": [ "f7d04d5f-07a2-4118-8c82-84b7a8f6fb61" ], "X-AspNet-Version": [ "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/e1cbb4f0-1aab-4429-9850-1c875b5b761f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/69ec6135-b425-43f9-8111-6b825d0ff21b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "707c5d08-c4fb-4b50-8f81-c2ab52c27a6b" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011811Z:707c5d08-c4fb-4b50-8f81-c2ab52c27a6b" ], + "x-ms-correlation-request-id": [ "31df7a67-b52f-4e8c-85a0-17ffee166d0d" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T231922Z:31df7a67-b52f-4e8c-85a0-17ffee166d0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0549FA38B62345A796AB9C8502DCEA89 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:11Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9DCB7E9E7824AECBD220B395DE569EE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27175" ], + "Content-Length": [ "27187" ], "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}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -329,7 +329,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "7ec88b64-1850-47cd-add8-01383e54b53b" ], + "x-ms-client-request-id": [ "c5811b36-2473-4aeb-9224-118ee64b160f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -345,25 +345,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a335ef0-b065-452d-9903-3bb6f826bf58" ], + "x-ms-request-id": [ "5438cd56-302e-4147-bc8b-f8e1ae204f68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a200ed5f-0709-4a97-a758-0d839c91318f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b88ec115-6268-4c4c-ad22-2c5b9802f7ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2381b61b-f197-443a-b757-bd427eece013" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T011811Z:2381b61b-f197-443a-b757-bd427eece013" ], + "x-ms-correlation-request-id": [ "69e205ff-86df-4419-b2d5-21207d5e54c2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T231922Z:69e205ff-86df-4419-b2d5-21207d5e54c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18267251B5744FA4B3CEED892D4D4111 Ref B: MWH011020806052 Ref C: 2025-11-14T01:18:11Z" ], - "Date": [ "Fri, 14 Nov 2025 01:18:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEF2B9EDB8764EA186E7B2BBC46893E8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:19:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:19:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27175" ], + "Content-Length": [ "27187" ], "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}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "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 c5d1af0ebe50..243154a0f893 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json @@ -7,7 +7,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "df8d712b-2b22-49f6-9935-0b99ed806de7" ], + "x-ms-client-request-id": [ "b4f37487-3ae8-43d6-9070-122a5742c41e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,37 +22,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ddc7d686-17a8-4fb0-8e45-c9079f3d3705" ], + "x-ms-original-request-ids": [ "e2a5ec2e-1923-4bc0-bea9-6a20368bed89" ], "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": [ "37b73aa4-6abc-4eb5-bbed-806ef1ed39bb" ], - "x-ms-correlation-request-id": [ "37b73aa4-6abc-4eb5-bbed-806ef1ed39bb" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011904Z:37b73aa4-6abc-4eb5-bbed-806ef1ed39bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "0ffa3792-ca96-484b-8f33-9055b6049422" ], + "x-ms-correlation-request-id": [ "0ffa3792-ca96-484b-8f33-9055b6049422" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232017Z:0ffa3792-ca96-484b-8f33-9055b6049422" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09BB6D14B2D74610B3E7FE852D9212B0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40DBF3ED3CD94A65AF9D147165C36D68 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-le3f9v/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-myf9na/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-le3f9v/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-myf9na/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": [ "9e483419-beaa-4529-a4a4-e72cd824e620" ], + "x-ms-client-request-id": [ "aaab731d-65d9-4b1f-aa8e-5f5d4ff1db61" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -68,36 +68,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77df99ef-afa6-48af-a165-862ccb616e42" ], + "x-ms-request-id": [ "f64da758-6ff0-4ed3-a448-e70508f20611" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bdc86b58-c1b8-4fb4-8098-572b9d64d95f" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T011905Z:bdc86b58-c1b8-4fb4-8098-572b9d64d95f" ], + "x-ms-correlation-request-id": [ "481167eb-454a-454d-87e7-964c991f2ba4" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232018Z:481167eb-454a-454d-87e7-964c991f2ba4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C64AED732594460A9AEE6E185977F60 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 562C9C86FF694DEBB82B7034DA2D865E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/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": [ "6c98e1c6-d83c-44f8-bacd-8bd31b4ec90b" ], + "x-ms-client-request-id": [ "cc46a2c0-9d86-4efd-b88f-3956b3380d8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -113,36 +113,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "092b5261-5919-4a5a-92eb-d50ab0935538" ], + "x-ms-request-id": [ "d62e9403-0285-4ea9-b83d-583938f3dcdf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b4a47433-e07b-4296-bf1d-a72bfc1bf832" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011905Z:b4a47433-e07b-4296-bf1d-a72bfc1bf832" ], + "x-ms-correlation-request-id": [ "192a5a1d-9a0e-4488-a882-7dcfdd762724" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232018Z:192a5a1d-9a0e-4488-a882-7dcfdd762724" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60CB95EA1C844782A5D942E80263F997 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9DDFA70F3E54F118C324194FAF2FC3F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "e5df0e25-7a3c-4d70-bce3-7d13636254d8" ], + "x-ms-client-request-id": [ "84e84612-b171-4763-8447-83d09ff0eef6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -158,36 +158,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4471e6af-5e05-47f8-ba45-ea5ae1057f41" ], + "x-ms-request-id": [ "3b110a9e-c51b-43de-a52e-a565150f579a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "129df95f-aebd-4396-a4b7-f09f5ce9a2cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011905Z:129df95f-aebd-4396-a4b7-f09f5ce9a2cf" ], + "x-ms-correlation-request-id": [ "d45f298e-c2c8-4eb6-9b41-49c53823dc8f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232018Z:d45f298e-c2c8-4eb6-9b41-49c53823dc8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71AD9556AA1945DEB38A0300ED4BFCD9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B9740AAC92043D39FFBEFAC3626DC94 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "ef7fa7e5-208f-46ba-863b-c73d74028d74" ], + "x-ms-client-request-id": [ "1733f1f2-342c-4202-8b72-8ee4561e568d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -203,36 +203,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b4f0d27-2f58-43e0-973a-723ce400e996" ], + "x-ms-request-id": [ "4e1c0509-204a-4b83-9129-583970fe993b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54f477ee-8969-4e17-b622-9ccd5957b267" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011905Z:54f477ee-8969-4e17-b622-9ccd5957b267" ], + "x-ms-correlation-request-id": [ "c9004a7b-205d-4e13-938e-06235e2b8574" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232018Z:c9004a7b-205d-4e13-938e-06235e2b8574" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F9E1DE17D5E4BE98CCA2BF222A5C19C Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9046BC6C733E4342AEB8FE25EA89DC13 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-fo9ugi\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-qnrsj3\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "ceefc323-219b-4b68-ad13-4e16306c6194" ], + "x-ms-client-request-id": [ "a988f6f1-86a9-40a0-973d-1266fe42d943" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -248,36 +248,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "52b0d8a4-6e1b-4e52-ae41-3e7450e5d4a9" ], + "x-ms-request-id": [ "6cefb8f8-018e-4af8-b1b3-e66646a8b4cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9f3d04e9-a863-4e7f-ab66-4a88fe91db73" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:9f3d04e9-a863-4e7f-ab66-4a88fe91db73" ], + "x-ms-correlation-request-id": [ "dade3470-7b59-4010-a999-9e9eed0bf4d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232018Z:dade3470-7b59-4010-a999-9e9eed0bf4d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 924B2473B5C448ACB99667AA3431F7FD Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E9CD271936B4793A08B49D6BDA34F6C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-4e5vgl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-ei67oa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "e2818a78-22ce-46a5-97ee-9feca09d994f" ], + "x-ms-client-request-id": [ "88785ca8-08d7-40be-b5aa-ef370ee2efd9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -293,36 +293,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb24cc4a-1f26-47f8-8137-2e248fc82df3" ], + "x-ms-request-id": [ "c8736dca-b6f2-4474-a9e4-7e77903dad57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f1fc2e3d-cc20-4436-ad66-7044e5e7fa4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:f1fc2e3d-cc20-4436-ad66-7044e5e7fa4e" ], + "x-ms-correlation-request-id": [ "fcb4fda5-94f5-4df6-95a7-85fcee8c299e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232019Z:fcb4fda5-94f5-4df6-95a7-85fcee8c299e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75423BC5FE4C4C5E86002DA69EB4B109 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D7746CCE2D74D07AFC39026C37ACBE8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/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-rs70mo/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-ry1xpa/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-rs70mo/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "9c2aada2-3f1f-425e-9b00-2634d64ecff6" ], + "x-ms-client-request-id": [ "cbd0bb1e-bb6c-4273-8d1a-aab03ed6b086" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -337,25 +337,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e2f9f94a-09f4-4676-82cd-18c891be4884" ], + "x-ms-original-request-ids": [ "42070a3d-48b2-4dca-8aa0-aaed7e5c4725" ], "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": [ "563a322e-5c66-4870-be40-8daf4feb0f90" ], - "x-ms-correlation-request-id": [ "563a322e-5c66-4870-be40-8daf4feb0f90" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:563a322e-5c66-4870-be40-8daf4feb0f90" ], + "x-ms-request-id": [ "9cbbcada-d5ec-43f8-bffa-dc3ddc697fb1" ], + "x-ms-correlation-request-id": [ "9cbbcada-d5ec-43f8-bffa-dc3ddc697fb1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232019Z:9cbbcada-d5ec-43f8-bffa-dc3ddc697fb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71B138E133DC4213917A56523E67897D Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D98098BF953B44AEA8A8A8F28253731B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1838" ], + "Content-Length": [ "1833" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -367,7 +367,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "147" ], - "x-ms-client-request-id": [ "0cfa0661-a518-4df2-af71-1399f4394c8e" ], + "x-ms-client-request-id": [ "8e086bbe-e06e-47c7-a13d-a8aada122c90" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -382,37 +382,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c42dfa27-ba5a-4ade-9007-2db329126c78" ], + "x-ms-original-request-ids": [ "a6735345-4b87-4817-8583-6bdb08b4c086" ], "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": [ "fd84133e-0d1c-4cd1-86f6-7bfda8889025" ], - "x-ms-correlation-request-id": [ "fd84133e-0d1c-4cd1-86f6-7bfda8889025" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011906Z:fd84133e-0d1c-4cd1-86f6-7bfda8889025" ], + "x-ms-request-id": [ "ead4ae88-a6b5-4b59-b8ed-4e2fd6159732" ], + "x-ms-correlation-request-id": [ "ead4ae88-a6b5-4b59-b8ed-4e2fd6159732" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232019Z:ead4ae88-a6b5-4b59-b8ed-4e2fd6159732" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8414C291212F45BBB0AF2A3720C35242 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B90C2A36E8C64D65BA6DB2295A0D9E3E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "92edd097-eccd-4250-86b1-2733eb503d2e" ], + "x-ms-client-request-id": [ "22f3f0dc-6a53-4654-ad8a-6624392a9804" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -428,36 +428,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "864ffbb7-1cc8-4eac-bfef-cd319220b564" ], + "x-ms-request-id": [ "a53ac647-a4e2-49e0-8ba9-4f929b06589a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c06111f0-6ac3-4954-ba08-fddbeb870ef9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T011907Z:c06111f0-6ac3-4954-ba08-fddbeb870ef9" ], + "x-ms-correlation-request-id": [ "a7f3c3f6-3868-43c9-9a73-9344febf91ac" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232020Z:a7f3c3f6-3868-43c9-9a73-9344febf91ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0617BB3B8514DBC8C307228C1D2FEA6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D20D3E07B2104A0FB7FAA0A388FE9DF0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "a479be12-b2e1-4934-89fb-2123bb74136f" ], + "x-ms-client-request-id": [ "7636ec8d-424d-4ac3-bdf4-9813e498dec8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -473,36 +473,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85e28b5f-412d-4cc5-a3d4-7146cb8dfa8c" ], + "x-ms-request-id": [ "3e3eb3d6-256e-4d11-82ff-2cd345f955ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f2ac32b3-f546-4298-9d13-73970853e169" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011907Z:f2ac32b3-f546-4298-9d13-73970853e169" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "646a9213-68c3-4def-9f28-584e60343d46" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232020Z:646a9213-68c3-4def-9f28-584e60343d46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DCF12A195BA4AEE803D226582CECE63 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1288D92571F4D0C8BDA156E06003D30 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "22447e13-d753-451e-b510-84256f9bfe6c" ], + "x-ms-client-request-id": [ "024d678c-3465-4aa2-b766-9114e73f67ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -518,36 +518,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "89067ea5-bc17-4e46-b1d0-6e67873e05bc" ], + "x-ms-request-id": [ "1a539e4e-3507-4e0d-9e34-6c2538e2c084" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3e7f19c2-fe5a-4c7b-93d8-7e6d3614e57a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011907Z:3e7f19c2-fe5a-4c7b-93d8-7e6d3614e57a" ], + "x-ms-correlation-request-id": [ "3fbcccd2-3c03-40fd-bc9f-2629a3ea62e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232020Z:3fbcccd2-3c03-40fd-bc9f-2629a3ea62e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62853B14392A48F783EFF72EDE6AD6CD Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91B69AEEA44D48B2A0849D421049F080 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "99151ea0-f985-4624-b1b1-54e4d70162d6" ], + "x-ms-client-request-id": [ "0c676b47-c95a-499f-9452-7689072b3c34" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -563,24 +563,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61c49c84-202b-49a7-be3a-8df996ba1a53" ], + "x-ms-request-id": [ "37f19f68-a2cc-470d-beb8-943dd55e1ec1" ], "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": [ "b48e6029-ef37-4598-a37c-6847b8412323" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011907Z:b48e6029-ef37-4598-a37c-6847b8412323" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "90035cac-bebe-475d-a29e-170d3da3d06b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232020Z:90035cac-bebe-475d-a29e-170d3da3d06b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58AC0DE7E043427B9E3572453FEA1DFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B88C94DE54147CABBD39ABCD48E089B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json index 830f21f33827..c75059e792f5 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-12q6pcrzoi\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\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": [ "049ecf50-3c87-4d10-b15a-43479f874928" ], + "x-ms-request-id": [ "e0ae5daa-1f4a-49b2-a197-6e27073fb740" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26e8ff6e-874f-43cb-9a56-a04aba00b4fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/00cf7c2f-4279-404f-9117-031247a2843b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3e072902-062b-40e0-9cd8-f04bafd57cc4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011908Z:3e072902-062b-40e0-9cd8-f04bafd57cc4" ], + "x-ms-correlation-request-id": [ "8cf7d0e7-ddc3-432d-8b00-f0efb5252a2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232021Z:8cf7d0e7-ddc3-432d-8b00-f0efb5252a2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE2C24C43FC54A30BF9015340C7380D1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD9B396DE4F64D2D9DEA3D11AAE4773E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -48,7 +48,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "027d98ad-0317-4932-8e17-218263f0c427" ], + "x-ms-client-request-id": [ "adce86a9-6ffd-40b3-8244-d4e63b5e9b85" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,37 +63,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "290c2402-e697-4b7c-a20c-33d409254804" ], + "x-ms-original-request-ids": [ "f68a6ab9-8f00-4c38-84d6-0137045c26db" ], "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": [ "417aa16c-59ec-4bc0-996f-0e6759bebb7e" ], - "x-ms-correlation-request-id": [ "417aa16c-59ec-4bc0-996f-0e6759bebb7e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T011909Z:417aa16c-59ec-4bc0-996f-0e6759bebb7e" ], + "x-ms-request-id": [ "7702b44f-3cee-436a-870e-9b6bc74782fe" ], + "x-ms-correlation-request-id": [ "7702b44f-3cee-436a-870e-9b6bc74782fe" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232021Z:7702b44f-3cee-436a-870e-9b6bc74782fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 936C4AEB77424EA7B082A81493354A73 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F962236E35544ED08A21E25ECFAF053F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "9179698a-ea6d-414d-8d28-7caf5f9c712b" ], + "x-ms-client-request-id": [ "c8437d22-2333-4c2a-b76a-6303d314f408" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -109,36 +109,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e821383-e95c-419d-a7c8-3db1d1d2884f" ], + "x-ms-request-id": [ "4bc08851-ee63-454c-a3ce-67f8ab4c4563" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a21677fd-e476-4cd8-b8c5-4f7fb083936d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T011909Z:a21677fd-e476-4cd8-b8c5-4f7fb083936d" ], + "x-ms-correlation-request-id": [ "49ef8508-d5ab-4712-978d-63060cb83616" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232022Z:49ef8508-d5ab-4712-978d-63060cb83616" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EC5BDEAF9BC463D991469AC971E2E3C Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F2E82424D954376B4B7A12BCB030FF8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "92b06aac-c3c1-4792-9d86-b5c23ac67282" ], + "x-ms-client-request-id": [ "89024afa-b0ab-4b9e-964e-b06aa0850f5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -154,36 +154,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab8eb09b-38fe-4569-91f9-3db576c7ecca" ], + "x-ms-request-id": [ "4a267010-ac56-4f44-bdb6-a36732a0613f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9585c5b5-aa89-4a1f-afdf-690388955a2a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011909Z:9585c5b5-aa89-4a1f-afdf-690388955a2a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2db75632-50d8-4e38-8cc5-a6c5dfcd6303" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232022Z:2db75632-50d8-4e38-8cc5-a6c5dfcd6303" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 734F808FE42F4ACD9769194724A63ABE Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D762A4558B84C7982F2BB59C4AA7354 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "9d85a386-5d56-444e-9c3a-b162124c2e2e" ], + "x-ms-client-request-id": [ "a29be618-bd11-4d53-a10c-60d5edfbebdf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -199,36 +199,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb406c69-023f-48d4-8922-b96767cc83ba" ], + "x-ms-request-id": [ "3f806e18-6e85-424f-adab-3d40c9ca5878" ], "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": [ "f72186f4-c646-4df8-b5c2-2d819bdece39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011909Z:f72186f4-c646-4df8-b5c2-2d819bdece39" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6803e7ef-6b88-4efd-a8b4-d0f74bb5768f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232022Z:6803e7ef-6b88-4efd-a8b4-d0f74bb5768f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 727EB762C213452BA437043B6D7FA1DB Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F48B8293D8D84C9B8F684375067AD9D1 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "5623eddf-ad4a-487d-b99d-2e658331737c" ], + "x-ms-client-request-id": [ "22819184-77a8-45ca-8789-97aa55b3c63d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -244,24 +244,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b7a4109-60a8-41ea-be10-6d8d90c78ad1" ], + "x-ms-request-id": [ "cab01616-8c18-4d60-9712-df1484a982a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "39d8ad19-aa5a-4bce-9577-ab45fd034a01" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011909Z:39d8ad19-aa5a-4bce-9577-ab45fd034a01" ], + "x-ms-correlation-request-id": [ "7ae7fc29-e4d9-4a9e-a7c4-92985c40e126" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232022Z:7ae7fc29-e4d9-4a9e-a7c4-92985c40e126" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BD38D7D1315445DA3577921E854B44C Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EE98A53AB534AEEA8A33045353FED2B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -273,7 +273,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "43682290-ccf5-40a8-9161-bcb5a54262f6" ], + "x-ms-client-request-id": [ "2c01127a-c6c6-4e0f-9a97-5763f743cb73" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -288,36 +288,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "31c6ee4e-15be-4cd0-a58a-cb60d0ca1414", "2b2880a0-7968-4fc6-83ba-ce788879950a", "4b6688c8-79eb-4b2c-b760-f68ea28d5ac6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "89c10df0-0ac7-4936-ace2-d839607db115" ], - "x-ms-correlation-request-id": [ "89c10df0-0ac7-4936-ace2-d839607db115" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011910Z:89c10df0-0ac7-4936-ace2-d839607db115" ], + "x-ms-original-request-ids": [ "345f2b43-338b-49d6-94f2-585cb1370d5c", "460f6318-d8c0-4766-b639-04d0c5b467eb", "41e14185-151e-4010-bb0c-a01481175490" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "472f13b2-77cc-4fbc-912b-3e8b551d5e4e" ], + "x-ms-correlation-request-id": [ "472f13b2-77cc-4fbc-912b-3e8b551d5e4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232023Z:472f13b2-77cc-4fbc-912b-3e8b551d5e4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0349B985AEDB41AA81638FF6879AF795 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 265D85C347F04A7F97C9CCA9CBC3B2A0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "159" ], - "x-ms-client-request-id": [ "9e6e8424-f825-4c20-af8f-401b2586bd9d" ], + "x-ms-client-request-id": [ "21e3f09a-f66c-46b1-8250-dce9bf8b0cb9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -332,30 +332,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "98e9a720-f243-4efa-8e4b-1d0e628b18f8" ], + "x-ms-request-id": [ "d432d6cc-6e19-482b-ac99-7a2d1dce9036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/d1a4a74b-3d3e-4ed9-91ec-ac0cf9d61ed4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f0efd7b8-f71f-4c0d-90ec-d6f8ea6aa8c8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "569850d6-107e-479e-96c8-df2fe8ff54da" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T011910Z:569850d6-107e-479e-96c8-df2fe8ff54da" ], + "x-ms-correlation-request-id": [ "96bdc0f1-e17d-4e36-81f0-c4db33be2139" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232023Z:96bdc0f1-e17d-4e36-81f0-c4db33be2139" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 294FA7C775624176B58A521CE7C370F7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5937DA0ED2E84BD3A8DB2F87CB7482F9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -375,30 +375,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44e67b0a-c88d-493c-a05a-98b51eb6dde4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45ea4fbe-54cf-4d47-92f2-cd011f690e20" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "52ad9341-9ba9-47fe-9a68-46e308955ecd" ], - "x-ms-correlation-request-id": [ "52ad9341-9ba9-47fe-9a68-46e308955ecd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011915Z:52ad9341-9ba9-47fe-9a68-46e308955ecd" ], + "x-ms-request-id": [ "5a479d17-a902-44e4-85f5-da364f315e94" ], + "x-ms-correlation-request-id": [ "5a479d17-a902-44e4-85f5-da364f315e94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232028Z:5a479d17-a902-44e4-85f5-da364f315e94" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7984EB64DC454134A4CD31F891F14C5F Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB6439B6B230423F8679430E3974776C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:20:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"07075f14-0000-0300-0000-691683930000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"name\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"AppId\": \"fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"312a33ec-580c-489c-9e80-b4756c09f157\",\r\n \"ConnectionString\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"Name\": \"Func-PowerShell-NewTest1-12q6pcrzoi\",\r\n \"CreationDate\": \"2025-11-14T01:19:10.9931567+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-12q6pcrzoi_fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-12q6pcrzoi-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\": \"\\\"2f00db17-0000-0300-0000-6917b93c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"AppId\": \"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\r\n \"ConnectionString\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"Name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"CreationDate\": \"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-12q6pcrzoi\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"\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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-0qslu4m95n\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -412,39 +412,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504B28A23E0\"" ], + "ETag": [ "\"1DC55BD44D30955\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41e872aa-14b5-41be-8ad2-dba189c5a5f3" ], + "x-ms-request-id": [ "3b7c465a-6814-42c7-98c7-59cb6cbd35f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3286a72a-f240-464b-ab5d-74f0e0817a18" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0589b953-17f2-4b4e-9f16-98bd14c1f064" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "f508a669-0f45-4d4d-a02a-519823a19be5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T011957Z:f508a669-0f45-4d4d-a02a-519823a19be5" ], + "x-ms-correlation-request-id": [ "5bd48654-8a29-4e32-b731-f1a55c3dde44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232110Z:5bd48654-8a29-4e32-b731-f1a55c3dde44" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90A3EA498B004215A2F9435E73B21A61 Ref B: MWH011020806052 Ref C: 2025-11-14T01:19:15Z" ], - "Date": [ "Fri, 14 Nov 2025 01:19:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63BC5E8EB8094298BF24D313A2791B58 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:20:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8507" ], + "Content-Length": [ "8496" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:19:17.1433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:20:30.2133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "dfdf8e61-3917-49de-bfba-934a4aabfb76" ], + "x-ms-client-request-id": [ "2642d2c1-7fee-4c9a-9c4e-85800e694280" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -458,38 +458,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504C9F24440\"" ], + "ETag": [ "\"1DC55BD5CAD1860\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aee33390-8b79-49ee-b8ac-e2a6d64ee935" ], + "x-ms-request-id": [ "032afa7f-0486-4621-9d65-0652d94bf84d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "85223b8e-c6d1-4a73-88b8-4be15acf2a22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012027Z:85223b8e-c6d1-4a73-88b8-4be15acf2a22" ], + "x-ms-correlation-request-id": [ "ba47d07b-e41c-41b7-9d1a-47448a10b72a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232141Z:ba47d07b-e41c-41b7-9d1a-47448a10b72a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C78D2A07D3BC4A0E96C39917CF9C2B43 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11AAA5C2BF0943DB902CF4D1F182F65F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:19:57.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:21:10.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-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "163" ], - "x-ms-client-request-id": [ "9796de80-f055-4732-a100-b349b69c4dae" ], + "x-ms-client-request-id": [ "d3baa9fb-358d-4aab-a9e1-aa4cd8904210" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -504,38 +504,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504C9F24440\"" ], + "ETag": [ "\"1DC55BD5CAD1860\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a88d520-fc26-40c5-9845-31e8eb5340f7" ], + "x-ms-request-id": [ "d21a8cad-0196-4fb2-a118-8fffaf997c2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dfcfdec5-ea2a-40b9-b49a-7a4f4cf09e80" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:dfcfdec5-ea2a-40b9-b49a-7a4f4cf09e80" ], + "x-ms-correlation-request-id": [ "a5675c41-4793-447a-b781-b348fc99b0c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232141Z:a5675c41-4793-447a-b781-b348fc99b0c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBB5034C01F44CECB47E2C54E12DD00F Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9620B3E188A46E8A20012D452D98C3E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:19:57.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:21:10.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-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "cea04099-9e99-4efd-82db-f6332e229988" ], + "x-ms-client-request-id": [ "2282ad58-c920-45f6-ac7e-254a74388b9d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -551,36 +551,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "508da879-e8b0-471d-857f-dbc8cd5930c1" ], + "x-ms-request-id": [ "a02aa28a-8883-4427-8574-8fc4a341546d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f9ac5b0-b6cf-4d7d-9b95-fb477ac2a71d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/784cad70-d5b6-4406-8ac7-0be9ef859b64" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ec0fcb96-2008-42e2-8cce-0524a334d390" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:ec0fcb96-2008-42e2-8cce-0524a334d390" ], + "x-ms-correlation-request-id": [ "858cd1b5-dee8-4bcf-a12c-abb0805223ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232141Z:858cd1b5-dee8-4bcf-a12c-abb0805223ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92D6CB48C3E34228892DCCBC8DD78297 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F47C954E3B94DE4B65DD57A5DDD54DF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "165" ], - "x-ms-client-request-id": [ "312a0415-8423-4a52-8f9d-fc781a0c933a" ], + "x-ms-client-request-id": [ "b0dffea9-7bda-4de4-b47e-a5ab10b307f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -596,37 +596,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e499c316-6766-4828-9c1f-ed4ad6fce4b6" ], + "x-ms-request-id": [ "00d78e45-a88d-46a2-96c1-7935bdfac2fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c02baac-ce48-46ec-8045-605ff620cb71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75812c8f-44d4-4e20-af2f-b5bbd1303305" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "697a6980-790c-4223-bfe2-44025d19bba4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:697a6980-790c-4223-bfe2-44025d19bba4" ], + "x-ms-correlation-request-id": [ "27b7e94b-37fe-4f3f-ba6d-6913480b0131" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232142Z:27b7e94b-37fe-4f3f-ba6d-6913480b0131" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F78985CBE2EC4EDC8278DD02D8D879D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E724B704E474F748E0C02B3789F839B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "c0bf5392-918a-494a-bf46-0296a67f3a13" ], + "x-ms-client-request-id": [ "1235e136-9e0e-4acf-832f-cce65849e1ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -642,36 +642,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a1f5191-8a73-4d6a-9d93-5624dc3436b4" ], + "x-ms-request-id": [ "eca42808-3f63-4b12-8925-00beadcc1658" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9229989-da12-406c-a59b-a6e42f3d6be5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69f6083d-9a40-4cf5-95dc-457ea2da5172" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "55e41762-724f-4195-8cd7-b23c48b04292" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012028Z:55e41762-724f-4195-8cd7-b23c48b04292" ], + "x-ms-correlation-request-id": [ "76e4b2d1-c6a3-422a-8646-147f0b63ac05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232142Z:76e4b2d1-c6a3-422a-8646-147f0b63ac05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A94C343A9CC7436E93190FC51651A4EC Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE223AA951F44F7995949B165982F7CB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "447d1690-32f0-405f-b251-5a33eb063ff4" ], + "x-ms-client-request-id": [ "8ed5a7a8-95d1-4f90-ab79-a3ccf356d99e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -687,36 +687,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef324d13-a08d-42ab-981c-3d6a78248084" ], + "x-ms-request-id": [ "59c57c61-af9c-4f40-a98b-cad98e175e96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a8a53af-5234-4858-8a44-46ff5c425712" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96050a4f-730c-447f-81a9-67d3dfd9aa17" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7034defb-4761-4108-9fbd-0d3f955efac4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012029Z:7034defb-4761-4108-9fbd-0d3f955efac4" ], + "x-ms-correlation-request-id": [ "a9f6ee1c-9e47-4245-bb37-9445afcc5ea8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232142Z:a9f6ee1c-9e47-4245-bb37-9445afcc5ea8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B7E8E5D9AA14D8CAB60952989AA1006 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EDDB694C11B49819ECB62B938BA6164 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "168" ], - "x-ms-client-request-id": [ "1460c0b6-02d4-4ba0-be3a-535ce49ec0c4" ], + "x-ms-client-request-id": [ "dfe60a19-c92b-4c87-a5dd-0a4dbb4ecba0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -732,32 +732,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2fc195b2-4ec7-4722-8241-1bc23ce34342" ], + "x-ms-request-id": [ "2fff981b-d2f4-4304-a77a-b226d45a37b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac5328d8-aa15-4a90-946f-4fc9cf87c7a3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b03b233-3f66-400f-b2f1-452bd4192bd6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6208137c-3d99-4556-bfa8-0f32469a17b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012029Z:6208137c-3d99-4556-bfa8-0f32469a17b6" ], + "x-ms-correlation-request-id": [ "10bc66ba-1018-426a-ac9f-d47916e8360c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232143Z:10bc66ba-1018-426a-ac9f-d47916e8360c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE41CB79727B49F7BA36280A539EC98D Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C47C9C690DA4528ADF81C7961980260 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting2\": \"PowerShellRocks\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -771,39 +771,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504C9F24440\"" ], + "ETag": [ "\"1DC55BD5CAD1860\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95211d6d-da39-476e-ada8-6dca9c0bf03e" ], + "x-ms-request-id": [ "048b8d81-c7c7-43d0-82bd-2392a39da71d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1de0171-3aa2-4b23-abc0-7754dab280bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a7c96f1-65f6-45d2-ad35-bfdb6c8a1472" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9382d6f0-716a-4102-9933-2759f3190756" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012030Z:9382d6f0-716a-4102-9933-2759f3190756" ], + "x-ms-correlation-request-id": [ "4401f4d2-3cf4-4f21-9bae-32addd7ff3c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232144Z:4401f4d2-3cf4-4f21-9bae-32addd7ff3c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80B61990AF21424EAEEE37A34A96B102 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54F76FA41C40475AB76046522FE710FB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:43Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "f0b32425-a3b5-4552-93db-e8257ed4a7cf" ], + "x-ms-client-request-id": [ "55ace905-5665-4eca-bc25-70bb5a10520b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -819,36 +819,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7dbe003b-1eec-4777-b81b-525cca2ba23d" ], + "x-ms-request-id": [ "0d5777c0-262a-49e6-83ec-1322d78b6497" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20aee982-62f9-470c-9373-a572a73d804a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1163a02-cb94-41a8-865d-5c97063b157b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "40b868ed-94aa-4164-abf9-c57a86128014" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012030Z:40b868ed-94aa-4164-abf9-c57a86128014" ], + "x-ms-correlation-request-id": [ "02c5c5e4-24ee-4049-991d-c53fc63f8fcc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232144Z:02c5c5e4-24ee-4049-991d-c53fc63f8fcc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B023CC1F899441BB19A90204B67B0C0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFC1A6DEBC3645BA87F683DA24DBD026 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:44Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "cb1881da-bd24-462d-a558-cdd7038130e6" ], + "x-ms-client-request-id": [ "8f8ab827-c90d-43d5-b89a-6c5e23f27e3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -863,38 +863,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504DDC75FD5\"" ], + "ETag": [ "\"1DC55BD70C3D0D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7aa0bdd0-18bc-48aa-bea8-394d9f46afaa" ], + "x-ms-request-id": [ "a5730227-a23f-43bb-bae4-e3b740954d57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80fcac85-275a-4d46-96c8-733cb8ddb289" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:80fcac85-275a-4d46-96c8-733cb8ddb289" ], + "x-ms-correlation-request-id": [ "543bdf9d-7ea0-4b4d-b66a-02d869e732d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232145Z:543bdf9d-7ea0-4b4d-b66a-02d869e732d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DC9881C62064501BD5811B9296C349C Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBCB20AFA21C4C0B9CC369F03458980E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:44Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:30.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:21:44.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "879d6db8-66a6-473c-9bd7-57afdea3ca99" ], + "x-ms-client-request-id": [ "cfb12c0b-4c7e-45e2-9772-6a89cfa239b7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -910,36 +910,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43f01d9f-de5c-4501-9140-8569cf7776e6" ], + "x-ms-request-id": [ "e540b5d5-5b16-4fdd-89ca-aa52161de808" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77a704b4-e980-4e7c-b90c-79da86dbb5ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb573f86-3ec6-45a0-86c7-4b3bcae13b3a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7e27ae46-d027-4654-939e-d97779779f36" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:7e27ae46-d027-4654-939e-d97779779f36" ], + "x-ms-correlation-request-id": [ "60b37093-93c2-42e2-83d1-5c4615692eba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232145Z:60b37093-93c2-42e2-83d1-5c4615692eba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3BBCF41A27E4335A988ED02A1C93504 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 645DCD528A1D4FC8AC6CC40014136824 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:45Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "173" ], - "x-ms-client-request-id": [ "aca333cc-4184-4f2f-9f97-7f5e71adcefd" ], + "x-ms-client-request-id": [ "a33d52df-3637-4a40-a94c-55ba36658bed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -955,37 +955,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f632633-ced0-41fc-8070-2ff3e0fbe86d" ], + "x-ms-request-id": [ "d1970bf4-bc70-43f0-94b1-05c7682905d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60ac8824-132a-45fa-ae61-bda12e976e8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/619ca32b-f070-4c99-9832-a431277d24b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ef8ac1bb-2d2a-441f-979a-7c07299adcc1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:ef8ac1bb-2d2a-441f-979a-7c07299adcc1" ], + "x-ms-correlation-request-id": [ "d8e65131-9fc4-4a4f-8851-7c9878cc222d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232145Z:d8e65131-9fc4-4a4f-8851-7c9878cc222d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11A277F0A45842BB927109679FDEE0D2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF054ED629CA4C75A54E34C2957353E6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:45Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "174" ], - "x-ms-client-request-id": [ "4c122241-4929-401c-b0c0-e58932e4cbf6" ], + "x-ms-client-request-id": [ "d8216cd3-2483-46b2-a4fd-90253445ad19" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1001,32 +1001,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1b8f69b-f15f-453a-b3e1-87ca9fee6924" ], + "x-ms-request-id": [ "a8bb458f-f21f-487f-8eb2-cb44fc24575d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/134f1700-9fc0-4f90-a6cc-c9a3cd63baff" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "46084b78-40c2-4343-91ac-3c25158ed39c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012031Z:46084b78-40c2-4343-91ac-3c25158ed39c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4b6921cc-93a9-4c44-ab03-274e36ecf3d8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "9b5b390b-0999-46db-8213-28bf00c304c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232146Z:9b5b390b-0999-46db-8213-28bf00c304c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 404A39BCE05B4AA6A141309809E75029 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 457528265B4C4D838DC9306BC972A6F6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:45Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"MyAppSetting2\": \"PowerShellRocks\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1040,39 +1040,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504DDC75FD5\"" ], + "ETag": [ "\"1DC55BD70C3D0D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8ca5934-f106-4ffa-87bb-319a3819cb5a" ], + "x-ms-request-id": [ "9fed431a-7a07-4270-9671-2eef14414805" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c78e3db6-4e71-4a2e-b43b-3f49707e518c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61ae6c0f-dac8-4d19-8020-cebac188a06b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f10bf0a0-a531-4813-bfda-32826a3f3dd1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012032Z:f10bf0a0-a531-4813-bfda-32826a3f3dd1" ], + "x-ms-correlation-request-id": [ "fb3970fc-3068-40c1-ad5c-a8e81d60db88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232146Z:fb3970fc-3068-40c1-ad5c-a8e81d60db88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4CE54E5CB8F4B908389DCCA93781A06 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42460B10ABCE43FE97D2CDDEE870A47A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:46Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "176" ], - "x-ms-client-request-id": [ "ca0a77bc-bc35-455c-96c3-653117fd78da" ], + "x-ms-client-request-id": [ "4cf43f5d-efa7-486c-a26c-1dfdea9ac2e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1088,36 +1088,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f6c3db8b-a092-4c89-9151-d43c4a80864a" ], + "x-ms-request-id": [ "eb17bdcb-c633-424b-8301-917778b7cfdb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9cea46fe-5a89-4216-a7a9-a250fc83a1e5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e478e1c-9f17-459c-88fb-76eba9352f3c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "03d1f338-cbbb-4d72-816d-33b97be3fdf0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012033Z:03d1f338-cbbb-4d72-816d-33b97be3fdf0" ], + "x-ms-correlation-request-id": [ "b29911ac-d514-4dc7-81cd-6a4ad1ed8c08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232147Z:b29911ac-d514-4dc7-81cd-6a4ad1ed8c08" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F159B1A21B774E688B4244870D9F9598 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC599BF2B75347248F95C23E76C23179 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:46Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "177" ], - "x-ms-client-request-id": [ "4bbfa157-559a-41fe-be2b-9d4ffccd5591" ], + "x-ms-client-request-id": [ "9c690a26-661d-4e62-bf8c-368709af6f57" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1133,32 +1133,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa4b1b02-17db-4cdd-a040-5207ffd19180" ], + "x-ms-request-id": [ "e6da6ca3-a514-4d15-8316-d0891adf7be5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fde80c22-67c2-44a9-a0d5-dfb3644d74e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90e9ca0d-c185-488f-bf8e-f19a31ab2949" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "51e67f33-f11e-44c0-aa18-197b5fd9ef9d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012033Z:51e67f33-f11e-44c0-aa18-197b5fd9ef9d" ], + "x-ms-correlation-request-id": [ "ca56edf4-7213-4b50-98cc-71e983a03b7e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232147Z:ca56edf4-7213-4b50-98cc-71e983a03b7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB7C99E4F6FB4FFF97A1F55F25E874A9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E33759CBF2D4EFEA1986217EA31FFA8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting2\":\"PowerShellRocks\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting3\": \"123456\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1172,39 +1172,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504DF254F2B\"" ], + "ETag": [ "\"1DC55BD721B2375\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5d4c98a-1fae-4af1-86c4-218d15be8cc6" ], + "x-ms-request-id": [ "3aa2c8a6-bfdb-482a-b7a4-ee763ee4b035" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ead62214-c4f1-41f8-8d36-92a71f0b6b56" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/42d56909-ed0d-49c1-ab5b-2cd13b5753e0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "127f9128-720d-49c0-839d-28fef3dd3b72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012034Z:127f9128-720d-49c0-839d-28fef3dd3b72" ], + "x-ms-correlation-request-id": [ "eafc90cd-db82-4db3-bee9-023879fa9559" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232148Z:eafc90cd-db82-4db3-bee9-023879fa9559" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E322FC6BA764114B2B7893E49572099 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 94B305F2A365421B80266C9FCC226134 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "179" ], - "x-ms-client-request-id": [ "de7ab1f3-20c2-4db2-9ea8-818d4b241907" ], + "x-ms-client-request-id": [ "eb6b67f1-0e02-4d92-9f96-5b1fc431e957" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1220,36 +1220,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "218c13ab-751a-446d-a98a-56dbc28e1aa6" ], + "x-ms-request-id": [ "31eb517d-335c-4bf2-8956-7698e84ca2e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd89e45b-73ff-4c47-9cff-d7cac4368adf" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c0561b7b-c40e-4c0b-8374-668f8af1fd4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:c0561b7b-c40e-4c0b-8374-668f8af1fd4f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/109f99f5-f1d1-4252-8833-1b06d8d65d7b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "7f5e52c7-37ac-435c-9e47-7e6ff5ad3ea0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232148Z:7f5e52c7-37ac-435c-9e47-7e6ff5ad3ea0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7036674CACC44C87B1744B6AE26B89BE Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B76313E6D1CC457EAC70D823AF278AFE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "180" ], - "x-ms-client-request-id": [ "f6f00116-e151-40dd-973b-97fad13ecbb3" ], + "x-ms-client-request-id": [ "508ec005-718d-456d-bcaf-714622f5d121" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1264,38 +1264,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504E02F5220\"" ], + "ETag": [ "\"1DC55BD730FC9AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf4541a6-a474-4435-92f7-ab0b28c1fcae" ], + "x-ms-request-id": [ "4ebbddfc-b119-4925-89e8-05f4a7fdd559" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ee735dff-2d63-4eee-a3a8-f18727233441" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:ee735dff-2d63-4eee-a3a8-f18727233441" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f6924396-1e26-44bf-ba26-9d929092aea2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232148Z:f6924396-1e26-44bf-ba26-9d929092aea2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F46E0A9225143CEA283BE86D0673311 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F1A26B6A39D4B9C9213305EEBDBA239 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:34.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:21:48.1866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "181" ], - "x-ms-client-request-id": [ "f17b1cf2-1708-4d36-aa79-dd575963b0e0" ], + "x-ms-client-request-id": [ "e0418e31-fc95-4705-b903-facd4d73ee0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1311,36 +1311,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "deeb47a8-33b1-4d90-a763-3ac777f73053" ], + "x-ms-request-id": [ "5138e6d9-61a1-40cf-a76d-4c04c66b0d11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b36bac4-a375-4c23-a797-30d9d6c349b4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "b73085d6-1611-4306-a0ac-7781b3fe3ed8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:b73085d6-1611-4306-a0ac-7781b3fe3ed8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90822c7a-5a7d-4593-b07b-868b0c435354" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e22e3e4e-906d-4b00-9f98-b7288814fe30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232149Z:e22e3e4e-906d-4b00-9f98-b7288814fe30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5BDB4E86CA504BB8B2F58B71ACF83CBF Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3388A20BFEF474EB173D5E06F1E860A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "182" ], - "x-ms-client-request-id": [ "30eb196c-2952-4e3d-9abb-d8958723e92b" ], + "x-ms-client-request-id": [ "9f668028-ae51-40cf-a942-45c04eb81d2a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1356,37 +1356,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e691f60-d1ed-4dd2-9539-d9d51289f59b" ], + "x-ms-request-id": [ "bc740325-b430-40e0-82d9-e99bd16bfc67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74e3bf3a-6c26-482a-8966-29294cd71455" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/615fa5ff-4d99-432a-8310-8c893f387b37" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2d66578a-9c6a-43ae-8d6f-ee3e9c8aceb2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012035Z:2d66578a-9c6a-43ae-8d6f-ee3e9c8aceb2" ], + "x-ms-correlation-request-id": [ "2cf31dff-e166-4db9-92f8-346eb455b960" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232149Z:2cf31dff-e166-4db9-92f8-346eb455b960" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8014BEA7E01149C0BA6CBD6320FAFD4F Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B64AB4B91D345B1A71A4F6D7D3105BE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "183" ], - "x-ms-client-request-id": [ "3ddc223b-59d1-40d0-916f-26ceca3ac886" ], + "x-ms-client-request-id": [ "06aa0f1a-4f30-46f6-80f5-fdc2f4b0bfea" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1402,32 +1402,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1590fcf6-6bbb-4553-ad62-36c7028bd3db" ], + "x-ms-request-id": [ "43f6bac2-32fe-475c-9de8-f478bf99d63d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/510e43b1-b86e-4481-aa2e-adb6ef1514c7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86d6d223-9a37-4251-b719-ee73626e8e27" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e51ce9e6-7951-4dfb-9102-2c8d126c2e46" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012036Z:e51ce9e6-7951-4dfb-9102-2c8d126c2e46" ], + "x-ms-correlation-request-id": [ "b436f275-9e17-4049-bb17-3cd97a2eae11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232149Z:b436f275-9e17-4049-bb17-3cd97a2eae11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72C0757BBDBC40AF95ED88C640C5FA21 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 553BE8BDEDDC4D3498F9B2FA73ED376E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting3\":\"123456\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-12q6pcrzoi\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1441,39 +1441,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504E02F5220\"" ], + "ETag": [ "\"1DC55BD730FC9AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1bcefbe3-01e1-404e-aac2-d574b82c72ca" ], + "x-ms-request-id": [ "a18906d8-3e64-45a8-b78d-ab575e01020c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11464b76-1e72-42e7-91d8-bdfbf0291bb4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/793dbf9e-aa4e-48f5-a1af-0fa9abb433e1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1f98efe6-f961-422b-881f-775f32365f12" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012038Z:1f98efe6-f961-422b-881f-775f32365f12" ], + "x-ms-correlation-request-id": [ "2bada229-cfa7-4e4e-973a-e9c204b0199e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232150Z:2bada229-cfa7-4e4e-973a-e9c204b0199e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF16F7A607944DE99A2642C30C52E1AE Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A540315335D44A17AFE489F7FDAB0286 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "185" ], - "x-ms-client-request-id": [ "9d22883b-4aad-4c30-9fb0-52dfc03428e5" ], + "x-ms-client-request-id": [ "568d4c74-054b-4169-bd1e-72c43c48f6fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1489,36 +1489,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3bd296e-edd8-4f55-ba5b-66b1adb403a1" ], + "x-ms-request-id": [ "5394d7c5-de94-48d5-88ec-9f5a4372582a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e25aafec-0ee7-4825-80ec-54597081026f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b4b35f29-72fd-4f56-96bf-9bb32167a1ea" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "fbc1f416-a8ef-4549-8f69-40d67dddeeed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012038Z:fbc1f416-a8ef-4549-8f69-40d67dddeeed" ], + "x-ms-correlation-request-id": [ "6feaedb1-198b-4293-adb3-af791737684d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232150Z:6feaedb1-198b-4293-adb3-af791737684d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2900ACD9C0A24736864A33BB3E339AA3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 837E81BE7FB64A4A90A53ED803555287 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "186" ], - "x-ms-client-request-id": [ "3121615f-27df-4cd5-9251-349e1a60a48e" ], + "x-ms-client-request-id": [ "c549fa75-5d6d-4c84-b4f4-cbbff0017fae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1533,38 +1533,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504E2486E20\"" ], + "ETag": [ "\"1DC55BD74669A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af9902cc-5aef-4cd0-a5d0-fb8128ce6fd2" ], + "x-ms-request-id": [ "5f6a52e0-6e01-4154-b356-d35b808ab0bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ecb739f-77e8-47f4-9b2f-8f5a9a76ebe6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012038Z:3ecb739f-77e8-47f4-9b2f-8f5a9a76ebe6" ], + "x-ms-correlation-request-id": [ "07148a87-5f34-4d3b-840a-44139e8b1f24" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232151Z:07148a87-5f34-4d3b-840a-44139e8b1f24" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A2682054B26412D8A3654676AA03CF0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0601014419A41059A87713F73098462 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:37.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-NewTest1-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:21:50.4333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "b491ade9-a98f-4ec8-8aa5-1b09d1bbeaa2" ], + "x-ms-client-request-id": [ "41b5674d-5362-462e-b651-1a66e2c61ca7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1580,36 +1580,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "946eadd0-08f0-4893-b3f9-d5d881bab306" ], + "x-ms-request-id": [ "b878c965-83b3-401c-b3c2-195456259aa5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f70fd509-67f9-4dfd-b25a-165ffc13d725" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f2192fd-fe89-41ee-a0c1-12b21d96e0a0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4517c4ee-2894-4bf5-b408-8dacea3a2434" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:4517c4ee-2894-4bf5-b408-8dacea3a2434" ], + "x-ms-correlation-request-id": [ "3b42f608-6549-43a8-9096-d3d3c7344365" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232151Z:3b42f608-6549-43a8-9096-d3d3c7344365" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0770499F6BD4FA397CC36060F0CB586 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0605C91A9BA840DA80C0F14F3FEFB654 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "188" ], - "x-ms-client-request-id": [ "6c11f7ba-5241-42a4-8db3-633d6acca74a" ], + "x-ms-client-request-id": [ "c7f47ab5-0a4a-41b0-9950-8a44250478f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1625,37 +1625,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0a1aef8-434a-4cc1-8970-338c6890f8c2" ], + "x-ms-request-id": [ "fda8481b-544e-495a-ae53-fe8aa295a827" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65a0b35f-d2e4-4068-a4b5-cf5eeaff525f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1d44a6c-e5bc-4831-8a82-0fabcebd2255" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d1190357-99dd-4e4d-9fff-6d9775f10844" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:d1190357-99dd-4e4d-9fff-6d9775f10844" ], + "x-ms-correlation-request-id": [ "1b794484-0520-4e0c-b515-f1fa2c126a9d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232151Z:1b794484-0520-4e0c-b515-f1fa2c126a9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 720C9C6658D643EBAF31628248E3AA27 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D278360AB64C420B875EFBF4B3D29E40 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01+38": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "189" ], - "x-ms-client-request-id": [ "c6d0aaf5-6c2d-4cb1-886a-2f9621df8045" ], + "x-ms-client-request-id": [ "bfd44a1c-5dc1-4dbb-b3e9-41be62f0f846" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1670,38 +1670,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504E2486E20\"" ], + "ETag": [ "\"1DC55BD74669A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aabc8e00-ea92-4a08-a382-1c65e7b181a6" ], + "x-ms-request-id": [ "3f3ce5c0-3761-4ad1-97ff-a7293f07f252" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7fb6389b-8114-42c5-ab96-864e0bcc6bc0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:7fb6389b-8114-42c5-ab96-864e0bcc6bc0" ], + "x-ms-correlation-request-id": [ "c03872a7-7a6e-413d-be32-802899d7652b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232151Z:c03872a7-7a6e-413d-be32-802899d7652b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD4954ACC873482B82FB0F93CDD73E2C Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C8335C3784F4C888E86415A2ADBCBF6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest1-12q6pcrzoi\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"func-powershell-newtest1-12q6pcrzoi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-12q6pcrzoi.azurewebsites.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-12q6pcrzoi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:20:37.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-NewTest1-12q6pcrzoi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest1-12q6pcrzoi\\\\$Func-PowerShell-NewTest1-12q6pcrzoi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest1-12q6pcrzoi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest1-0qslu4m95n\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"func-powershell-newtest1-0qslu4m95n.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0qslu4m95n.azurewebsites.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-0qslu4m95n.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:21:50.4333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0qslu4m95n\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest1-0qslu4m95n\\\\$Func-PowerShell-NewTest1-0qslu4m95n\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest1-0qslu4m95n.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01+39": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "a566273e-3291-45a2-85a4-01222b20e9ca" ], + "x-ms-client-request-id": [ "6d303e78-6ef2-4c14-b614-7ac262bc0947" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1717,36 +1717,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d5dbc3d-3b74-4804-bbc9-bbc3bc5bc05d" ], + "x-ms-request-id": [ "14969869-2dc1-4eba-a916-b5be4e4dfd60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c354107b-174b-45fa-b8c0-e16aee89d239" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d331d662-aaa9-4a2d-9d3c-5c855d6bef1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012039Z:d331d662-aaa9-4a2d-9d3c-5c855d6bef1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c9ff6de-6382-487c-bb14-bf178eb19d27" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "829dc9a5-a3f1-46b4-b4fc-343edfc99b34" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232152Z:829dc9a5-a3f1-46b4-b4fc-343edfc99b34" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DD324DD74D84E92A39B2A573B77F8B6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAFBA8E258474F43BBA8DC801B38E16B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-12q6pcrzoi\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01+40": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "191" ], - "x-ms-client-request-id": [ "11b50a96-a412-4cfd-a1b9-6c6be445a700" ], + "x-ms-client-request-id": [ "d423945f-540f-4dcf-870b-26e9d19a5cd7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1762,37 +1762,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a38f40e4-d6e4-483c-92d4-9bb3c69c7921" ], + "x-ms-request-id": [ "13978e19-1894-4636-a4f7-0864aa10578d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/88fc9327-cd3f-44d4-adc5-5ecc3c594550" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/320170a0-9541-4dd9-b14e-24bff6265be5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a35b117-363f-46a5-88f3-7ea5c042406f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012040Z:8a35b117-363f-46a5-88f3-7ea5c042406f" ], + "x-ms-correlation-request-id": [ "b096b7af-c8d8-4198-81e9-c610ae097e67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232152Z:b096b7af-c8d8-4198-81e9-c610ae097e67" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3C11FE5CCA3479EAB6109AB5F19EF36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 490B00AFB76841CE838D8D1B70E0ECEA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi/config/web\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/web\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+41": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "1e6e05a6-4422-44b2-8506-bb32f71a01c9" ], + "x-ms-client-request-id": [ "c5cbb696-f56f-4600-bf7e-dde0c5c8bad2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1808,36 +1808,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "513a49e9-0799-484a-bf16-979588c200d3" ], + "x-ms-request-id": [ "f680bc64-ff4d-42ef-80ec-68e1bf1ed765" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "19741db2-7e83-443f-92f7-8667349e40bb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012040Z:19741db2-7e83-443f-92f7-8667349e40bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c0cfb30c-44d2-4968-908b-4e5ffc18fcce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232152Z:c0cfb30c-44d2-4968-908b-4e5ffc18fcce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69A7D791514A4EA09C5CAE0E8A5A9DD5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3163197560CB481D9019788256F5D536 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:21:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+42": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+42": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-12q6pcrzoi?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "111bb9c8-9d50-44c0-8f99-3add238c9a2f" ], + "x-ms-client-request-id": [ "d7879fc9-a81b-43c7-a1b0-e361b278a38b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1852,20 +1852,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5504E2486E20\"" ], + "ETag": [ "\"1DC55BD74669A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fb1b505-bc2d-4e8f-9c6f-f5fdfacdfb8e" ], + "x-ms-request-id": [ "c9f99d17-b615-45e6-9da2-eaeea7a8ba4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76042b84-28f9-41e3-bedc-a1eb51a8d035" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b9f97ee-3122-468b-ad51-36b20c1af39b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "0f76ccd6-1ce7-4fb9-b168-279b4da936f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012049Z:0f76ccd6-1ce7-4fb9-b168-279b4da936f7" ], + "x-ms-correlation-request-id": [ "bfb95916-38e0-442b-9f01-894573ffb564" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232201Z:bfb95916-38e0-442b-9f01-894573ffb564" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58EDDA97EBDD4D5C97FB343A399BFC36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01BB5A6676B84F76AB2CFBBD54A8B914 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:21:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:01 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json index 45bdb751b121..19faf18d3eb4 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-DotNetIsolated-8wks\",\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": [ "a583cfd9-39dc-4a34-a2ae-10fe8a566112" ], + "x-ms-request-id": [ "168397e9-aee0-4fcc-bacf-ef73b3c516ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/303ad37a-1210-4375-b729-0d199d0b6407" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b13d6c88-e117-4261-9ab3-e95c14cae8ae" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dceaae19-3e11-45c0-a305-775ca8eb86da" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T012050Z:dceaae19-3e11-45c0-a305-775ca8eb86da" ], + "x-ms-correlation-request-id": [ "1da02c45-fa7d-43d5-a966-ff0cfd6de288" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T232202Z:1da02c45-fa7d-43d5-a966-ff0cfd6de288" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06739A7741D2414EA52AC8D466C44DBB Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BDBA780770749468C7B736A0BA64097 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -40,10 +40,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -59,38 +59,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2230d41f-bbac-40d5-915e-a23ed7e02c32" ], + "x-ms-request-id": [ "eed1ed65-1ecb-483e-8fe4-e081c361193a" ], "X-AspNet-Version": [ "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/932e2e90-0ba7-40fd-95c5-7fd4dfab8d31" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6f7ffd5b-27b6-4aeb-a53f-1a134ef78c06" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "901cfa23-e101-47d5-a2ba-4b5d49871b68" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012055Z:901cfa23-e101-47d5-a2ba-4b5d49871b68" ], + "x-ms-correlation-request-id": [ "92b1146d-502a-410b-a39c-e69a28b0b063" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232206Z:92b1146d-502a-410b-a39c-e69a28b0b063" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45FDE97E8D9F4F899738FE5070D18661 Ref B: MWH011020806052 Ref C: 2025-11-14T01:20:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:20:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FF3A301ACEB4528A25F0ACFECC1ED26 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52640,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52640\",\"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-14T23:22:06.3666667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "197" ], - "x-ms-client-request-id": [ "d54739e7-20f2-47ab-b4da-ffe9b0646a61" ], + "x-ms-client-request-id": [ "f2d251d4-91da-47cd-bc48-5a92a4e2667b" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,37 +105,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce891637-c460-4357-8c4a-ffd3a8eb0405" ], + "x-ms-request-id": [ "1eb19bb7-eede-40fb-9772-68f956af8ac2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8ebfed55-c5a9-49d5-b023-0aa03ed2800e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012125Z:8ebfed55-c5a9-49d5-b023-0aa03ed2800e" ], + "x-ms-correlation-request-id": [ "a52fd8b0-0639-4d0f-a675-0e66bee4c32e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232237Z:a52fd8b0-0639-4d0f-a675-0e66bee4c32e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D111398BF3A4F81B3DA98662A109FF0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9110E092BC0545439F41B9CD93D061C2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52640,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52640\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:22:06.3666667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "d54739e7-20f2-47ab-b4da-ffe9b0646a61" ], + "x-ms-client-request-id": [ "f2d251d4-91da-47cd-bc48-5a92a4e2667b" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -150,24 +150,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2c0b564-1ae8-4ed1-88c6-c3ea043a190d" ], + "x-ms-request-id": [ "e4ce9703-512f-489e-b9b0-f3362487b7a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7d24f2fe-f28e-49a7-adbf-8a179b65dc02" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012126Z:7d24f2fe-f28e-49a7-adbf-8a179b65dc02" ], + "x-ms-correlation-request-id": [ "b2543f38-3b71-4a6c-b45a-def131b8ae8e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232237Z:b2543f38-3b71-4a6c-b45a-def131b8ae8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55D4128098264877883D2F93BA573CEC Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BFA2632876B546898FE0DF0E1B86502F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52640,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52640\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:22:06.3666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -179,7 +179,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "667e5304-1b4b-4b56-9fcc-74670651887e" ], + "x-ms-client-request-id": [ "f77d597f-f32a-428c-8f82-206abe968814" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -194,36 +194,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "141d6801-d0aa-4132-bb01-15e81387d181", "1ac7dd7d-4728-41b5-842f-063405344f99", "1df2e81f-f05f-40ce-a7cc-abfcf9d2afa7" ], + "x-ms-original-request-ids": [ "9a8ba9ea-9e20-4d6e-a8f1-3555f5bee3fc", "02605c09-5bc4-4032-a465-e6cc2f02c925", "fac7a569-65ef-44a9-aca2-99d821f4584e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9386df91-df58-4c66-9cb2-c5cd1a9b60fc" ], - "x-ms-correlation-request-id": [ "9386df91-df58-4c66-9cb2-c5cd1a9b60fc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012127Z:9386df91-df58-4c66-9cb2-c5cd1a9b60fc" ], + "x-ms-request-id": [ "cda51885-5f7a-4c83-bf1e-c830e7e385ed" ], + "x-ms-correlation-request-id": [ "cda51885-5f7a-4c83-bf1e-c830e7e385ed" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232238Z:cda51885-5f7a-4c83-bf1e-c830e7e385ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 196A4C131E1F45D18C8BA04A508EFAC2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1EE9934BDA484D9097C66A3C1C07C196 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsflexdotnetisolated8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsflexdotnetisolated8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "200" ], - "x-ms-client-request-id": [ "08db0434-cfc8-4010-a295-126a6d7a1964" ], + "x-ms-client-request-id": [ "b212b1c9-0c64-44ee-9941-365865df16e9" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -238,31 +238,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d7cca474-0a31-46a5-b284-e40c5fec99af" ], + "x-ms-request-id": [ "4f9181b0-2c6d-4970-88f2-90eb87d8da80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/7783abc4-dfd0-47fa-9cd1-9fe53da2a4e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4442df50-db6c-499a-ada5-201116b9877d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a1e6fade-076d-4e9e-a12b-9930cbbb7e3a" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T012127Z:a1e6fade-076d-4e9e-a12b-9930cbbb7e3a" ], + "x-ms-correlation-request-id": [ "7fd3422a-0bdf-425a-8db4-016c07de6f21" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232238Z:7fd3422a-0bdf-425a-8db4-016c07de6f21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7179CEB0C0154996BD21EC6D7C67A180 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D38713B4959049539DCFF86D135C951D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9163f24d-e01e-0038-2d04-55caeb000000\\nTime:2025-11-14T01:21:27.5059514Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:55e7046e-301e-004d-5ebd-552817000000\\nTime:2025-11-14T23:22:38.7157100Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsflexdotnetisolated8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsflexdotnetisolated8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -277,25 +277,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231C22ECC4C0\"" ], - "x-ms-request-id": [ "ab69a47f-6246-490a-9956-f44260036c04" ], + "ETag": [ "\"0x8DE23D4B40512B9\"" ], + "x-ms-request-id": [ "8523ce2f-3e80-452a-b54f-69bbd81325c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c195bd68-988c-4139-8e2d-1c04bad0c4ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/29fe6e99-e6bd-4b88-ae3c-4f99abce32c3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4c0cdf61-502e-4f63-88a8-13887ce9a346" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012128Z:4c0cdf61-502e-4f63-88a8-13887ce9a346" ], + "x-ms-correlation-request-id": [ "91ddfba5-b08f-40c6-a9c3-ebea2427c9b1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232239Z:91ddfba5-b08f-40c6-a9c3-ebea2427c9b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E25072553DEE44A6A3F41D206EF61ADA Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA8262883C81407EB562C57AD2672054 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsflexdotnetisolatedfqti-0000000\",\"name\":\"app-package-functionsflexdotnetisolatedfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsflexdotnetisolated8wks-0000000\",\"name\":\"app-package-functionsflexdotnetisolated8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -307,7 +307,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "e83d7217-9030-47ac-8417-78f3a09e9a95" ], + "x-ms-client-request-id": [ "5769de24-4ef0-4048-9e74-489b98bb3142" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -322,36 +322,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d617369d-f965-4f5f-9880-951a820cde0a", "3cb8e119-cf48-4dcd-a640-a12e6a47207d", "d329ca44-78b8-439c-9c4d-b87ac2af2a0b" ], + "x-ms-original-request-ids": [ "b3b8457a-66a5-4f24-9042-e93045d43dab", "27045381-37fd-45e0-b358-b173f0936a14", "5e6139f2-1584-4691-8dc0-f8e4c90d2c70" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c512f809-a981-485b-8fa7-dcee805c5920" ], - "x-ms-correlation-request-id": [ "c512f809-a981-485b-8fa7-dcee805c5920" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012129Z:c512f809-a981-485b-8fa7-dcee805c5920" ], + "x-ms-request-id": [ "aa9bec85-1b78-4720-8cd8-7f5425d4c794" ], + "x-ms-correlation-request-id": [ "aa9bec85-1b78-4720-8cd8-7f5425d4c794" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232240Z:aa9bec85-1b78-4720-8cd8-7f5425d4c794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1753A0D087904D1FAAB164A7165E305D Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBE4CF2389C34763A3A3D899F27E95A5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "87210ff9-74bc-4670-8f95-d0dc68c8eef2" ], + "x-ms-client-request-id": [ "6c4bf58f-5b3f-4dfc-8ea4-94c2977e0709" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -366,23 +366,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d3fe6026-1a21-4e56-92de-4cf33858c6c4" ], + "x-ms-request-id": [ "88a66bc2-e8d4-46ff-a161-ed6e7732cbfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1eb73284-fd94-4a01-a498-5ac2c8be2e7b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/d66ef3cd-4e7a-4ce8-88a2-d24fb13b152a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d9864311-4a45-4fe5-b9a4-094765f22823" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012129Z:d9864311-4a45-4fe5-b9a4-094765f22823" ], + "x-ms-correlation-request-id": [ "5d90f639-62ee-4b8b-b0cb-e617d3f7fcdb" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232241Z:5d90f639-62ee-4b8b-b0cb-e617d3f7fcdb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D213E263408410DBAD99F6A067AEBA8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A3FEADCFEB04556858C6B3F5928EA8C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"y0i20oOJs7E7JvdkmmHWRMRuuOLIYrgc3GHrMUqNt1eI81wtZYq4xvFwe2HXxXZOg+08yyDZSXFu+ASt0twWmw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -394,7 +394,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "204" ], - "x-ms-client-request-id": [ "9eedc920-71a9-4771-8550-45b4f6260df3" ], + "x-ms-client-request-id": [ "8674f770-45d8-44d7-801e-aa6c204dfa72" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -409,36 +409,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3f7eca43-9edf-42ee-8de2-759a0f73dd87", "119647af-7b94-48f1-89f9-e138429d770e", "80d9926d-5c2f-432c-82ea-fa848b822667" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a47f8ebe-d5bd-4d54-89c1-458f43296dd7" ], - "x-ms-correlation-request-id": [ "a47f8ebe-d5bd-4d54-89c1-458f43296dd7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012130Z:a47f8ebe-d5bd-4d54-89c1-458f43296dd7" ], + "x-ms-original-request-ids": [ "5a13f2ac-945a-4d27-85e3-724165b25ba2", "3846ec20-25a6-43dd-83f2-3dda4575fd92", "584bddf4-fdae-492a-8fb9-4620a85f3287" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "5140b86a-6471-473a-8dbf-4dbd966720cf" ], + "x-ms-correlation-request-id": [ "5140b86a-6471-473a-8dbf-4dbd966720cf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232241Z:5140b86a-6471-473a-8dbf-4dbd966720cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A48DC3255A304C8EB21EF92042575164 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E2AB03E32BB456983CF94A93B105CA7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "205" ], - "x-ms-client-request-id": [ "4cc3c21a-b503-446b-a495-86dd38fc5442" ], + "x-ms-client-request-id": [ "a98da933-b9b0-4564-8cdf-339005734a5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -453,30 +453,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c342b5b8-6ee7-4c03-a368-f06f6bdb641e" ], + "x-ms-request-id": [ "0fd7c6c3-1efa-48c1-94b7-0b4f8601cfdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2c75ac48-2000-48ff-8d19-91c15d9d5c34" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2a5d3ec7-1166-4e77-aa47-4f7a093f4167" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd235622-e4a6-48d5-ac78-56ef4472835e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012130Z:bd235622-e4a6-48d5-ac78-56ef4472835e" ], + "x-ms-correlation-request-id": [ "ca6943b6-7d92-4ca9-9a70-1f9554ca4870" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232242Z:ca6943b6-7d92-4ca9-9a70-1f9554ca4870" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37E5B8FBA05C4627862EF01E6C463EA2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7334670618BA4113897BDB1F9FFC3D3E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"y0i20oOJs7E7JvdkmmHWRMRuuOLIYrgc3GHrMUqNt1eI81wtZYq4xvFwe2HXxXZOg+08yyDZSXFu+ASt0twWmw==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -496,30 +496,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c8294652-9739-4c9a-8b0c-59e4289c289f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/84cd07ea-bd2e-4991-b0b0-4e3f23fb5658" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "764b34e3-24eb-44a5-96c8-53ede674efbc" ], - "x-ms-correlation-request-id": [ "764b34e3-24eb-44a5-96c8-53ede674efbc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012145Z:764b34e3-24eb-44a5-96c8-53ede674efbc" ], + "x-ms-request-id": [ "1cd3e6ce-63b7-4b03-a8c2-bc8b97aa6195" ], + "x-ms-correlation-request-id": [ "1cd3e6ce-63b7-4b03-a8c2-bc8b97aa6195" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232256Z:1cd3e6ce-63b7-4b03-a8c2-bc8b97aa6195" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 859A65984BC44040B2F96332BEAB60E1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:21:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7CE7BB945C6F4A26980C01A7D8E12B26 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:22:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7803fa6c-0000-0200-0000-691684290000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-fqti\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"AppId\": \"823ef2bc-8959-4971-9e37-d58eb123f38b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0efc83b9-d2e9-496d-b76a-e87df304b77e\",\r\n \"ConnectionString\": \"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:21:33.3685541+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-fqti_823ef2bc-8959-4971-9e37-d58eb123f38b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-fqti-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\": \"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"AppId\": \"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\r\n \"ConnectionString\": \"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:22:43.5766283+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-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -533,39 +533,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55050CD42760\"" ], + "ETag": [ "\"1DC55BD9D55522B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cae591b8-edbe-4a3c-85bc-69ae383f094d" ], + "x-ms-request-id": [ "c58e48e5-83c7-4405-b4c5-b9d6ce32d2c0" ], "X-AspNet-Version": [ "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/47c4913c-985b-4c22-a06c-15e86ed205b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2d15ce47-136b-4149-8089-81d877817f8d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "1996e9f7-b4f3-4a08-8d84-cadd63185b14" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012210Z:1996e9f7-b4f3-4a08-8d84-cadd63185b14" ], + "x-ms-correlation-request-id": [ "296d553f-8003-4785-8a6b-f58c83e199ca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232320Z:296d553f-8003-4785-8a6b-f58c83e199ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F993A6BE82FC4540AAC0D70D7E3264D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:21:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31BDAC0281134B07B8C23497234EDD9D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:22:56Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:21:48.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-DotNetIsolated-8wks\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"functions-flex-dotnetisolated-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:22:58.5166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-DotNetIsolated-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "208" ], - "x-ms-client-request-id": [ "278c27ba-0bd3-4c15-87af-972c5f3e2930" ], + "x-ms-client-request-id": [ "4146eaed-8b82-44fe-9b30-ee047db9f66c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -579,38 +579,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550519249EA0\"" ], + "ETag": [ "\"1DC55BDA9AADF80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84319e39-e418-4834-a083-adceaa94ac20" ], + "x-ms-request-id": [ "1da474d2-60c9-418a-9782-64c48b68db48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f9068d73-dd0a-4b2a-9466-8143c5835a86" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012240Z:f9068d73-dd0a-4b2a-9466-8143c5835a86" ], + "x-ms-correlation-request-id": [ "c93aad28-3cff-441c-9b5a-166f3a25feca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232350Z:c93aad28-3cff-441c-9b5a-166f3a25feca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19AB4EB737504EC89399E841E5A376A2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEFD26D6FC1D4AF08EDBDC0B559E75BA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9600" ], + "Content-Length": [ "9599" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-DotNetIsolated-8wks\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"functions-flex-dotnetisolated-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:23:19.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-DotNetIsolated-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "209" ], - "x-ms-client-request-id": [ "7a91cebb-ae28-4086-bc24-1444fa49e024" ], + "x-ms-client-request-id": [ "1139780c-e8fd-41de-a4f6-4415e12733b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -625,38 +625,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550519249EA0\"" ], + "ETag": [ "\"1DC55BDA9AADF80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd1a9c85-a689-406e-8322-cc1e702d5a7f" ], + "x-ms-request-id": [ "c05d910f-1568-4a68-a663-0a4df3c428ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2bdcbc56-00b1-4c43-a91d-5210131b251f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012241Z:2bdcbc56-00b1-4c43-a91d-5210131b251f" ], + "x-ms-correlation-request-id": [ "1e4e1033-5b43-4e2e-9ccf-abea91e194f0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232350Z:1e4e1033-5b43-4e2e-9ccf-abea91e194f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA45CD63E55541D6A4CD9B9E1F460578 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 986E6CEAF2EB4F32AFC448036AA30CA7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9600" ], + "Content-Length": [ "9599" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-DotNetIsolated-8wks\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"functions-flex-dotnetisolated-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:23:19.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-DotNetIsolated-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "210" ], - "x-ms-client-request-id": [ "5c5a8a88-9ea3-493d-ab6c-bd04d9993d6e" ], + "x-ms-client-request-id": [ "adb104e2-a736-47b6-ae32-b47bebfdad92" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -672,36 +672,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88a8a89c-850a-4710-bb64-c16a81258c08" ], + "x-ms-request-id": [ "9a7ccb60-706a-480b-a519-22b24ae0fcc1" ], "X-AspNet-Version": [ "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/7916cc97-9dec-4eff-a50c-e5279cd49287" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/519b84c1-e079-414e-9def-eead7dedea5b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d418ef3f-f1a2-4ffb-b29e-04b8a8f31ead" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012241Z:d418ef3f-f1a2-4ffb-b29e-04b8a8f31ead" ], + "x-ms-correlation-request-id": [ "ed5f0b8d-787c-4171-be2b-e6e10d122b9b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232351Z:ed5f0b8d-787c-4171-be2b-e6e10d122b9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 618C1FA31BB244F6992ADE3188D44BFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4ADDF3C710E64F138852FE8DB3E93C8F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "b7d01f25-b599-48a3-bd8f-322f8b8537be" ], + "x-ms-client-request-id": [ "f4102461-a8a1-45a3-83e3-0be2a86446ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -717,37 +717,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1ae964b0-934e-44e2-bdfc-215b00e72725" ], + "x-ms-request-id": [ "955c4d01-b51d-414a-810f-c4da42da6a7d" ], "X-AspNet-Version": [ "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/7f2e4f07-45c8-406e-9fcd-c51d7f8490ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fde10610-7581-4b93-9303-74e859dcd1ed" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a0ed7c52-058b-48a3-a083-6c35bd00c365" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012241Z:a0ed7c52-058b-48a3-a083-6c35bd00c365" ], + "x-ms-correlation-request-id": [ "4bf8bb1b-d234-42b1-a3bc-5e924a138773" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232351Z:4bf8bb1b-d234-42b1-a3bc-5e924a138773" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E173BE9D48334095847113C899510029 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49D41E4A1D394B01B8685B51A3FCE518 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "2f7435ee-e409-4754-ade6-d0655eec8f29" ], + "x-ms-client-request-id": [ "f86583c9-bd6b-4a6b-aca6-18001fad46bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -763,36 +763,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef1fe638-c58c-435b-aaf7-cc095b54d7df" ], + "x-ms-request-id": [ "867f849f-4e13-47e1-a72b-e2a0ae24e9cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ccaf8137-d440-4bab-8da6-27e32696bd97" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012242Z:ccaf8137-d440-4bab-8da6-27e32696bd97" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "70fb2c3a-10c7-487f-bf3c-72b5dafb59fd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232352Z:70fb2c3a-10c7-487f-bf3c-72b5dafb59fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB0C025982634474B3D16C92500FE5A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 622802922918472B9A71BE6518B8E46B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52640,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52640\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:22:06.3666667\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "213" ], - "x-ms-client-request-id": [ "94bc5a51-be88-4fb2-a2da-b4c1c6ee1cd6" ], + "x-ms-client-request-id": [ "0494097a-0a66-4ce0-b9a3-36a7ff8d7d3b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -808,36 +808,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3beb098-f556-4d45-bdef-536ca59e5a07" ], + "x-ms-request-id": [ "c72e3346-8f4f-4313-b126-bc914dfe64cb" ], "X-AspNet-Version": [ "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/0f533f88-c10a-481b-8444-3c0ad06bd9ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/78a7c04a-429e-47b7-9b1c-0f90dced4a82" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2fdb1e86-ca8b-40fa-b747-3934fd4a5508" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012242Z:2fdb1e86-ca8b-40fa-b747-3934fd4a5508" ], + "x-ms-correlation-request-id": [ "1c111ab2-3fa6-48c3-aa92-cce8618cb5c3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232352Z:1c111ab2-3fa6-48c3-aa92-cce8618cb5c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1041EE7902A44BA591DAE4B4FA3668D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDBB8BEADB22469A9104740482010516 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "214" ], - "x-ms-client-request-id": [ "94b56bcb-a894-4278-a2a1-a449bc03aab5" ], + "x-ms-client-request-id": [ "27aa8e34-075a-4615-8dcc-924e80db88ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -852,38 +852,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550519249EA0\"" ], + "ETag": [ "\"1DC55BDA9AADF80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a1e4c354-e9b5-4d14-a479-542ae9a0d6f6" ], + "x-ms-request-id": [ "f4a6b1d0-f8aa-4fee-ad1e-f3a865f65d95" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "229ec484-d3d1-4c4b-a3ee-288c5355361f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012243Z:229ec484-d3d1-4c4b-a3ee-288c5355361f" ], + "x-ms-correlation-request-id": [ "a45254fb-411a-49a0-9ad2-b5aa85ba46bc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232352Z:a45254fb-411a-49a0-9ad2-b5aa85ba46bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 654123FCCE6D4CAA8ACA8E628E637FE6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1D058253F76426497CF67E9EA4F1667 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9600" ], + "Content-Length": [ "9599" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-DotNetIsolated-8wks\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"functions-flex-dotnetisolated-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:23:19.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-DotNetIsolated-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "c559052a-e0d6-4b34-b288-d62aa3250857" ], + "x-ms-client-request-id": [ "3cd2eabc-295f-4f21-9458-59dc9ad3bddc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -899,36 +899,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4699fe98-2d07-4ef6-917e-2dca5a511bef" ], + "x-ms-request-id": [ "fb513296-09d6-43af-bba9-e5402b5b77c7" ], "X-AspNet-Version": [ "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/ca9e51b2-5676-4d59-a6ab-85763e2128a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7372c0fb-6adc-426b-a8d1-163c154447b9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "61e78651-38dd-438d-a226-c7b11060528b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012243Z:61e78651-38dd-438d-a226-c7b11060528b" ], + "x-ms-correlation-request-id": [ "43c99037-f5d5-4ca8-84ca-9275eb24d204" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232353Z:43c99037-f5d5-4ca8-84ca-9275eb24d204" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F6072539E64421791F0752ACF1B034F Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F44FBAB75D8D4490980CFDB5503D01A5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "d4a48a48-9ada-48e1-9a4f-be3858f849de" ], + "x-ms-client-request-id": [ "33a62add-ad08-4b07-8b2a-24d72dae9e04" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -944,37 +944,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae651bb0-a314-46c3-8504-38cb06595b4d" ], + "x-ms-request-id": [ "f9dcd50e-ee42-42d6-a868-ebe806f99e0b" ], "X-AspNet-Version": [ "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/3ada3129-fb99-451e-9be8-0a6405de080b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1143ba13-923c-4d1a-8cfa-df2656aac92e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012243Z:1143ba13-923c-4d1a-8cfa-df2656aac92e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bc6ba05a-1a44-477f-9745-7c0caa75a616" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d6283226-ac94-479d-b3e7-2846adf2b853" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232353Z:d6283226-ac94-479d-b3e7-2846adf2b853" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F72F7DFCC5144704959F3B5F3CB18B95 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA6D83990E924794A533F416575C8B84 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "40dca951-2a5f-4bbc-ba11-0ea09c3ea062" ], + "x-ms-client-request-id": [ "ec4891b1-8055-4b16-b75d-fa10eabb4de5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -989,38 +989,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550519249EA0\"" ], + "ETag": [ "\"1DC55BDA9AADF80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0b05c25-8328-4c49-b455-5cb57239160c" ], + "x-ms-request-id": [ "926834b0-8aec-4cda-8692-1e672b148ead" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c2b71b22-f19d-4cea-bb3c-cee354a69329" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012244Z:c2b71b22-f19d-4cea-bb3c-cee354a69329" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "674e330e-b84b-4e53-8991-980990366f3a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232353Z:674e330e-b84b-4e53-8991-980990366f3a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3EA8890E486A4011B11699B3F362F45A Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 053645C96AAE418DABCB343EC77D276B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9600" ], + "Content-Length": [ "9599" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-DotNetIsolated-fqti\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"functions-flex-dotnetisolated-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:22:09.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://flexappdotnetisolatedsaf.blob.core.windows.net/app-package-functionsflexdotnetisolatedfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-DotNetIsolated-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-dotnetisolated-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-DotNetIsolated-8wks\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"functions-flex-dotnetisolated-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:23:19.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-DotNetIsolated-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-dotnetisolated-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "f30eab64-8f09-4732-bf44-4ca424e5aba0" ], + "x-ms-client-request-id": [ "62d1b94b-db03-47d8-9b5b-49847a33b016" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1036,36 +1036,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4415d57b-c5e4-461f-ad57-f971419de413" ], + "x-ms-request-id": [ "199b55a6-0c84-4f65-b1eb-f58879e01f88" ], "X-AspNet-Version": [ "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/5c8a5ce6-2c99-4e66-aaf5-ac65ba6295db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/02f38c07-5b96-444a-9e99-fba8cf240adb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8689296e-39e3-4fb0-a140-998fd547811f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012244Z:8689296e-39e3-4fb0-a140-998fd547811f" ], + "x-ms-correlation-request-id": [ "dfb72f14-8497-4029-97c9-14792e5e4e80" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232354Z:dfb72f14-8497-4029-97c9-14792e5e4e80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B7C8618DADD40E786DFA3B1C6761C0E Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B526CBE50474005BD4A8FE50E9A3C7D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsaf;AccountKey=hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "3acaeaef-e206-4c67-9072-14dac97332c1" ], + "x-ms-client-request-id": [ "f8434aec-18c4-44f9-b744-6d24f703bfdd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1081,37 +1081,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e7ec6b1-5555-48eb-a094-2569f89df407" ], + "x-ms-request-id": [ "0f22f534-0c3f-445b-9d45-e63dd6ec2494" ], "X-AspNet-Version": [ "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/32536434-2f93-4bd9-bdb9-f5b8ef87a747" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ecb28b51-3422-4995-8318-ea01002c6d38" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012244Z:ecb28b51-3422-4995-8318-ea01002c6d38" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b6d051be-af64-4e5d-bdd9-a4c64989470d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "ac32ccd3-85cd-41cd-aa38-3983ce4dfb89" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232354Z:ac32ccd3-85cd-41cd-aa38-3983ce4dfb89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90D6525542C3480A9088FB0560A33797 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34EF81CA069F422AB9212AA97DD3EC26 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "220" ], - "x-ms-client-request-id": [ "cd28b3c6-75e7-4990-9b05-1a3bc4e24e69" ], + "x-ms-client-request-id": [ "2e4f74ca-2a0b-4b92-9ed5-be36cb66f134" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1127,36 +1127,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f24f353-f7c4-4309-b495-c14c8e2a5906" ], + "x-ms-request-id": [ "722c0386-631b-49ec-8f4a-ef519de68dd3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b3a5e23-8d3d-47bd-81e8-1287d16f0af0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012245Z:5b3a5e23-8d3d-47bd-81e8-1287d16f0af0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5c56f7d1-e45e-493d-8790-2ee337d24001" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232354Z:5c56f7d1-e45e-493d-8790-2ee337d24001" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD04F1C628E247EFB593BAC85E775B63 Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:22:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D031DB446B6A4A44975CF47B9420E6B6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:23:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52537,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52537\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:20:55.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52640,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52640\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:22:06.3666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "221" ], - "x-ms-client-request-id": [ "6f290732-91a0-4dbd-83b2-057dec2eb724" ], + "x-ms-client-request-id": [ "ac743bcc-f335-4065-9710-4114924d9664" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1171,20 +1171,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550519249EA0\"" ], + "ETag": [ "\"1DC55BDA9AADF80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3e24fa2-57ed-46e8-9a20-89cae7ca4dd3" ], + "x-ms-request-id": [ "0db8b5fa-7097-4add-9005-816c37de44bf" ], "X-AspNet-Version": [ "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/847050e4-a90a-4d6d-a44d-5ef2b55c4ba2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0b5e3b6a-ce13-4ee4-8ea7-f2dc7050d111" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "d9361ba1-baeb-4fb3-bbc8-d4a72d94d787" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012304Z:d9361ba1-baeb-4fb3-bbc8-d4a72d94d787" ], + "x-ms-correlation-request-id": [ "514d3f59-0252-4353-a0a7-823427970ac7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232412Z:514d3f59-0252-4353-a0a7-823427970ac7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 600D4BCDBDF742ACBEA2A21A9339C1CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:22:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0559009E0F6454B9C879EEDD6980661 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:23:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1198,7 +1198,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Node-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Node-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1213,18 +1213,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d00661bf-19f2-4788-a7b6-a1d83d41d07a" ], + "x-ms-request-id": [ "a7465b4a-ee41-4b17-8c7c-79c3c0c11983" ], "X-AspNet-Version": [ "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/73c088d5-9a86-4e12-9084-d9bcbb1cedae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8314fbe0-15d2-419e-a7ba-94a83d00933e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a021da79-4766-4e73-bca0-5d2a0bc7218c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012305Z:a021da79-4766-4e73-bca0-5d2a0bc7218c" ], + "x-ms-correlation-request-id": [ "2a1ab057-0275-4329-900d-0462fefcb5d5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232412Z:2a1ab057-0275-4329-900d-0462fefcb5d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB6CDF5829CA4F09A26134C17EFBEAB0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DE5864CBC1641868891377AAC24EA3A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1235,10 +1235,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1254,38 +1254,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ad96a80-7641-4233-8c35-b8bd1a569165" ], + "x-ms-request-id": [ "16c8004a-5588-48a6-bdd7-23cb1ea26de2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5af28053-d1e3-42f3-8b6d-955d54077dac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/87163ed2-4ff9-4651-8707-b23ef2347615" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "dc001e29-9687-496f-81d9-1afd621f7465" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T012310Z:dc001e29-9687-496f-81d9-1afd621f7465" ], + "x-ms-correlation-request-id": [ "8b5040cb-a853-4bdc-9001-0792197fa0c2" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232418Z:8b5040cb-a853-4bdc-9001-0792197fa0c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACAC4E8C1142456296AA5455A2244CD7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C39B0F692B394ACBBA0D0C3590E4F2EA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52641,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52641\",\"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-14T23:24:17.58\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "225" ], - "x-ms-client-request-id": [ "345eb51c-cb03-4d14-a097-d5ec2bb910f5" ], + "x-ms-client-request-id": [ "285cabbb-e17d-48b5-9cdf-2535a1a78d53" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1300,37 +1300,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "301a654b-4691-4ccd-bb9c-650a03bad58d" ], + "x-ms-request-id": [ "b7c821fe-ab72-4c3c-91a1-c7d4cba507c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e1b1c119-2c7f-4099-9873-54f7adb49c21" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012340Z:e1b1c119-2c7f-4099-9873-54f7adb49c21" ], + "x-ms-correlation-request-id": [ "2cc5fc73-71a2-4d9f-a58c-6b6832822fb1" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232448Z:2cc5fc73-71a2-4d9f-a58c-6b6832822fb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 352774E1C5F64C509E4A9DDB51EF46AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D7B7602ABF442F9BB6DCE64E7463229 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52641,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52641\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:24:17.58\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "226" ], - "x-ms-client-request-id": [ "345eb51c-cb03-4d14-a097-d5ec2bb910f5" ], + "x-ms-client-request-id": [ "285cabbb-e17d-48b5-9cdf-2535a1a78d53" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1345,24 +1345,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e718d49-ec15-43f6-8e9e-40e49adf36fb" ], + "x-ms-request-id": [ "0777b6f0-97b3-4906-9318-679efd67d877" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b243d7e-b111-49cf-a07f-00d93305af91" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012341Z:5b243d7e-b111-49cf-a07f-00d93305af91" ], + "x-ms-correlation-request-id": [ "fbf40ae2-2241-4068-af23-7bff5acda535" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232449Z:fbf40ae2-2241-4068-af23-7bff5acda535" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3EF467E1C534A9CAFA518838790CBCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7AF529ACBABD4A22BA40FB4A6057B3CA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52641,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52641\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:24:17.58\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -1374,7 +1374,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "9c2f976b-3f04-4f9e-afa1-cd55ba312d84" ], + "x-ms-client-request-id": [ "6653a8f2-96f6-4761-88bc-9ec381b03658" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1389,36 +1389,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2f3c5bc1-459b-44a2-b1c3-0482896e2cdf", "91ce3d8e-4644-45b3-b129-5ff13ba28ea7", "bbc52c04-ac7a-4b1c-a4f6-4f1e2ed3ac52" ], + "x-ms-original-request-ids": [ "735fcff7-c472-4a3c-be74-3eae162835a0", "ed07e297-eac1-4d08-9593-51f5f4d893a3", "4b332e4b-d4ea-4156-b7ed-4c8980dc48cb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2b1099a7-bfab-47c3-a359-af9bcd1f073a" ], - "x-ms-correlation-request-id": [ "2b1099a7-bfab-47c3-a359-af9bcd1f073a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012342Z:2b1099a7-bfab-47c3-a359-af9bcd1f073a" ], + "x-ms-request-id": [ "81c4a40e-d34b-48ea-b5d9-da0ad680520c" ], + "x-ms-correlation-request-id": [ "81c4a40e-d34b-48ea-b5d9-da0ad680520c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232450Z:81c4a40e-d34b-48ea-b5d9-da0ad680520c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DEC1265314C468A915C607400A10220 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBF72E1A222C44419FABFE3219F3AE5B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsflexnode8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsflexnode8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "db47f28a-cf5e-4339-8fa0-86f685560aa8" ], + "x-ms-client-request-id": [ "f109205d-604c-4bd0-ac1c-063acfeb8041" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1433,31 +1433,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "85692b03-67c4-4dc7-ba1e-65cf5faed26b" ], + "x-ms-request-id": [ "888b6e77-73a8-4168-8f3f-232ef6eff154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/ddef34da-fd6f-448b-992d-9dc2c6e18439" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/303b6a60-33b2-498f-9a2d-fa45c66f51c1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e2ffbc7-5e5d-46c1-8312-989c381498de" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T012342Z:9e2ffbc7-5e5d-46c1-8312-989c381498de" ], + "x-ms-correlation-request-id": [ "894c3dc7-37f7-4e72-ab52-6baeafc65a34" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232450Z:894c3dc7-37f7-4e72-ab52-6baeafc65a34" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CC0B7EFAE414699AA345BDA10154165 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1D80325885541CAAC5386B90743FFA8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:cb581700-f01e-0054-6805-55b656000000\\nTime:2025-11-14T01:23:42.5720335Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:ab855cb2-801e-0078-65bd-558698000000\\nTime:2025-11-14T23:24:50.5152032Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsflexnode8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsflexnode8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1472,25 +1472,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231C732BBFDB\"" ], - "x-ms-request-id": [ "672d8b88-0ef7-44fe-9dee-04ba02288195" ], + "ETag": [ "\"0x8DE23D5027232DE\"" ], + "x-ms-request-id": [ "15aa96bd-2268-42b2-9697-58251cf6807b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ee23ee82-ead8-4b6f-8266-3ed13446f14d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e26e9c31-7e5d-4b41-94b2-20c3eb453bdb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3552037f-1274-4616-b347-c19490f4cf1e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012343Z:3552037f-1274-4616-b347-c19490f4cf1e" ], + "x-ms-correlation-request-id": [ "f4386072-2d1f-410e-af81-f91c731a6ca3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232450Z:f4386072-2d1f-410e-af81-f91c731a6ca3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DC66E09CE8840B2B0A07916B05FA200 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C6AB750DCA0438A868F0F3768264F12 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "440" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsflexnodefqti-0000000\",\"name\":\"app-package-functionsflexnodefqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsflexnode8wks-0000000\",\"name\":\"app-package-functionsflexnode8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -1502,7 +1502,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "7061cccc-6205-44ab-bd9d-9d1669dc156f" ], + "x-ms-client-request-id": [ "8af4e0fa-38bb-49b8-8188-f50d220ddd98" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1517,36 +1517,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "431faf37-8099-47a8-a657-528810766f5a", "11b39b95-e5eb-4ba8-b3fa-cecaa021efd4", "97cbe9ec-27dc-46c8-a473-4ac07fa00d50" ], + "x-ms-original-request-ids": [ "fe856f38-2030-47ee-8664-e13fc12cc8bf", "531e8d6d-a816-41c1-85d2-bc958952bc9c", "f0847195-4958-432a-9619-654b44d3a10d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ecf42c98-9c11-45d9-8a17-935261cdb75f" ], - "x-ms-correlation-request-id": [ "ecf42c98-9c11-45d9-8a17-935261cdb75f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012344Z:ecf42c98-9c11-45d9-8a17-935261cdb75f" ], + "x-ms-request-id": [ "a86e4489-3763-4524-ad11-a8d1ed0d7cb0" ], + "x-ms-correlation-request-id": [ "a86e4489-3763-4524-ad11-a8d1ed0d7cb0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232451Z:a86e4489-3763-4524-ad11-a8d1ed0d7cb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9797D2A8A59843819073D785D34E1D02 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D526EF7A9887416C93A87F7F118455C1 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "231" ], - "x-ms-client-request-id": [ "322a7d1e-20bf-45ca-86bd-0d365ea12b33" ], + "x-ms-client-request-id": [ "333be71c-380c-41e6-82c9-62cf740e6f66" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1561,23 +1561,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bf672f45-840f-4831-be89-90048d9d3e3a" ], + "x-ms-request-id": [ "2debb8e6-4715-4f30-98dc-2549f35e0cba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e3342971-621a-46a1-8ee5-dccae6c97356" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a9b0bf2f-b82d-426a-a11e-c1ac081976a8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "abf3cf65-1bd4-47f5-9ad5-7894336f8de6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012345Z:abf3cf65-1bd4-47f5-9ad5-7894336f8de6" ], + "x-ms-correlation-request-id": [ "f614e1bb-9e08-4869-9f33-de35e6eeb5e7" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232452Z:f614e1bb-9e08-4869-9f33-de35e6eeb5e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6B593F234D345298586CE3A9AEAB4FB Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E7F8F3FCCFD40B797A3F517B0A751C8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"pSHOojsFN8q+Tack0Fyxk5X3kWIJdkDnZL3UplBajtACJ9TH98k15kf8peL/uAMEC2CVnaF8FTeG+AStB2gFug==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"HPx4RMmDLBazm1divQFiA4722BK9DJxgwjCVxQ3ohY8EXNVhnRjR9v23ZM4WtwWlx4056+GzeedG+AStbFJshQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1589,7 +1589,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "232" ], - "x-ms-client-request-id": [ "08669115-9a5d-4f86-abec-59fb80e08bb6" ], + "x-ms-client-request-id": [ "4821c34e-d11d-4e4c-989f-c4cc9fa86162" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1604,36 +1604,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4a7245e6-99b7-481f-90c9-006a454d2c42", "d0074941-2adf-4149-840e-a0550218d601", "9323c5b7-595e-46c7-aba5-1ef133e1f4c8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c791b706-d1f4-4ed9-8905-ac6f2f0e999e" ], - "x-ms-correlation-request-id": [ "c791b706-d1f4-4ed9-8905-ac6f2f0e999e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012345Z:c791b706-d1f4-4ed9-8905-ac6f2f0e999e" ], + "x-ms-original-request-ids": [ "549bd501-df20-4f2c-ae37-d146b9f46451", "164a589c-e627-43d1-a449-cda02fbd1d00", "f2031469-2b08-4071-bd3b-c3d488f5c9a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "d7d255ff-a4a7-4081-b41e-a5c25b61ff52" ], + "x-ms-correlation-request-id": [ "d7d255ff-a4a7-4081-b41e-a5c25b61ff52" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232453Z:d7d255ff-a4a7-4081-b41e-a5c25b61ff52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E07D3333CCE84A3C8C9CB89D04D337DD Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D80CFB753D7742C6AE2634E18CA25C86 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "192b57d5-5bf0-4223-ac2a-789cd28fec7b" ], + "x-ms-client-request-id": [ "12bbac1f-52d9-4aad-9b01-cc60e859915b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1648,30 +1648,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6279af9e-9788-4eee-92a7-e1a16e5fc7bb" ], + "x-ms-request-id": [ "b1f899cc-980e-4abe-8a2e-41a3c0ece2bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/9ea988fd-54d0-488b-8121-e1bce6a20136" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9937f2ee-1d03-41d5-9f0b-a1c1ea04c3ac" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b265e868-0feb-42da-9031-116e27ab94e6" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251114T012346Z:b265e868-0feb-42da-9031-116e27ab94e6" ], + "x-ms-correlation-request-id": [ "e56012f7-e5e1-4dfb-bc8b-f97ba4cbe0ce" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232453Z:e56012f7-e5e1-4dfb-bc8b-f97ba4cbe0ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE4DBBA6F40E46AB85952D93CE259452 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C826E5FEE37F451C810AF28B66C7DDB0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:24:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"pSHOojsFN8q+Tack0Fyxk5X3kWIJdkDnZL3UplBajtACJ9TH98k15kf8peL/uAMEC2CVnaF8FTeG+AStB2gFug==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"HPx4RMmDLBazm1divQFiA4722BK9DJxgwjCVxQ3ohY8EXNVhnRjR9v23ZM4WtwWlx4056+GzeedG+AStbFJshQ==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Flex-Node-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Node-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Node-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Node-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -1691,30 +1691,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ca71ecc0-fe9a-4579-a8e1-004e7aebd4da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e8feb77a-5411-4be0-a6f8-837744d942d5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "9d9c7c3b-9065-45cb-9ace-873a90155992" ], - "x-ms-correlation-request-id": [ "9d9c7c3b-9065-45cb-9ace-873a90155992" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012357Z:9d9c7c3b-9065-45cb-9ace-873a90155992" ], + "x-ms-request-id": [ "7f871e98-4199-40b2-a823-27ca80b62fa9" ], + "x-ms-correlation-request-id": [ "7f871e98-4199-40b2-a823-27ca80b62fa9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232508Z:7f871e98-4199-40b2-a823-27ca80b62fa9" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00B55CD26E6F4516A493D8B571260EC6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:23:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9622ABBF6C04D879576FC6E16BA74BC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:24:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:25:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1600" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"78033075-0000-0200-0000-691684ad0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Node-fqti\",\r\n \"name\": \"Functions-Flex-Node-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-fqti\",\r\n \"AppId\": \"968cb2e5-19cd-47be-8eca-ca4b54c56198\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"aa497dca-41c0-4f25-ad85-ea184f06d59b\",\r\n \"ConnectionString\": \"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\",\r\n \"Name\": \"Functions-Flex-Node-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:23:48.8943199+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-fqti_968cb2e5-19cd-47be-8eca-ca4b54c56198_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-fqti-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\": \"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\r\n \"name\": \"Functions-Flex-Node-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-8wks\",\r\n \"AppId\": \"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\r\n \"ConnectionString\": \"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\",\r\n \"Name\": \"Functions-Flex-Node-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:24:55.9628013+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-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1728,39 +1728,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55055B11DB8B\"" ], + "ETag": [ "\"1DC55BDEC6F428B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "657ca6de-81b6-4f31-9e57-b4b760751b2c" ], + "x-ms-request-id": [ "bf74048a-e2fe-4ea1-a5dc-fe7df87fa2f6" ], "X-AspNet-Version": [ "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/8ff11613-b71e-481d-bf55-179934e47aad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d16c345f-d8b9-4f60-903b-0af4d5a7be8d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "28518b67-8023-4cbf-8057-117b8e249eeb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012421Z:28518b67-8023-4cbf-8057-117b8e249eeb" ], + "x-ms-correlation-request-id": [ "dbb6e3dd-5674-4f19-accb-e163c2611e11" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232532Z:dbb6e3dd-5674-4f19-accb-e163c2611e11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B26015FFA3A84F9699E76E979885EBA0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:23:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C57B1C4080AF4AFB821AA8AA307B76B4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:25:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:25:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9461" ], + "Content-Length": [ "9454" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:23:59.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Node-8wks\",\"repositorySiteName\":\"Functions-Flex-Node-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-8wks.azurewebsites.net\",\"functions-flex-node-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:25:11.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Node-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-node-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "e003eb48-bcad-4b02-89f1-98a717fa2abd" ], + "x-ms-client-request-id": [ "4748ea53-8cef-4500-9bc6-e0e7b7970ec6" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1774,38 +1774,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55056781DBB5\"" ], + "ETag": [ "\"1DC55BDF8DAAED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc8632d4-1241-4476-b0c8-648d85c6de95" ], + "x-ms-request-id": [ "33f07602-da2b-45f9-aed9-1fea2a5c76e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b8355d30-5151-40be-9972-a7401eedf4cf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012452Z:b8355d30-5151-40be-9972-a7401eedf4cf" ], + "x-ms-correlation-request-id": [ "e27eb514-4d0b-4389-ae62-c4e9bc661adc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232603Z:e27eb514-4d0b-4389-ae62-c4e9bc661adc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDAF6D1F020943039D97923106ABD543 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D227C62F166419A81F4EE945ACF677F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9443" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Node-8wks\",\"repositorySiteName\":\"Functions-Flex-Node-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-8wks.azurewebsites.net\",\"functions-flex-node-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:25:32.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Node-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-node-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "e6cc3a9a-94d0-4669-a7f9-d891cb9fca1b" ], + "x-ms-client-request-id": [ "624c425a-6aac-410b-ba1b-e3143cef2356" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1820,38 +1820,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55056781DBB5\"" ], + "ETag": [ "\"1DC55BDF8DAAED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec2dadb8-6c9a-49c0-b8a3-8757714eae14" ], + "x-ms-request-id": [ "4df27163-1d23-4e09-aa5f-640ef8974961" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db0dc2ce-3592-4d30-a438-871139c1e7f5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012452Z:db0dc2ce-3592-4d30-a438-871139c1e7f5" ], + "x-ms-correlation-request-id": [ "00f0c664-4173-4843-babf-be72c7b0aa16" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232603Z:00f0c664-4173-4843-babf-be72c7b0aa16" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09A71A1E498647FD812D400726BDE547 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47CA75C0E56947628B63C2234EBD41F4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9443" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Node-8wks\",\"repositorySiteName\":\"Functions-Flex-Node-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-8wks.azurewebsites.net\",\"functions-flex-node-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:25:32.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Node-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-node-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "238" ], - "x-ms-client-request-id": [ "bc2f34f3-8365-4949-89c0-bd7d4acd27be" ], + "x-ms-client-request-id": [ "cfc33b12-7c4a-4327-a427-f44eb48b9fd7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1867,36 +1867,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84c892ee-72d0-4072-9ed6-85b0bcd58984" ], + "x-ms-request-id": [ "76a545ee-76f7-4c26-91f3-717619310343" ], "X-AspNet-Version": [ "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/2f0929e9-8c50-45c4-9e84-1f264434f8c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/85c4f64c-008f-4d8a-9888-5d66b9b57df6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c3d2faeb-d35c-46a0-99bf-9df82f017fdc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012452Z:c3d2faeb-d35c-46a0-99bf-9df82f017fdc" ], + "x-ms-correlation-request-id": [ "cf7cda5d-3d1e-499b-9b7a-a01d129b80a0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232604Z:cf7cda5d-3d1e-499b-9b7a-a01d129b80a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5BD067C173CC4BA0A26E941D52ACB6EA Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E20A33F9E964B5EBB9B29ABAE1E685E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "239" ], - "x-ms-client-request-id": [ "79d96e7b-55c8-4322-a215-0efbea5054d4" ], + "x-ms-client-request-id": [ "7427af64-9b27-42de-a909-68bc0d875996" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1912,37 +1912,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a9ac4da-332e-4728-bdb5-83ed2b5c9914" ], + "x-ms-request-id": [ "630c8cdd-0abe-49b6-bc07-766b2e302352" ], "X-AspNet-Version": [ "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/d6d2b39c-847d-4422-ae82-a8b08b9d4e89" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/80cf7f1f-1fdb-42d1-a0ba-711a441c406d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ffc41d99-d136-4711-a641-1925102e367a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012453Z:ffc41d99-d136-4711-a641-1925102e367a" ], + "x-ms-correlation-request-id": [ "cfeee6df-50d7-4850-b260-d71132844f89" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232604Z:cfeee6df-50d7-4850-b260-d71132844f89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4DB8CB978DB4207991C7580788E33D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33679461B9374354A4C6FD30A618028A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web\",\"name\":\"Functions-Flex-Node-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "e390aa4c-242c-4c98-ad9b-326312ab6df1" ], + "x-ms-client-request-id": [ "2b108643-e781-4f90-8aba-32754d9df837" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1958,36 +1958,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f72423da-d485-44e7-a873-31a76572a09b" ], + "x-ms-request-id": [ "cb5513e0-2d48-4477-bf5b-a61e232ef610" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79605ed6-d0bf-48b3-a740-beded34161cc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012453Z:79605ed6-d0bf-48b3-a740-beded34161cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b1940576-9aff-44f0-bfbb-fd829ccf1c7f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232605Z:b1940576-9aff-44f0-bfbb-fd829ccf1c7f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5B9B3055FB8467982FC09B2755247B1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E272EC3B6BF485F8D266C46F786108E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52641,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52641\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:24:17.58\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "241" ], - "x-ms-client-request-id": [ "46891853-d28c-4131-a09b-b25d2dd47631" ], + "x-ms-client-request-id": [ "fd876565-2af1-4660-a2fc-76032d67fd00" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2003,36 +2003,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "abd73abc-1f2d-4204-8668-d9d849026e5f" ], + "x-ms-request-id": [ "b2a85176-6d5e-48b2-ad71-e2afe6264094" ], "X-AspNet-Version": [ "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/422adc7b-f97a-452c-8177-5b70e35c4874" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bed95784-b6b3-4e42-8eeb-9d8f182cda13" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012453Z:bed95784-b6b3-4e42-8eeb-9d8f182cda13" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2a6bb33c-cae5-4e1d-a82b-aa1f593a22ea" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "5198189a-0983-4da2-be8e-582b0ecdfe37" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232606Z:5198189a-0983-4da2-be8e-582b0ecdfe37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 018DA0E09A92415582BB7FE051289E38 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 978E2E342B5B45CFB71DC009107ECE9E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "fbd3447b-0f9d-4b05-8839-02c3383a4a21" ], + "x-ms-client-request-id": [ "6fb37c20-2a43-4543-b999-3fd115be7ac6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2047,38 +2047,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55056781DBB5\"" ], + "ETag": [ "\"1DC55BDF8DAAED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0c792c3-3be0-4a82-b35e-93262c0e4560" ], + "x-ms-request-id": [ "98017c33-8036-4aec-bf4c-893fc9ebfa14" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "94b9283e-f7a2-4b7f-9794-044212d4e7ae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012454Z:94b9283e-f7a2-4b7f-9794-044212d4e7ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "42eebe81-e025-438b-aac9-17a94993ef24" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232606Z:42eebe81-e025-438b-aac9-17a94993ef24" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FE70E3716CA405A9C7A83BED285248D Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9DE8B14DB274B5C9E2E717D4E9AC897 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9443" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Node-8wks\",\"repositorySiteName\":\"Functions-Flex-Node-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-8wks.azurewebsites.net\",\"functions-flex-node-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:25:32.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Node-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-node-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "ab71e28b-2012-49b5-9c57-2c99c2084a43" ], + "x-ms-client-request-id": [ "c8a53dd7-7bec-4875-9594-736acc020dcc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2094,36 +2094,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b8bcb53-799b-4f66-8905-344836e31338" ], + "x-ms-request-id": [ "35717002-5aa9-4bec-b38a-4f85be9c83b8" ], "X-AspNet-Version": [ "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/9f6e50db-8f0d-4249-a8d0-54b07a83f925" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/34e9c2d3-157e-4c4d-8450-b6dac927f53b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f6441391-5824-41b0-8991-cf7281a2ee58" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012454Z:f6441391-5824-41b0-8991-cf7281a2ee58" ], + "x-ms-correlation-request-id": [ "2e7e3851-459d-422d-a5b1-ea3789db0011" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232607Z:2e7e3851-459d-422d-a5b1-ea3789db0011" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C021BF8D3D44C0D888EB9A7C17009D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F7253A897B44D4FB840142CD042645F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "244" ], - "x-ms-client-request-id": [ "7e23a444-fcc0-483b-9d63-259cd8dcfe19" ], + "x-ms-client-request-id": [ "2de400dd-78fd-4b76-bfc6-5f8a35379274" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2139,37 +2139,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99341080-0077-47d4-908c-5d2517e259be" ], + "x-ms-request-id": [ "d962524b-6fe0-4a13-8d79-d578199655a6" ], "X-AspNet-Version": [ "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/04241e3e-4135-4903-b208-fb9105d536c7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7d9fac0-ded4-402b-a6f3-e90447a914a4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012454Z:c7d9fac0-ded4-402b-a6f3-e90447a914a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/18b51818-e969-4dea-ba8f-b225dcd3e041" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bd6e5e2d-738f-4ccb-b20c-172c5bead04b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232607Z:bd6e5e2d-738f-4ccb-b20c-172c5bead04b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2883A2C65D4141DC9FE8789913D8F1E7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD03D47C151E4A4EA7F792010F3BC6C6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web\",\"name\":\"Functions-Flex-Node-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "245" ], - "x-ms-client-request-id": [ "531a7261-ba5d-4783-8598-c4232352f086" ], + "x-ms-client-request-id": [ "2c3dbcfa-5886-4254-9d64-41362fc9687f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2184,38 +2184,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55056781DBB5\"" ], + "ETag": [ "\"1DC55BDF8DAAED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11fe8634-a189-4515-86af-38a8f212e135" ], + "x-ms-request-id": [ "80ccaa82-fe7d-4ab4-8abf-1e38ec14f42b" ], "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": [ "5a50c321-fd6e-4b15-a7b6-ef4d21c930c6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012455Z:5a50c321-fd6e-4b15-a7b6-ef4d21c930c6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "3f38d800-b16a-44e7-b9be-77eda9f1df8b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232608Z:3f38d800-b16a-44e7-b9be-77eda9f1df8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 24993A201778401D8EECBDAD753D8121 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4BB22917E055477CBDAA86849F6CDF95 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9443" ], + "Content-Length": [ "9436" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Node-fqti\",\"repositorySiteName\":\"Functions-Flex-Node-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-fqti.azurewebsites.net\",\"functions-flex-node-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:24:21.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsflexnodefqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-fqti\\\\$Functions-Flex-Node-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-flex-node-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Node-8wks\",\"repositorySiteName\":\"Functions-Flex-Node-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-8wks.azurewebsites.net\",\"functions-flex-node-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:25:32.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Node-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-node-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "246" ], - "x-ms-client-request-id": [ "ed9dbf47-5233-441a-ab8b-fb1c7068f9c1" ], + "x-ms-client-request-id": [ "9656cc80-7947-41f9-a35a-c533098bd1d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2231,36 +2231,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c39bbac-77fd-4b77-a404-91cab627867b" ], + "x-ms-request-id": [ "8a4be45c-dade-4380-a2e2-9662f19b7999" ], "X-AspNet-Version": [ "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/6d4facee-6254-4077-b014-674797994875" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5c26583d-ba6a-4eaf-915e-d69d5cf628b0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "da3f6bfa-72bb-4551-9cea-a7efd26dbca4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012455Z:da3f6bfa-72bb-4551-9cea-a7efd26dbca4" ], + "x-ms-correlation-request-id": [ "d9298548-204d-4800-8f86-f1a717f58758" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232608Z:d9298548-204d-4800-8f86-f1a717f58758" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83456E2A0AFC47D6AFE990E2CFB94C9A Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 136B0AFC0B2549E3BD9F2C152F6C70B8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "c44c7b40-7251-4539-aa2e-96a926c60c51" ], + "x-ms-client-request-id": [ "c5d2dce5-a6f4-4b23-a904-1717038d2ec8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2276,37 +2276,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb9fd5b9-cbde-4004-8fe7-f247ccedd06f" ], + "x-ms-request-id": [ "0c612b7c-5cad-49ea-b0fa-b8ae23b81ae4" ], "X-AspNet-Version": [ "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/23813160-7fdd-4a20-b5c8-886e36c0de5e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "29d85f91-9e5b-4316-84ea-f67a247b1679" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012456Z:29d85f91-9e5b-4316-84ea-f67a247b1679" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/042c1d83-7640-4b3c-9f11-6e967bcdf06d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "7ddca4ea-901c-4e2f-8605-57d44deae26a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232608Z:7ddca4ea-901c-4e2f-8605-57d44deae26a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 36B3CF5552694B0AA0A9469204F349D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 765A125853994A05ACBD41231706B525 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti/config/web\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/web\",\"name\":\"Functions-Flex-Node-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "c7c263d3-6d06-4524-a61d-0bd54151d9bf" ], + "x-ms-client-request-id": [ "a94649e6-25a9-4711-b8fd-a1ed73dbf5ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2322,36 +2322,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "151af382-913c-42fe-83b4-dbddbec34101" ], + "x-ms-request-id": [ "ad48838f-24fa-45fb-9062-f84100f26981" ], "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": [ "d955c85f-b420-432d-afe9-92b31d53feaf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012456Z:d955c85f-b420-432d-afe9-92b31d53feaf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "44a97c55-711d-42be-8d2d-64f7ddb5d380" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232609Z:44a97c55-711d-42be-8d2d-64f7ddb5d380" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34898ACFF9124AE8B44ED819A301070E Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:24:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E7B049CF36E4A48A5F3D8A8C412ED8A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62034,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:23:10.22\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52641,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52641\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:24:17.58\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Node-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "249" ], - "x-ms-client-request-id": [ "c9297a30-0970-42df-9c3b-57dca6af14ee" ], + "x-ms-client-request-id": [ "5616626f-cea0-4d3a-adfa-3c61c2e87164" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2366,20 +2366,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55056781DBB5\"" ], + "ETag": [ "\"1DC55BDF8DAAED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4b507e6-a9e3-4f63-97d6-eb7600eeef61" ], + "x-ms-request-id": [ "415d4eec-bda7-40da-b859-cf3bef59367c" ], "X-AspNet-Version": [ "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/e5105de7-6133-4903-a219-47e84ff24a4c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ad3f9b2c-79e1-4fa8-b94e-c29b847ccb50" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c0a4632e-a369-4f34-a870-a85e2830b3ee" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012513Z:c0a4632e-a369-4f34-a870-a85e2830b3ee" ], + "x-ms-correlation-request-id": [ "775eb78e-44c7-4144-bc3e-217130598e9e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232626Z:775eb78e-44c7-4144-bc3e-217130598e9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5916BAC630A485DA82E50BE843409D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:24:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8A74C34D4F5432F911887547BA6FCC5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2393,7 +2393,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Python-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Python-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2408,18 +2408,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c977846-e1e9-4d27-9eb8-879c145258d2" ], + "x-ms-request-id": [ "04da5077-ef0d-4dc5-8fcf-ebf5cbf81640" ], "X-AspNet-Version": [ "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/cd8bcabd-6634-4c32-b6bf-76c79cae618b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/20d64d91-6d19-444f-8be3-991ab476825f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a6513e24-2e95-471e-bd3d-91fe193a22dd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012514Z:a6513e24-2e95-471e-bd3d-91fe193a22dd" ], + "x-ms-correlation-request-id": [ "9f4fe303-9f83-4a59-b0dd-2bf0f4a8bca0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232627Z:9f4fe303-9f83-4a59-b0dd-2bf0f4a8bca0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08A57D77320E4FC883A2EB8D4A6BEBB5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:13Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CADE904BE174E36B35349B6421B9360 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2430,10 +2430,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -2449,38 +2449,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "008b8698-fd02-4a50-a798-16c61494a0c2" ], + "x-ms-request-id": [ "abae8309-8473-4d70-8435-c4eb75722b3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/33bd5f43-5818-4f8b-8528-5625ae781815" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/806a8028-7a77-4d65-8ec1-c946ee5947f1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9b9690db-5639-43cb-9e6d-c1e7872b63e5" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T012519Z:9b9690db-5639-43cb-9e6d-c1e7872b63e5" ], + "x-ms-correlation-request-id": [ "0025a007-81cd-4fc7-aa7c-22c22d5ba72c" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232633Z:0025a007-81cd-4fc7-aa7c-22c22d5ba72c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5FF0609E8BE4F4A97EAFCB45CBDEFFA Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:14Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 666E471004DA454F96E4379EA92BC782 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:26:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:26:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"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-14T01:25:19.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52642,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52642\",\"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-14T23:26:33.04\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "9941c41e-2b61-4e34-98cb-8e6592b5e327" ], + "x-ms-client-request-id": [ "6a94e8a2-65c4-4e0e-a5a2-1e168f361bfd" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2495,37 +2495,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f722a3a4-b3cf-4a25-ab19-c196b2ab5170" ], + "x-ms-request-id": [ "1d5322aa-262a-4d63-acd7-4f72684b3c6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d2d9d893-1930-4b88-9c3a-85482f7821f8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012550Z:d2d9d893-1930-4b88-9c3a-85482f7821f8" ], + "x-ms-correlation-request-id": [ "08a9ff1f-88e7-471c-aee7-939e0e8362da" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232703Z:08a9ff1f-88e7-471c-aee7-939e0e8362da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F088640440DE4329A300AB8C6D99BE63 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A9CBFAA208042E099A147FF8E25D3A6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52642,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52642\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:26:33.04\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "9941c41e-2b61-4e34-98cb-8e6592b5e327" ], + "x-ms-client-request-id": [ "6a94e8a2-65c4-4e0e-a5a2-1e168f361bfd" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2540,24 +2540,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4275f89-abb1-47c7-83a4-d8532893c905" ], + "x-ms-request-id": [ "11abd898-fd6c-4d3a-9466-b35a1adccf01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "23e3da24-00b6-4c01-b32c-811684a3d871" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012550Z:23e3da24-00b6-4c01-b32c-811684a3d871" ], + "x-ms-correlation-request-id": [ "df684eef-12da-456e-aabb-1f1ee4b1234c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232704Z:df684eef-12da-456e-aabb-1f1ee4b1234c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C9C2B32FB73496FA82C59D798CB9598 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CC8D04A47904C22A6CE5C794695BCB0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52642,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52642\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:26:33.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -2569,7 +2569,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "c3b1ed38-1e24-481b-9b1e-60c76d5308d0" ], + "x-ms-client-request-id": [ "865ecea6-03ec-452a-b275-57216a86a14b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2584,36 +2584,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "40f971eb-0896-45f1-b523-81461f2275b8", "693a5308-eb54-48fd-bfc7-f3201de9f29e", "6f2d86ac-b07a-4854-a69b-57c9a626b8b3" ], + "x-ms-original-request-ids": [ "f283ff89-556d-40a2-824f-8dcb4b18ba16", "25ba2746-40dd-4cef-83a9-f6ad716a0c63", "a84573cd-ded6-4183-8993-9ab248b9a4d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6c2ee2f5-1662-4248-b4a5-d86f28a3bd36" ], - "x-ms-correlation-request-id": [ "6c2ee2f5-1662-4248-b4a5-d86f28a3bd36" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012551Z:6c2ee2f5-1662-4248-b4a5-d86f28a3bd36" ], + "x-ms-request-id": [ "44b530c3-fa01-4bc3-a4ed-3597801397e1" ], + "x-ms-correlation-request-id": [ "44b530c3-fa01-4bc3-a4ed-3597801397e1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232705Z:44b530c3-fa01-4bc3-a4ed-3597801397e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B94A6967F6024A5DA6C3B1E7ED5DE66F Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47185F2693D64D60B759F30FC80D9F3C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionsflexpython8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionsflexpython8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "ad23477f-e5b5-423b-80bf-8b6c408fe15e" ], + "x-ms-client-request-id": [ "0602f8c0-842d-48e8-9c6e-35a623cb44f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2628,31 +2628,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e4264a3a-7ec3-46db-97c0-cf07eb7458d6" ], + "x-ms-request-id": [ "48bc4546-967e-42c0-951d-c5b9af32af65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b7f85299-6b22-4e11-8df3-ab91e30f146d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/39b05df9-054e-4070-9450-00ca4be8cbb0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df7bf378-b864-4378-b070-55e1eeac7399" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012552Z:df7bf378-b864-4378-b070-55e1eeac7399" ], + "x-ms-correlation-request-id": [ "3cd23cfc-99fb-400f-bba8-978b336f82f3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232705Z:3cd23cfc-99fb-400f-bba8-978b336f82f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 164868DB593C4FACA15557DC471F4510 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0335EA1AF8824734A822DDC9667B29F0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:05Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9164d279-e01e-0038-5f05-55caeb000000\\nTime:2025-11-14T01:25:51.9804007Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:f6a94be4-b01e-001e-3bbe-550b23000000\\nTime:2025-11-14T23:27:05.4762673Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionsflexpython8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionsflexpython8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -2667,25 +2667,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231CC0483088\"" ], - "x-ms-request-id": [ "1293b064-45cc-49f3-ac18-1a62e4f96d25" ], + "ETag": [ "\"0x8DE23D552FA573A\"" ], + "x-ms-request-id": [ "25fbd8d4-ba59-45bd-bdda-e581a0a8f34c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e4aed57c-a89d-4f95-b252-37670301c330" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/10406c5b-e6e4-4664-abfc-e1f48ba641c3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b9cdcb80-a267-4c03-b58f-a56bbf0e1248" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012552Z:b9cdcb80-a267-4c03-b58f-a56bbf0e1248" ], + "x-ms-correlation-request-id": [ "6326c061-ab18-40a5-b55a-2aeb7fdcdeda" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232706Z:6326c061-ab18-40a5-b55a-2aeb7fdcdeda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F81734D5A32E40AEAAF641F247032EF1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BDB2A50421741DBB5F2C8CCE0590535 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:05Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "446" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionsflexpythonfqti-0000000\",\"name\":\"app-package-functionsflexpythonfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionsflexpython8wks-0000000\",\"name\":\"app-package-functionsflexpython8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -2697,7 +2697,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "d085ce5b-7546-4039-bbf9-b020f9b69507" ], + "x-ms-client-request-id": [ "32c15a03-9664-4ab8-96d7-9d308056afa1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2712,36 +2712,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d4835c29-9652-4939-9f5f-4362a4aeecd7", "88758d16-9a17-4bb2-a349-3ab95b5f2733", "08251899-a978-4a01-bb6d-021d32f3d78f" ], + "x-ms-original-request-ids": [ "724905eb-0686-49ce-b1a2-d4b91956721e", "0b15b70d-642d-4ca3-9a5a-7eeb29bcdb76", "8d2864df-77a5-40a2-bc8d-3b6b006cf326" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f6126b82-5008-491b-9b1d-106655184ff5" ], - "x-ms-correlation-request-id": [ "f6126b82-5008-491b-9b1d-106655184ff5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012553Z:f6126b82-5008-491b-9b1d-106655184ff5" ], + "x-ms-request-id": [ "38046ef8-3033-4a08-940a-bfc852d1c559" ], + "x-ms-correlation-request-id": [ "38046ef8-3033-4a08-940a-bfc852d1c559" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232706Z:38046ef8-3033-4a08-940a-bfc852d1c559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC6CA6A319FE4749858EA52A8294F3E3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF06F54DA7FF46689AC48662C557B973 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "b78e1461-4fef-422d-b3ad-e3cdc3f73660" ], + "x-ms-client-request-id": [ "f47f9b14-f5eb-4762-bfaa-169742183cf1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2756,23 +2756,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "14ba06ed-11e4-47bb-bd87-6d4edf14c83e" ], + "x-ms-request-id": [ "0e1c318e-97f9-4223-9d5b-831a2b5e5a3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3e459cac-d37f-4bf5-9b7d-a825d7ec264a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e9ca1e97-eafa-4e93-b702-ef07d0a4f399" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "44eaf3fc-ddd9-452e-acd7-f64c64a6c2c9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012554Z:44eaf3fc-ddd9-452e-acd7-f64c64a6c2c9" ], + "x-ms-correlation-request-id": [ "b8aff7d8-d647-4901-b3ee-d7393c0c15ea" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232707Z:b8aff7d8-d647-4901-b3ee-d7393c0c15ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FE658C231A644B28360582A50EABA4A Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 60316A0D404F425BA25D0F895C77A107 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SuePBq+K5rXBjCUWYshXoqlKXi45LcdOnYcYMxNfAEJJLyNuqETiKjIIq/7KLZ8kDNOI4O/kAB43+ASthGWPcg==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -2784,7 +2784,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "260" ], - "x-ms-client-request-id": [ "098285fc-74b4-4d07-ab6d-6032554e18d5" ], + "x-ms-client-request-id": [ "3a678302-825d-41f4-82fe-588542662847" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2799,36 +2799,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f2ff087d-8e67-4c87-ba8d-816611fc0bc1", "0b75c99f-9cf7-44a7-bac4-46d15c7e7df5", "bc1fd867-43e4-4035-a8f5-48343e0c35d4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "63dd0c18-b8b7-4d87-8afc-937a98d8cb20" ], - "x-ms-correlation-request-id": [ "63dd0c18-b8b7-4d87-8afc-937a98d8cb20" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012554Z:63dd0c18-b8b7-4d87-8afc-937a98d8cb20" ], + "x-ms-original-request-ids": [ "ba5e82a7-722c-48d7-9ce5-8a48bc8f3c16", "325ff0a5-3065-49d2-85d5-da14864ded0b", "4f34b752-026c-46fb-8a9c-d59efa2771cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "07a8057b-ff65-405b-b027-d300918c89d7" ], + "x-ms-correlation-request-id": [ "07a8057b-ff65-405b-b027-d300918c89d7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232708Z:07a8057b-ff65-405b-b027-d300918c89d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BD8EB6DBECC4395B4E230DA2A92049D Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A298FFB270D2437F9AC69D0EADF901DA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "70139c07-f0f7-4950-b529-d015d45bd83b" ], + "x-ms-client-request-id": [ "8c291607-ff02-4fb0-9af1-666832f02f0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2843,30 +2843,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5ee3343e-68a0-4443-bdfa-a28eb2432794" ], + "x-ms-request-id": [ "bfb7bf05-88ea-446e-8d11-7d55dcbfb430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9824273c-28a2-4a76-9cf7-44e9b96803e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/f378a842-5157-4f41-90b6-00afeab03497" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f4445b0c-69ff-453f-9c8b-b7a5d890d0e2" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T012555Z:f4445b0c-69ff-453f-9c8b-b7a5d890d0e2" ], + "x-ms-correlation-request-id": [ "a645e74e-a3de-46e4-9861-409ef73bed9d" ], + "x-ms-routing-request-id": [ "WESTUS:20251114T232708Z:a645e74e-a3de-46e4-9861-409ef73bed9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCA3D46030064495A4CD08B1A0CAC593 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:25:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3EC2C88493644AAB8759EB5416E1CC15 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SuePBq+K5rXBjCUWYshXoqlKXi45LcdOnYcYMxNfAEJJLyNuqETiKjIIq/7KLZ8kDNOI4O/kAB43+ASthGWPcg==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Flex-Python-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Python-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Python-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Python-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2886,30 +2886,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d8ea0624-01c9-4d89-b14c-21984bedd83d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1a9a7711-bc0c-4402-8722-d9fc674c931f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "db7696d9-4704-4aa8-a718-97d46cd636bd" ], - "x-ms-correlation-request-id": [ "db7696d9-4704-4aa8-a718-97d46cd636bd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012606Z:db7696d9-4704-4aa8-a718-97d46cd636bd" ], + "x-ms-request-id": [ "78a5f244-f6e2-4007-87f1-a6cde1c2a0f0" ], + "x-ms-correlation-request-id": [ "78a5f244-f6e2-4007-87f1-a6cde1c2a0f0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232722Z:78a5f244-f6e2-4007-87f1-a6cde1c2a0f0" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF84A903D70947F499B8D4E5DE9990A4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:25:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:26:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46179E5F7E234DC89427983BF27FD000 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"78033d7f-0000-0200-0000-6916852e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Python-fqti\",\r\n \"name\": \"Functions-Flex-Python-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-fqti\",\r\n \"AppId\": \"c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a897e4a4-c870-4a15-b6df-76a54fac74ca\",\r\n \"ConnectionString\": \"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\r\n \"Name\": \"Functions-Flex-Python-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:25:56.8152138+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-fqti_c8d3eeb1-cc4b-4546-ae45-fd80c21d286a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-fqti-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\": \"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\r\n \"name\": \"Functions-Flex-Python-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-8wks\",\r\n \"AppId\": \"0fd5bb15-8254-462a-b124-f01de57491fa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6646e0da-7c3a-4442-b697-9e3161408467\",\r\n \"ConnectionString\": \"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\",\r\n \"Name\": \"Functions-Flex-Python-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:27:10.9745115+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-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2923,39 +2923,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505A86081CB\"" ], + "ETag": [ "\"1DC55BE3C487140\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "605f0ddb-68a3-42c8-9553-a35cccbd65bb" ], + "x-ms-request-id": [ "7adf8dcc-fca3-4135-af1c-9beb1f3b9b07" ], "X-AspNet-Version": [ "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/67f3bfa4-990b-48ac-8190-7be4b59a0ac1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7f718a9a-4f38-4229-9e65-60df6cebf15f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "0f9cfe3a-ee9a-4469-97a0-2ff6f3d8a80f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012631Z:0f9cfe3a-ee9a-4469-97a0-2ff6f3d8a80f" ], + "x-ms-correlation-request-id": [ "3d0720d5-ae3a-43ee-b629-ee073adc5706" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232746Z:3d0720d5-ae3a-43ee-b629-ee073adc5706" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3DA10EB0DA734D18801DC9C87F9304A7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:26:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:26:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13D5164EA2374AE18EBAD4B8D66221DB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:27:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:27:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9490" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:09.01\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Python-8wks\",\"repositorySiteName\":\"Functions-Flex-Python-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-8wks.azurewebsites.net\",\"functions-flex-python-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:27:24.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Python-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-python-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "d1df4abe-881f-44a7-a499-f4a17d945292" ], + "x-ms-client-request-id": [ "6828d5d8-e1c7-459d-83ba-3d557a6257d1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2969,38 +2969,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505B493FB2B\"" ], + "ETag": [ "\"1DC55BE48A51D80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88c2bf68-0b34-4e8d-8954-b3c60b6f865a" ], + "x-ms-request-id": [ "4b2f34c8-4526-4eef-89cb-d78742f2e6bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a0537d1-ae7d-49a8-a588-70163000d1ef" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012701Z:8a0537d1-ae7d-49a8-a588-70163000d1ef" ], + "x-ms-correlation-request-id": [ "23968c9f-0a85-4409-95d7-413a9d186e9e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232817Z:23968c9f-0a85-4409-95d7-413a9d186e9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7ED06DDEB95A44DE9A33B2E7874098DB Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5691B14F767F4108965150A85D8285D9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Python-8wks\",\"repositorySiteName\":\"Functions-Flex-Python-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-8wks.azurewebsites.net\",\"functions-flex-python-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:27:46.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Python-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-python-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "0f136532-ef04-490d-9489-304564bff212" ], + "x-ms-client-request-id": [ "1745cf64-3624-4981-ad13-9d8aff75a35a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3015,38 +3015,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505B493FB2B\"" ], + "ETag": [ "\"1DC55BE48A51D80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a61cb11-8994-445c-a360-053eb48cedec" ], + "x-ms-request-id": [ "5e5f317e-de94-4b25-a15c-3fbe9dcde381" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4d709c21-4892-40c2-80c7-1b666191a68c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012701Z:4d709c21-4892-40c2-80c7-1b666191a68c" ], + "x-ms-correlation-request-id": [ "3bdff87d-86ff-495d-a394-4b74be48a136" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232817Z:3bdff87d-86ff-495d-a394-4b74be48a136" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14751E184AD140EC8746CF81D2A52D0C Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C668EDB9A0E4E08A452A39832971913 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Python-8wks\",\"repositorySiteName\":\"Functions-Flex-Python-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-8wks.azurewebsites.net\",\"functions-flex-python-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:27:46.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Python-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-python-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "266" ], - "x-ms-client-request-id": [ "954bd6d2-6584-4a48-819f-77532004e2b4" ], + "x-ms-client-request-id": [ "2b97415e-edd6-44ca-9d3f-e6b868ad3d58" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3062,36 +3062,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c18529b9-c8e5-41d5-b358-91538ca67781" ], + "x-ms-request-id": [ "4a466536-59d4-4ec8-9b6d-a9eecdf55f41" ], "X-AspNet-Version": [ "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/eb82d345-a623-4500-be95-9a1ca8ccf389" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4c1e6dfd-2676-4aee-acb7-d456f19d5218" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ef41515b-f49e-4477-909f-d26ff45f9fb1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012702Z:ef41515b-f49e-4477-909f-d26ff45f9fb1" ], + "x-ms-correlation-request-id": [ "b721d2f7-d683-4c94-b06d-260874fc09ee" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232818Z:b721d2f7-d683-4c94-b06d-260874fc09ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA92C78FDBEE40D9926BDE39A05BE57F Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28899B17CFD64E3785015892AA74A5B4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "e6ba4d2a-c2c9-492d-9a2f-eef8e7f1a7bb" ], + "x-ms-client-request-id": [ "bc3c37ab-a50b-491c-95ef-2832986c1aef" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3107,37 +3107,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9abe103d-ce36-4056-896b-b0d8bc5c2935" ], + "x-ms-request-id": [ "516a829e-f7da-4eda-a980-575fed1f5e2b" ], "X-AspNet-Version": [ "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/d35620ac-5005-444a-ba06-27cb5b8c98bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1d3244d8-eef9-4f4f-89b6-d5ba7b6271fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ed9fa742-9f4b-47fd-a562-3503c4752765" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012702Z:ed9fa742-9f4b-47fd-a562-3503c4752765" ], + "x-ms-correlation-request-id": [ "f9f61c55-aaeb-43f1-8d29-90251399469a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232818Z:f9f61c55-aaeb-43f1-8d29-90251399469a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E062A945A45F4633983E6D6D48BC4D66 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7201858179F40CE8CB48571757162C9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web\",\"name\":\"Functions-Flex-Python-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "9c65ab48-a477-4dbb-976f-00955a3ff8e1" ], + "x-ms-client-request-id": [ "5a773a10-58f4-4be6-a84f-acdcef0bade7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3153,36 +3153,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "187901a3-d2f1-4099-b49b-3ef2117dae91" ], + "x-ms-request-id": [ "07c384df-ecbb-4edd-9bc9-af1ca05cc64d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aeb97143-3e1b-4da3-a8af-8850005afdb8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012703Z:aeb97143-3e1b-4da3-a8af-8850005afdb8" ], + "x-ms-correlation-request-id": [ "d77ac07d-108f-435e-a4cf-bf26008b390f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232818Z:d77ac07d-108f-435e-a4cf-bf26008b390f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A672B0227234961B8623E2AB9DE4BA6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09776A051AC448DDBDD0DCD63B93C527 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52642,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52642\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:26:33.04\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "269" ], - "x-ms-client-request-id": [ "0153d294-8b71-4558-83a9-57a2b19fe2d7" ], + "x-ms-client-request-id": [ "858e94d9-cf28-4986-9e08-b81ca485bf09" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3198,36 +3198,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f201e7f6-a368-47bb-ba1d-1d4d1f90a0a5" ], + "x-ms-request-id": [ "32379d84-cdd9-47e6-aae6-d89a24c5a2e5" ], "X-AspNet-Version": [ "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/aa511b70-3162-4ae9-b7e8-5950d7b11cbd" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "080fb464-74c2-40aa-80a1-1cf377bad06b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012703Z:080fb464-74c2-40aa-80a1-1cf377bad06b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2f97305e-221c-494a-aa91-7f93c1136b59" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "6ea9a442-ab7e-4c2a-84b3-cbd3fc044329" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232819Z:6ea9a442-ab7e-4c2a-84b3-cbd3fc044329" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40E32535226C461BA06E096231DAB326 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C53D4F1CD8C44FBE90258E520682A72E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "7d688d5f-617a-4bb2-be10-e8b6829f5ffd" ], + "x-ms-client-request-id": [ "90774e36-8d00-4b03-b76b-de6526bb2457" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3242,38 +3242,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505B493FB2B\"" ], + "ETag": [ "\"1DC55BE48A51D80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ad6f4b1-3e9e-41bb-8102-55816dc11dba" ], + "x-ms-request-id": [ "7fa959cc-2755-4643-a76b-f5c8f0a5f150" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9255975a-285a-4277-8550-0a3f5fe04eef" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012703Z:9255975a-285a-4277-8550-0a3f5fe04eef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "71a39166-1e26-4c88-bde1-3612293f0e90" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232819Z:71a39166-1e26-4c88-bde1-3612293f0e90" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB1A2DA935FA4362B653427F839C9852 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2200110396324BBAA07A32E5EC3DBACE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Python-8wks\",\"repositorySiteName\":\"Functions-Flex-Python-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-8wks.azurewebsites.net\",\"functions-flex-python-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:27:46.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Python-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-python-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "b5b8e984-dc8a-4b85-a28e-e479cb5e5cbc" ], + "x-ms-client-request-id": [ "cfbbc92e-9d5d-4e5a-8294-7a4223a1c2cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3289,36 +3289,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3ded95c-0ad7-4c84-b5a4-85b928ae5f2e" ], + "x-ms-request-id": [ "30b17572-f3ce-4183-bb88-2df4c25f955c" ], "X-AspNet-Version": [ "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/4aac1d20-47d1-4ff9-95e8-6f7e8c4e21bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/869bb07b-48f6-4db1-99b2-a1430598a998" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d892283b-a445-478d-805d-732024b30564" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012704Z:d892283b-a445-478d-805d-732024b30564" ], + "x-ms-correlation-request-id": [ "46e7fc11-fc68-4fc1-882c-c3d297c6520a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232819Z:46e7fc11-fc68-4fc1-882c-c3d297c6520a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B7156AAFF364D3BA02C93AB88CC76FF Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3430E0BC32254AB19CF8F5C2AF607662 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "726637f3-cc88-4e6d-a8a6-a994cc49afc4" ], + "x-ms-client-request-id": [ "e017987d-7949-4d88-a97e-8a020643379d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3334,37 +3334,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbc0734c-cc93-49ff-bda2-a3796c2c11ce" ], + "x-ms-request-id": [ "dd73fe17-3d83-42d5-83ea-553c02555afb" ], "X-AspNet-Version": [ "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/7498dc60-44fa-4a55-a2b4-3a3ebf01c15d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dcb87d70-5ccc-4301-9d06-136c6009700f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012704Z:dcb87d70-5ccc-4301-9d06-136c6009700f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8405d4da-91b9-49dd-bbd4-fc195acf26e1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e518deb7-5e25-4059-bf02-eba160e08b7c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232820Z:e518deb7-5e25-4059-bf02-eba160e08b7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 491513C509094839ABA9430205E5C6CB Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 29086CEA28954940B4D4B0D856D7EF60 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web\",\"name\":\"Functions-Flex-Python-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "273" ], - "x-ms-client-request-id": [ "c97293c3-5f6f-4c81-80dd-c6949073d18a" ], + "x-ms-client-request-id": [ "8aae5c40-9416-47ab-afd5-f3855df0f046" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3379,38 +3379,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505B493FB2B\"" ], + "ETag": [ "\"1DC55BE48A51D80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f47c435f-6017-44ec-a1ca-47383d27a7fd" ], + "x-ms-request-id": [ "803a0718-4cde-4798-9955-fe0eba141496" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "27e8eb19-ebf9-4643-a9b1-851fb232f878" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012705Z:27e8eb19-ebf9-4643-a9b1-851fb232f878" ], + "x-ms-correlation-request-id": [ "1f51b7ac-7e96-45ee-b8d8-3eaf24c1c101" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232820Z:1f51b7ac-7e96-45ee-b8d8-3eaf24c1c101" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B86CE8CCA9674D828047B863267E7629 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C3647A53B394DB6ACA6ABF571B86A53 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Python-fqti\",\"repositorySiteName\":\"Functions-Flex-Python-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-fqti.azurewebsites.net\",\"functions-flex-python-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:26:30.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionsflexpythonfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Python-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-python-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Python-8wks\",\"repositorySiteName\":\"Functions-Flex-Python-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-8wks.azurewebsites.net\",\"functions-flex-python-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:27:46.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-Python-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-python-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "274" ], - "x-ms-client-request-id": [ "84c0912e-a790-4cba-aba6-6d92937c30bf" ], + "x-ms-client-request-id": [ "b2cc18ef-d63c-42f4-9fe3-4e8f839c2390" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3426,36 +3426,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "52b2b104-640b-4068-84aa-d788e12b42cd" ], + "x-ms-request-id": [ "a9eb6581-ab56-4eef-93ed-2b17e813398f" ], "X-AspNet-Version": [ "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/ed8ef8bd-66aa-44ca-a58d-9e4573139f42" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6acca077-c475-415b-8f05-33b2b24931a2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012705Z:6acca077-c475-415b-8f05-33b2b24931a2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8438373b-7b7f-4b82-b2a1-f84d18423a1e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "e41ea204-ba95-4cdf-9ca6-a1f62a97554a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232821Z:e41ea204-ba95-4cdf-9ca6-a1f62a97554a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1A02F001F3D420999F54B261736F016 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22450ADC8D88404596B221D1F1CCEF73 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "7d198968-b7a3-4208-88af-9c02804bfb81" ], + "x-ms-client-request-id": [ "124eedf9-a3ca-4d64-a35f-41979e1142ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3471,37 +3471,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cba8ba66-c575-4aae-b7c4-944172471e3d" ], + "x-ms-request-id": [ "ed30f670-e9ac-4f25-a415-41646223b1fc" ], "X-AspNet-Version": [ "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/26ed3324-4a50-4a86-9b5b-7706f17c1fbf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25afaa00-eea8-4e2e-80d7-7c57aef66154" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012705Z:25afaa00-eea8-4e2e-80d7-7c57aef66154" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6c23c001-c8f2-4c5f-94c5-cc8c0c8070cb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "6ade8f26-6977-4198-9eb4-4eea0a4c0ece" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232822Z:6ade8f26-6977-4198-9eb4-4eea0a4c0ece" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBCD2873B50541198B165F9A3A6F41DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6BD732BA533B4663806C37E3D7494A4C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti/config/web\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/web\",\"name\":\"Functions-Flex-Python-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "f5be04e8-035f-46b1-b22b-5a97c4e764b0" ], + "x-ms-client-request-id": [ "62021891-3fd5-459a-b66a-79e41df0a9ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3517,36 +3517,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4959b6fe-14ea-4bac-83c5-9810f95fe9a5" ], + "x-ms-request-id": [ "0bc9d136-75a2-40f1-b772-f42a0aafab69" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5731a3d1-d283-4825-9bcb-2d7be7845444" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012706Z:5731a3d1-d283-4825-9bcb-2d7be7845444" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e1b9da10-4cea-474e-b17e-0414310435f2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232822Z:e1b9da10-4cea-474e-b17e-0414310435f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA53EEAB011D4F7CAA7EA7FB2B424E59 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D3E153330C2450D89B7F26339E5F233 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52538,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52538\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:25:19.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52642,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52642\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:26:33.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Python-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "52d1ce8d-0aa9-45ed-bc93-a96fa154a68b" ], + "x-ms-client-request-id": [ "a4b9014a-029c-4816-80e8-cef065f044d4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3561,20 +3561,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505B493FB2B\"" ], + "ETag": [ "\"1DC55BE48A51D80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "436abab4-0a1a-4c16-a0b7-27b0b5a38557" ], + "x-ms-request-id": [ "62a9bacb-7f0c-432a-81c9-5814d0c9d24a" ], "X-AspNet-Version": [ "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/c322b572-dff0-48b0-8f13-0fc3883a8568" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ef868b21-698d-4054-9750-294a367236dd" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f4630bcb-4a50-414f-929c-82b4b7ffcc1e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012725Z:f4630bcb-4a50-414f-929c-82b4b7ffcc1e" ], + "x-ms-correlation-request-id": [ "9e9fbdae-9fc2-45a1-b6c6-5fc790a98293" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232839Z:9e9fbdae-9fc2-45a1-b6c6-5fc790a98293" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0ADDC207EC1F4A3293EC57D2467E4893 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B64BADE265B4BF19AC2454B8151C631 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3588,7 +3588,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Java-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Java-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3603,18 +3603,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "677e39c8-e005-42c7-b811-de4727308cf9" ], + "x-ms-request-id": [ "4bca20b5-6d5c-4f03-8d2a-c8c854901292" ], "X-AspNet-Version": [ "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/889c735c-4c2f-4c4c-9213-eb39f8646d24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4754ff13-3928-405e-9a91-78ebb606ae87" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa89136b-610c-4cd5-8e0e-51a171b39981" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012726Z:aa89136b-610c-4cd5-8e0e-51a171b39981" ], + "x-ms-correlation-request-id": [ "4e1cdb67-adfc-4514-9b9e-0107dbf72272" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232840Z:4e1cdb67-adfc-4514-9b9e-0107dbf72272" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B4733F0AAAA4A069FD69D3FD73B746F Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7ED1EC533CBE4ACEA0E7365D97720799 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3625,10 +3625,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3644,38 +3644,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ee8ef36-d3aa-4040-bcb2-fca7f4e6c34b" ], + "x-ms-request-id": [ "ff9db6d3-4129-4f5c-ae95-299f76043729" ], "X-AspNet-Version": [ "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/b0379f62-4a81-47d7-b5c9-f0643e81dd3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/be6e1464-76a7-4e12-85ce-266f89d2da5f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "279e13f2-74b5-4ef9-9663-9cc52add86b6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012731Z:279e13f2-74b5-4ef9-9663-9cc52add86b6" ], + "x-ms-correlation-request-id": [ "4a441b47-84d1-485a-b012-3ee57184a242" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232845Z:4a441b47-84d1-485a-b012-3ee57184a242" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C19800B87F94D95A587DB8230EE8276 Ref B: MWH011020806052 Ref C: 2025-11-14T01:27:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:27:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BCDC0EB09914DAA89403157EC35F406 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:28:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:28:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"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-14T01:27:30.68\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62124,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62124\",\"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-14T23:28:44.9166667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "c7208e77-f6b2-43f8-8e29-b2361580d588" ], + "x-ms-client-request-id": [ "d789f2db-8f4f-451d-9f5c-91693eaeaeb3" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3690,37 +3690,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31fb8793-8f3c-44d3-b426-9b7fa2ac3e16" ], + "x-ms-request-id": [ "29f04280-0906-4620-a54a-fb7dba1eeb52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bed81fa3-d83d-4e17-84d1-05733a54d791" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012801Z:bed81fa3-d83d-4e17-84d1-05733a54d791" ], + "x-ms-correlation-request-id": [ "e3cc2bb1-9aeb-4175-b186-1eb2c745bbee" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232915Z:e3cc2bb1-9aeb-4175-b186-1eb2c745bbee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D24E9FF98C1F493ABEFF32CEE1729017 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61221E068879447881B85EC1FD8C1AB9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62124,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62124\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:28:44.9166667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "c7208e77-f6b2-43f8-8e29-b2361580d588" ], + "x-ms-client-request-id": [ "d789f2db-8f4f-451d-9f5c-91693eaeaeb3" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3735,24 +3735,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ebfd9cff-57c2-4e36-9eec-c9f798a6edda" ], + "x-ms-request-id": [ "b8e3655f-c4f6-40cb-a500-2b9f4f6a4ddd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b84f15e-928a-4fb6-b0eb-8631bc1eb6ac" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012801Z:9b84f15e-928a-4fb6-b0eb-8631bc1eb6ac" ], + "x-ms-correlation-request-id": [ "2f0516c5-ad5d-4c04-98e1-55aa7fb9c4ac" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232916Z:2f0516c5-ad5d-4c04-98e1-55aa7fb9c4ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7532C6FC9B194264A614B89FDAD607D7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:01Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B806F82EE954B058A6BCE2D9AFEBFFC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62124,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62124\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:28:44.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -3764,7 +3764,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "283" ], - "x-ms-client-request-id": [ "6c37feb1-0ff3-4bfb-9bfb-7c2b3ddfbb74" ], + "x-ms-client-request-id": [ "f798642c-1b50-4e51-95a1-178913751021" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3779,36 +3779,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3d8bf146-ea2e-430a-bd18-638b9ff21077", "e0ee735d-7a86-44b6-a08f-a8331696a85d", "13fd6cc0-182b-47a4-b061-bf20ab4eaaa5" ], + "x-ms-original-request-ids": [ "3451a671-74d9-42bc-8739-8f8658195b2c", "62aa6e58-7982-47f4-a9aa-f17aadb401c7", "aa34bca8-4ff5-450a-949c-389c497e9ad9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "737117ce-d0eb-456d-9d47-5247ca9c61fd" ], - "x-ms-correlation-request-id": [ "737117ce-d0eb-456d-9d47-5247ca9c61fd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012802Z:737117ce-d0eb-456d-9d47-5247ca9c61fd" ], + "x-ms-request-id": [ "d4412787-6829-440c-94a7-4f8ea22e85bc" ], + "x-ms-correlation-request-id": [ "d4412787-6829-440c-94a7-4f8ea22e85bc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232916Z:d4412787-6829-440c-94a7-4f8ea22e85bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00B0BE0FAAD24AF7BB1899F5938A4622 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4854B2CC63FD4853AA08F3EC38B68A88 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:16Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsflexjava8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsflexjava8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "49c1ad7f-0c25-4027-8a94-c068cd08c3fe" ], + "x-ms-client-request-id": [ "3c2f069f-12b5-481f-ad9c-ae9f8f355bb8" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3823,31 +3823,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f598a00e-b8d3-4189-a209-2f2ef338c884" ], + "x-ms-request-id": [ "7f69be64-49df-46dc-95b5-87d19b79ac3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/380d8f4e-2c4a-479a-bf5f-e15308d90f0d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1d1ba5f1-0bb9-47e9-9c9b-40662801b253" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e1762434-ff2e-4fc0-ac0a-5e5524936ef2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012803Z:e1762434-ff2e-4fc0-ac0a-5e5524936ef2" ], + "x-ms-correlation-request-id": [ "9bd5378f-7c76-4aec-9e2b-78488270774a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232917Z:9bd5378f-7c76-4aec-9e2b-78488270774a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2082324368EB4B6C800430C7E9461425 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF50BA3B744947699D74EDEDDB623827 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:16Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:5d019dee-001e-0075-1505-550b85000000\\nTime:2025-11-14T01:28:03.2209036Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:3663f3bd-e01e-001c-03be-557700000000\\nTime:2025-11-14T23:29:17.0626200Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsflexjava8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsflexjava8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3862,25 +3862,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231D0E8B02CA\"" ], - "x-ms-request-id": [ "b9f67098-fbeb-4b14-aaee-7e1bcec12f82" ], + "ETag": [ "\"0x8DE23D5A15AFB7B\"" ], + "x-ms-request-id": [ "4fdf884a-a19f-4239-8284-e6ba137ac791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c8280d89-9099-4f4e-acc7-86a1a3c8d4f4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3cdc57ba-d909-44e6-b3b8-d22bf978ab88" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8cf8fcf0-6243-4625-83b8-6c63c3b97ea5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012803Z:8cf8fcf0-6243-4625-83b8-6c63c3b97ea5" ], + "x-ms-correlation-request-id": [ "3a4366b5-69db-483d-8d0d-0babe155d843" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232917Z:3a4366b5-69db-483d-8d0d-0babe155d843" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E5A2EDE8C6C466997D51296943015DD Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7C49152E1E74E8A9B256CC77039A3CD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "440" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsflexjavafqti-0000000\",\"name\":\"app-package-functionsflexjavafqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsflexjava8wks-0000000\",\"name\":\"app-package-functionsflexjava8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -3892,7 +3892,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "286" ], - "x-ms-client-request-id": [ "01591dfb-d4be-4b22-96d3-e94cd7c81c2d" ], + "x-ms-client-request-id": [ "83ec2db4-f75a-4fc3-ba10-f5c6c0863c65" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3907,36 +3907,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "dd343258-1120-4d7f-b3a5-9b9303c43bbf", "3d6343c1-3466-48e3-b508-63b1dc6fa0b1", "8425801e-2241-4956-9438-a24c01b21b17" ], + "x-ms-original-request-ids": [ "5bed211c-6218-4857-a046-7b621805f332", "c6a9afc5-9aa3-4513-8559-5dc26356b002", "3caf56fa-0646-466a-bdc5-b3d066abc170" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "31e319aa-ce6e-4c74-a830-dc48f5c7d73c" ], - "x-ms-correlation-request-id": [ "31e319aa-ce6e-4c74-a830-dc48f5c7d73c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012804Z:31e319aa-ce6e-4c74-a830-dc48f5c7d73c" ], + "x-ms-request-id": [ "656d97ed-6961-4b30-bb48-80f4e24b3065" ], + "x-ms-correlation-request-id": [ "656d97ed-6961-4b30-bb48-80f4e24b3065" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232918Z:656d97ed-6961-4b30-bb48-80f4e24b3065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AD649FC7BDE48E1A781FF9550CEADD7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6444B6509EB448A8A00605CAE908EC56 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "287" ], - "x-ms-client-request-id": [ "c5af2bfb-d057-4b2a-b5f0-ff468f1ab0c3" ], + "x-ms-client-request-id": [ "3be2a7b7-644c-416b-a54a-5df8a7d47393" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3951,23 +3951,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b9f83bd8-25a2-445c-800c-e2347d006ed2" ], + "x-ms-request-id": [ "402cd557-7248-4069-9203-d29a38330ac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/399932c1-8e98-4632-a390-9436c80e5dd7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/745b8d19-dce8-4227-8ae0-d9bbb0a1a40b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a4315166-ee1b-444b-871c-59073165ac5a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012805Z:a4315166-ee1b-444b-871c-59073165ac5a" ], + "x-ms-correlation-request-id": [ "25005253-db0a-4f81-bf85-a7501ceeecc1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232919Z:25005253-db0a-4f81-bf85-a7501ceeecc1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9677C1482A8A4C2BB205D216994EEC68 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9183CAEF6374AE38200C9D9906EDAE3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"WhYHAYzZgwUAbGtuOlnJjj5Y4eq/iI6/xG47VGFIRig1ZreceeaMaGSkpKydjV/C7a4ouuKEwFLw+ASt1+2ScQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -3979,7 +3979,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "d0c1f69c-e3c7-4bf4-a248-7a39c98e36a1" ], + "x-ms-client-request-id": [ "b7302c2e-a6eb-4a78-bc08-86f91e17c2c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3994,36 +3994,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7b9df682-d790-4592-888a-7b2df5a631ef", "740d1783-5749-47da-a7a4-de9eca3de9e7", "ab13eb86-984e-4abe-8d4b-957c70ea6a6e" ], + "x-ms-original-request-ids": [ "10d967e5-2334-435e-b461-a6460e639622", "d01cf2e4-f525-4f2e-9855-bb31361d6ae4", "69cd0fac-aca4-4e52-8ede-a06176f7969f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "f21586d7-1326-4ad6-a5fd-79ed8cf243b8" ], - "x-ms-correlation-request-id": [ "f21586d7-1326-4ad6-a5fd-79ed8cf243b8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012806Z:f21586d7-1326-4ad6-a5fd-79ed8cf243b8" ], + "x-ms-request-id": [ "465d016a-23d0-4d7b-ba55-ecaef9af64e9" ], + "x-ms-correlation-request-id": [ "465d016a-23d0-4d7b-ba55-ecaef9af64e9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232919Z:465d016a-23d0-4d7b-ba55-ecaef9af64e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3816CB834FD044169248B15FE170F9AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E43535EB3F549C9A5B19F716355A37D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "289" ], - "x-ms-client-request-id": [ "4758d9fc-cb19-442d-b807-ed361d9bcfc4" ], + "x-ms-client-request-id": [ "93606cf5-eb62-426b-8ad2-f87cc41b6023" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4038,30 +4038,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3d3c7c64-a353-491f-96a8-d885f8f4ae02" ], + "x-ms-request-id": [ "46e6136c-a00c-4cd2-bd9c-b4f1e2f44138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/48a1ab43-616d-4d32-b9b8-31c7cd5c3156" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/23b5f3cc-1df5-40a5-8a51-2fe3311d0647" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd161410-f69f-479e-8157-2ef464fdc070" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012807Z:bd161410-f69f-479e-8157-2ef464fdc070" ], + "x-ms-correlation-request-id": [ "fff60b92-80d2-414e-b5df-7f17f74a03f5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T232920Z:fff60b92-80d2-414e-b5df-7f17f74a03f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75847F3424C444AF9686E2D78A902785 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 681274DB6D964BA5880584D6AFDDA6BD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"WhYHAYzZgwUAbGtuOlnJjj5Y4eq/iI6/xG47VGFIRig1ZreceeaMaGSkpKydjV/C7a4ouuKEwFLw+ASt1+2ScQ==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Flex-Java-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Java-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Java-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Java-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -4081,30 +4081,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/620bdefe-0da1-4cb8-9628-f8eb57ac278e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8675fec6-6165-489c-b003-71392531c9ff" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "ec74e4a2-89f1-4197-a639-5b945bee4351" ], - "x-ms-correlation-request-id": [ "ec74e4a2-89f1-4197-a639-5b945bee4351" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012819Z:ec74e4a2-89f1-4197-a639-5b945bee4351" ], + "x-ms-request-id": [ "72ee1b65-2a3c-44c6-b23f-9bd134e87903" ], + "x-ms-correlation-request-id": [ "72ee1b65-2a3c-44c6-b23f-9bd134e87903" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232933Z:72ee1b65-2a3c-44c6-b23f-9bd134e87903" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 197006D7E1B14F098B4B16518CA6144B Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 122771110D9B46CB854F16BE97E141DE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1600" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"78030586-0000-0200-0000-691685b30000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Java-fqti\",\r\n \"name\": \"Functions-Flex-Java-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-fqti\",\r\n \"AppId\": \"506250a4-0ecc-4d16-8014-fb7524d4703c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5f545946-1221-4899-8409-2baa332ca728\",\r\n \"ConnectionString\": \"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\",\r\n \"Name\": \"Functions-Flex-Java-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:28:08.7465952+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-fqti_506250a4-0ecc-4d16-8014-fb7524d4703c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-fqti-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\": \"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\r\n \"name\": \"Functions-Flex-Java-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-8wks\",\r\n \"AppId\": \"a21649a5-21a9-4a06-9682-73121bf51140\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\r\n \"ConnectionString\": \"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\",\r\n \"Name\": \"Functions-Flex-Java-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:29:21.9297403+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-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?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://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4118,39 +4118,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5505F9CC034B\"" ], + "ETag": [ "\"1DC55BE89F5300B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "385f8dc9-0159-4cce-bde4-7c10d50533d1" ], + "x-ms-request-id": [ "81267c2d-580a-4b04-bf38-c5bc8131e073" ], "X-AspNet-Version": [ "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/7717e40e-8e0e-4350-9fcc-f5095361222a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8c2c7384-1bcb-4edb-b636-5b4b574418ff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "eb9cec73-a504-40ff-96b6-75f71c3eae91" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012848Z:eb9cec73-a504-40ff-96b6-75f71c3eae91" ], + "x-ms-correlation-request-id": [ "0e69f8c9-3f1c-4746-9934-1037e56a3b69" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T232957Z:0e69f8c9-3f1c-4746-9934-1037e56a3b69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80813871DF954C52BA631C52EC0F8019 Ref B: MWH011020806052 Ref C: 2025-11-14T01:28:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:28:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8997359C8E1E42838F133696A22025C3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:29:33Z" ], + "Date": [ "Fri, 14 Nov 2025 23:29:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9454" ], + "Content-Length": [ "9466" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:25.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Java-8wks\",\"repositorySiteName\":\"Functions-Flex-Java-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-8wks.azurewebsites.net\",\"functions-flex-java-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:29:35.4566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Java-8wks\\\\$Functions-Flex-Java-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-java-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "2b2b1df3-ed7a-4099-be53-c4918351338c" ], + "x-ms-client-request-id": [ "941a1447-674d-47ca-b60e-0ed92a9f9044" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4164,38 +4164,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550606346255\"" ], + "ETag": [ "\"1DC55BE963D83F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36d25d5e-7ef1-4943-9239-84b12102ba7c" ], + "x-ms-request-id": [ "579be77f-2115-400f-8619-c809280f2497" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2c68491-8ebd-48d5-8a83-e0ae5aa1a8ec" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012918Z:b2c68491-8ebd-48d5-8a83-e0ae5aa1a8ec" ], + "x-ms-correlation-request-id": [ "96a313cc-0053-4304-b9de-4a182d623a26" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233027Z:96a313cc-0053-4304-b9de-4a182d623a26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F6BB967D71C4494BB4FFC14E7489708 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 929C7F3E5F744BD6A67D79BDA4959868 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Java-8wks\",\"repositorySiteName\":\"Functions-Flex-Java-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-8wks.azurewebsites.net\",\"functions-flex-java-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:29:56.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Java-8wks\\\\$Functions-Flex-Java-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-java-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "1ba7d520-8442-4712-89b8-6f9a4b26aa2b" ], + "x-ms-client-request-id": [ "345641ca-da47-4392-ab06-e85435f33efd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4210,38 +4210,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550606346255\"" ], + "ETag": [ "\"1DC55BE963D83F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "933e1ce6-25ff-42e2-8ea4-8f5f4ce913a3" ], + "x-ms-request-id": [ "1fa42a72-2158-4560-92fb-76e5a4a633a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80aa1efd-887e-4c88-8123-dcdef47da30a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012918Z:80aa1efd-887e-4c88-8123-dcdef47da30a" ], + "x-ms-correlation-request-id": [ "fe21341a-59cd-40a1-ba42-7e00e1051190" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233027Z:fe21341a-59cd-40a1-ba42-7e00e1051190" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FAB67929E514BFA8391436EC15AFE78 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28E500DBBBE34342BC75BA25D3B3C71E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Java-8wks\",\"repositorySiteName\":\"Functions-Flex-Java-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-8wks.azurewebsites.net\",\"functions-flex-java-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:29:56.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Java-8wks\\\\$Functions-Flex-Java-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-java-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "86766083-ec17-42a8-a286-4245b20585f8" ], + "x-ms-client-request-id": [ "fbe72cb0-022d-4353-94b2-5e1a6f2a5c53" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4257,36 +4257,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4847b85a-c19c-4f92-ad3f-ebadd154cbf9" ], + "x-ms-request-id": [ "64d08097-18d1-49a4-a25d-2b6ae6b0dda5" ], "X-AspNet-Version": [ "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/8ad5054d-ea79-4c85-be35-5cf232162b22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4460e2f3-ddf1-47a4-bfc9-3a114dfac9fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "40f20f34-6499-46d4-9c87-f3d9940ddc7a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012919Z:40f20f34-6499-46d4-9c87-f3d9940ddc7a" ], + "x-ms-correlation-request-id": [ "090b49d7-2afa-4553-9908-52a3259b5fc3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233028Z:090b49d7-2afa-4553-9908-52a3259b5fc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26AD54431E424799ABECE8DC213C2B6F Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AB4F125CB87416FB8DA0AA5D190CD6F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "ad760819-19a1-4657-b408-3679c229fce2" ], + "x-ms-client-request-id": [ "4fbb7b01-557d-455c-b2f4-eb0d811afda9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4302,37 +4302,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10f7e096-ee65-4fbd-9704-42310c65e283" ], + "x-ms-request-id": [ "e050258f-dbf5-4015-8886-0b991177047a" ], "X-AspNet-Version": [ "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/3c9c885b-1360-4350-9062-df9f2b2c5766" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/17ca5efc-5317-4602-acf6-fc23d39ff551" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8abf6670-990b-409f-920d-7ff749bedaea" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012919Z:8abf6670-990b-409f-920d-7ff749bedaea" ], + "x-ms-correlation-request-id": [ "62e83261-6c38-4503-ba8b-fb5015c106b6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233028Z:62e83261-6c38-4503-ba8b-fb5015c106b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 028C961C7F744A3CB4CF068B469CB0DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0614247E10345839B20D9DD5C9AA7BE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web\",\"name\":\"Functions-Flex-Java-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "e00df3e1-f6ea-497e-82e0-246f3b4074f9" ], + "x-ms-client-request-id": [ "78abd2bc-7d35-44ae-bf63-f408421c44cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4348,36 +4348,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78c32024-c9ba-4a26-a896-2670fa3d9c57" ], + "x-ms-request-id": [ "ce152698-3653-4214-90f6-cb14870d7be9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8afc2861-3e0a-4456-b0ee-23c850b9ce46" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012919Z:8afc2861-3e0a-4456-b0ee-23c850b9ce46" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "61891c43-aa46-4052-98e6-723de3399b5a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233028Z:61891c43-aa46-4052-98e6-723de3399b5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 940BABD464174391AAE366A54AB37D6C Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AA3431339D24759AFE974D1C43D79C7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62124,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62124\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:28:44.9166667\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "283da907-072b-459b-9576-41525c598b5a" ], + "x-ms-client-request-id": [ "bd26fbdb-c41e-441c-9be9-99dbb3c541cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4393,36 +4393,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad170753-c884-4db1-b674-85c868747b76" ], + "x-ms-request-id": [ "25e68a96-f29c-418c-87c9-9cca852ed3a7" ], "X-AspNet-Version": [ "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/33bdc9ad-ba08-4f24-87a6-4c17aff3bf4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/755ee733-2a5b-497e-9ac7-aa85ff8c5435" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7dc00107-8e81-49d5-86a8-eeae409eacd5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012920Z:7dc00107-8e81-49d5-86a8-eeae409eacd5" ], + "x-ms-correlation-request-id": [ "96c08a3c-c37f-4148-8a8d-f26676fb3490" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233029Z:96c08a3c-c37f-4148-8a8d-f26676fb3490" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 382773506087492F867B30F6AD21A81F Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 77B1995B112F4586A8DD15C3EAA55C05 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "298" ], - "x-ms-client-request-id": [ "750f470f-1a73-4258-99d5-823dbfda5128" ], + "x-ms-client-request-id": [ "34e00d4d-bcb5-4250-9f63-fd851fed0863" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4437,38 +4437,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550606346255\"" ], + "ETag": [ "\"1DC55BE963D83F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93fe8f5e-6c6d-4205-b342-ab411ecd42a6" ], + "x-ms-request-id": [ "b87542bb-94ff-4d6a-8e13-496b5c48f2c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f7ce4567-492f-437c-bfcc-a5aca7514505" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012921Z:f7ce4567-492f-437c-bfcc-a5aca7514505" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7d1599b5-0633-44d1-8777-af5af3ba9292" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233029Z:7d1599b5-0633-44d1-8777-af5af3ba9292" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 942D3EF1B8024CB2BB8AB99E1E894281 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4567E73E737E4E8F8377F381D3F58300 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Java-8wks\",\"repositorySiteName\":\"Functions-Flex-Java-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-8wks.azurewebsites.net\",\"functions-flex-java-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:29:56.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Java-8wks\\\\$Functions-Flex-Java-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-java-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "6fff651d-ffac-4631-b67d-eccb83fa388e" ], + "x-ms-client-request-id": [ "2af4294f-6fa9-44ce-989d-2506f5f1aa31" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4484,36 +4484,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c3980eb-dbb8-4fcb-9b6a-8fbe48300371" ], + "x-ms-request-id": [ "a0d837c2-ff46-42a3-a2d8-328b0e3dc7b8" ], "X-AspNet-Version": [ "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/c251d2d8-18cf-4090-9f75-2dcf0c609ec5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9102fa83-2b27-4ee8-a9b9-2ff1443698b1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012921Z:9102fa83-2b27-4ee8-a9b9-2ff1443698b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/13c3703f-6dcb-43cd-9687-071db7d48423" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "5063bbc8-2dad-44d0-983f-d77e740c67cd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233030Z:5063bbc8-2dad-44d0-983f-d77e740c67cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC39443BABD24B5EA8BDA4914DF32039 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 614E9AC1AEE249C9A85F5033C093BE49 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "29d75209-36ed-4d53-b95b-f32dabd8d957" ], + "x-ms-client-request-id": [ "88ae948b-83a4-454c-82d5-34c230484e04" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4529,37 +4529,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b858b919-f191-44c2-b95e-61f9173f951d" ], + "x-ms-request-id": [ "659df9e0-19a8-4862-a1f5-5c4470fb29c7" ], "X-AspNet-Version": [ "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/8b3f7afc-d357-43a1-9a4d-2ebfc28ef1f5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "94071a69-ae2b-418d-8c3f-ea81d13b2bc0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012922Z:94071a69-ae2b-418d-8c3f-ea81d13b2bc0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/741012d8-4c2b-4827-9927-ba99447ba0eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fffc3d5c-9cac-4456-a596-7a084bbc4302" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233030Z:fffc3d5c-9cac-4456-a596-7a084bbc4302" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C01D65E797154643BB4F2F0A43DB16CD Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDFB766949DF40B9A34354BBF8D389FF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:30Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web\",\"name\":\"Functions-Flex-Java-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "301" ], - "x-ms-client-request-id": [ "8d83f287-5463-4dbc-825b-3a6130ee83ba" ], + "x-ms-client-request-id": [ "e8e7fcb3-0613-4b62-a8d2-2b75b1465d4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4574,38 +4574,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550606346255\"" ], + "ETag": [ "\"1DC55BE963D83F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1456890d-b33b-4f7f-be77-38725b066670" ], + "x-ms-request-id": [ "8d55d82f-6f58-417f-bdc1-548495061ba1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e8a7fabb-eb14-4511-926d-2b381f09f708" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012922Z:e8a7fabb-eb14-4511-926d-2b381f09f708" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "a08393e8-da90-4a24-ad13-1ca64e521092" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233031Z:a08393e8-da90-4a24-ad13-1ca64e521092" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 776BE8B4B68D420E8FE70FEA3EE11E8D Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48FE41B628C14E6691FB35087F3205A3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:31Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9443" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Java-fqti\",\"repositorySiteName\":\"Functions-Flex-Java-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-fqti.azurewebsites.net\",\"functions-flex-java-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:28:47.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasafqti.blob.core.windows.net/app-package-functionsflexjavafqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Java-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-java-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Java-8wks\",\"repositorySiteName\":\"Functions-Flex-Java-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-8wks.azurewebsites.net\",\"functions-flex-java-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:29:56.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Java-8wks\\\\$Functions-Flex-Java-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-java-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "597c9cc2-3b8e-4c72-8b11-7bfbe0da6ca6" ], + "x-ms-client-request-id": [ "2d1576e7-780c-4be9-bae4-f11bc6fbbf0e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4621,36 +4621,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f6dcbe28-30b2-4adb-a999-8dc279945424" ], + "x-ms-request-id": [ "d067deb7-63a1-46d0-ba22-5aec93b399b2" ], "X-AspNet-Version": [ "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/1c029d24-38a7-432b-ab62-e947995196bb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b8ac49a2-5894-4f21-8e61-5e360a587e99" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012923Z:b8ac49a2-5894-4f21-8e61-5e360a587e99" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/65870385-66f7-4769-92bc-156f53d28412" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "910ea367-8b15-4c84-8ad2-f9c291e075a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233031Z:910ea367-8b15-4c84-8ad2-f9c291e075a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C363C20A73A948DE81E9CB5EB472FD9D Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0714B92BE53B47678FD3A348AF7A9734 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:31Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "303" ], - "x-ms-client-request-id": [ "a76ce128-0c20-4109-94d3-18074d520ccf" ], + "x-ms-client-request-id": [ "9b4f202b-a72f-46de-b138-573c66fcc8a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4666,37 +4666,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "818fb1d5-fba4-4273-9b89-b2528a29a1eb" ], + "x-ms-request-id": [ "ddb5e24d-567d-493e-a4e3-3d3878afb646" ], "X-AspNet-Version": [ "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/1ac0be6f-098b-422d-a2bb-70ba0169ead9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9fa4d6a7-0e7f-4116-b807-f0c4561f59a6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012923Z:9fa4d6a7-0e7f-4116-b807-f0c4561f59a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/da15d2bf-d6c6-40db-a122-24b9b97f1907" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "cf85f6a8-42b6-4717-b4b7-8e30b8bdc8cf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233031Z:cf85f6a8-42b6-4717-b4b7-8e30b8bdc8cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48DF0CAD7AFF474E8EB0CB671890D062 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19A922E65BCE494E979A620503C0F544 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:31Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti/config/web\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/web\",\"name\":\"Functions-Flex-Java-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "304" ], - "x-ms-client-request-id": [ "8d5f6a91-d1d6-4502-b721-21ed27c62928" ], + "x-ms-client-request-id": [ "b541d298-e624-46f4-ad03-f918ef52adde" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4712,36 +4712,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67b75c44-5721-43b4-abc8-9d403c4768a5" ], + "x-ms-request-id": [ "f952a4bf-965e-49f2-839f-d456b4e79c44" ], "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": [ "1a9aa4a7-8f5f-4955-ba7b-9b3d96140504" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012923Z:1a9aa4a7-8f5f-4955-ba7b-9b3d96140504" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2703a39e-0216-4a21-9ec6-46a365864140" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233032Z:2703a39e-0216-4a21-9ec6-46a365864140" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99DDB487FD1B4CE0B407B2A55BBF4DCE Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF84DCDE0A984946BDE8A0E7E638EA91 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:32Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52541,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52541\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:27:30.68\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62124,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62124\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:28:44.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Java-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "305" ], - "x-ms-client-request-id": [ "9af87438-8371-4aa0-b225-0ef313e78012" ], + "x-ms-client-request-id": [ "fca2d13f-7fec-4902-844a-37867d955d29" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4756,20 +4756,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550606346255\"" ], + "ETag": [ "\"1DC55BE963D83F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7447b18f-c35e-42d1-9eea-8e5cd97b57cc" ], + "x-ms-request-id": [ "da33eae4-0fa1-4390-9b35-70d4a4959b78" ], "X-AspNet-Version": [ "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/45183700-6f32-4777-b45b-20c8f9a4ea4b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d875a638-8ee6-4c6a-9618-63be8a0b8c17" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "844c766e-e978-482d-94ba-2204c75efb72" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012943Z:844c766e-e978-482d-94ba-2204c75efb72" ], + "x-ms-correlation-request-id": [ "55394c19-4b1a-4083-ab37-f82663f84596" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233048Z:55394c19-4b1a-4083-ab37-f82663f84596" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9D34BA467DE40FF9C7BE14A2110F383 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12519E29401841169749C70D92D54987 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:32Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4783,7 +4783,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-PowerShell-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -4798,18 +4798,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e2ba006-83aa-4b04-85fb-078592791671" ], + "x-ms-request-id": [ "e9397a1e-2f5d-4cbb-a33a-a811a4557a6c" ], "X-AspNet-Version": [ "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/964a3876-2d89-4c35-b760-6d09df79fc41" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f1ae62f9-c8c1-4956-b8f8-5a70c6aee924" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1cc66e2e-7df0-4a57-b417-43c9a9db0a51" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T012944Z:1cc66e2e-7df0-4a57-b417-43c9a9db0a51" ], + "x-ms-correlation-request-id": [ "08c3817c-0ad8-41d9-b8f5-de8bdaad2827" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233049Z:08c3817c-0ad8-41d9-b8f5-de8bdaad2827" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21D55BA35C964F70AE3B48F7D7762F50 Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FED71C488F544345B0771939649BDF20 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -4820,10 +4820,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -4839,38 +4839,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9385f96a-0457-4253-872f-814837d2676a" ], + "x-ms-request-id": [ "bd25bce8-a411-42ee-b798-ed6b97cf1211" ], "X-AspNet-Version": [ "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/0920d994-8db1-4242-8e4f-9527149cd933" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4bc8a532-4b14-48b2-93d0-d6d9a093b97b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9ccb501b-a761-4e35-932f-cb85e8b4b597" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T012950Z:9ccb501b-a761-4e35-932f-cb85e8b4b597" ], + "x-ms-correlation-request-id": [ "6e1d059a-849f-4642-a58a-c02e7f0af37f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233054Z:6e1d059a-849f-4642-a58a-c02e7f0af37f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48BAC3B94969435EBE227B7C2039A40E Ref B: MWH011020806052 Ref C: 2025-11-14T01:29:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:29:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62A6F37EE2374F5EA81676FC5CFBCC8B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:30:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:30:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"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-14T01:29:50.0433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52643,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52643\",\"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-14T23:30:54.3366667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "309" ], - "x-ms-client-request-id": [ "3880a80e-5514-46aa-8824-0ee2c0c147c3" ], + "x-ms-client-request-id": [ "b485843a-5d5d-4fe7-bd4c-36b1b4a88f02" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4885,37 +4885,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8166bf0-baa7-4972-b3fa-63d9cccc4303" ], + "x-ms-request-id": [ "ec2f3347-0f7c-47cc-a4db-ab577d7c9ab7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f7a79da9-3e8c-4d4c-831f-90c04be25d14" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013021Z:f7a79da9-3e8c-4d4c-831f-90c04be25d14" ], + "x-ms-correlation-request-id": [ "d0937a31-ad3b-426c-af75-faaa36866a0d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233125Z:d0937a31-ad3b-426c-af75-faaa36866a0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B2996820DE842DD8D2BC5747BFC6AB1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DE196010C924E298054F81321CD9075 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52643,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52643\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:30:54.3366667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "310" ], - "x-ms-client-request-id": [ "3880a80e-5514-46aa-8824-0ee2c0c147c3" ], + "x-ms-client-request-id": [ "b485843a-5d5d-4fe7-bd4c-36b1b4a88f02" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4930,24 +4930,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3def2cba-3e80-4e9a-9b80-b627d4849263" ], + "x-ms-request-id": [ "abfb9c04-339b-4753-85e5-8af65f6d9fd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9197f1dc-9819-43a9-b4e4-2b5d869f5195" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013021Z:9197f1dc-9819-43a9-b4e4-2b5d869f5195" ], + "x-ms-correlation-request-id": [ "49c601b5-acdf-4cdf-b892-919281a2b07c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233125Z:49c601b5-acdf-4cdf-b892-919281a2b07c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B78E99B2BF34AFC9E434649A2FB03A4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C785FB39D0654175A2FB1449EE45B83B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52643,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52643\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:30:54.3366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -4959,7 +4959,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "027df46f-9cd0-44bc-9710-5dc335dac463" ], + "x-ms-client-request-id": [ "b2e36aee-ddcc-442c-bbcf-34852866c4da" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4974,36 +4974,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9a043812-46c2-40bb-8832-d4f027a0efb0", "4b3a00b1-97fd-4db4-bd05-f5bb181cd30e", "4a6d347d-64b1-48a6-81c8-2ba323528f48" ], + "x-ms-original-request-ids": [ "df962eed-1335-4e85-bc36-679a85f86cab", "24bb7be4-0777-4b62-beb4-864821ecfa3e", "8bd9056b-7360-4c85-b9ee-744e35999987" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "45c48076-a47c-4d97-9fce-3bd2dbd7ba79" ], - "x-ms-correlation-request-id": [ "45c48076-a47c-4d97-9fce-3bd2dbd7ba79" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013022Z:45c48076-a47c-4d97-9fce-3bd2dbd7ba79" ], + "x-ms-request-id": [ "4d7d6ed1-3781-4957-a83c-f873b19d6e2c" ], + "x-ms-correlation-request-id": [ "4d7d6ed1-3781-4957-a83c-f873b19d6e2c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233126Z:4d7d6ed1-3781-4957-a83c-f873b19d6e2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E23B60024FC741CB984D94D709DA65C9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5B127B1E2924794980E7DB9740B68FE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsflexpowershell8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsflexpowershell8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "1f6c8d3c-127a-4c69-a987-efdad68adc29" ], + "x-ms-client-request-id": [ "a141d12b-45f8-4b32-b588-e8f0e05a0e8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5018,31 +5018,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cb0d67bb-e7d7-49e7-9a51-7ac7e9c8715a" ], + "x-ms-request-id": [ "092b08c9-afad-4f51-86a5-b531557be791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/299ca466-bdc2-45d3-a07e-f1191fb83c62" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/50430183-4339-4d89-b5f4-35de61ea4650" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ae815717-9077-4881-b59c-d3f8fffa8466" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013023Z:ae815717-9077-4881-b59c-d3f8fffa8466" ], + "x-ms-correlation-request-id": [ "b1f39277-7964-4630-8f05-188425100276" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233126Z:b1f39277-7964-4630-8f05-188425100276" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4649FDABA52A44F4912EF0EFD615A03F Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD6BA8A0D2D24004933883FFD0BC772A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:91662b16-e01e-0038-4806-55caeb000000\\nTime:2025-11-14T01:30:23.0280190Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:33bb5ea2-f01e-000e-6cbe-55cd09000000\\nTime:2025-11-14T23:31:26.4959754Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsflexpowershell8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsflexpowershell8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -5057,25 +5057,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231D61F1934E\"" ], - "x-ms-request-id": [ "062fd228-bc6a-4c49-8a00-1c30ec045637" ], + "ETag": [ "\"0x8DE23D5EEB2F7EE\"" ], + "x-ms-request-id": [ "67517fcb-66c5-461c-8259-ec3b864a7918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2e2b99c1-8861-4e7f-aaff-8a0eef8f6fdb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7b77ad28-aeea-4bba-9ae8-53a49e754ff6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8d3f7e8b-4357-4c36-9266-d3ec9e7f97a2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013023Z:8d3f7e8b-4357-4c36-9266-d3ec9e7f97a2" ], + "x-ms-correlation-request-id": [ "923649f8-0a15-4782-9af4-1153676fe8c5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233127Z:923649f8-0a15-4782-9af4-1153676fe8c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FD7573AAD7F42248B79B7AB7CA6369C Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB88129818664FBF876ADA30C8881CF6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsflexpowershellfqti-0000000\",\"name\":\"app-package-functionsflexpowershellfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsflexpowershell8wks-0000000\",\"name\":\"app-package-functionsflexpowershell8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -5087,7 +5087,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "314" ], - "x-ms-client-request-id": [ "d880d140-2740-4193-aaa0-bbd75571c00d" ], + "x-ms-client-request-id": [ "890520a5-9a9d-4e8c-be79-131e92177d21" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5102,36 +5102,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4b76abf0-751f-450f-b75f-d5459c1c53ac", "2a3616fa-efd7-4f3c-8e3c-fef297fcf2e1", "178f9b05-f25c-4442-a43a-8760e714c599" ], + "x-ms-original-request-ids": [ "294b5156-8a5c-4008-b2b6-ca7d344c505f", "306508fd-fbfa-4094-bff7-8b6b4ab6c3e4", "65fe57fd-859b-4243-a680-860ff8c289fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a2b3995c-37e9-40c3-81be-0a8d65fe4e15" ], - "x-ms-correlation-request-id": [ "a2b3995c-37e9-40c3-81be-0a8d65fe4e15" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013024Z:a2b3995c-37e9-40c3-81be-0a8d65fe4e15" ], + "x-ms-request-id": [ "7563ebd8-0f6c-4ecb-b4d6-6d86a6392bdf" ], + "x-ms-correlation-request-id": [ "7563ebd8-0f6c-4ecb-b4d6-6d86a6392bdf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233128Z:7563ebd8-0f6c-4ecb-b4d6-6d86a6392bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA3D71E28F274127AB3BEC407AF560FC Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9FA4948E184749D3BFEC7E64F7FFA2DF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "5d368b09-d7cc-48f3-b43d-3aabda1a7afa" ], + "x-ms-client-request-id": [ "938079d0-d476-4ecc-be43-1b3d5897ec9f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5146,23 +5146,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "77f6cdb5-1e21-4ebc-8bb3-63e827fc57ad" ], + "x-ms-request-id": [ "5109fc4b-be5b-4bd9-bf28-d7e4fba3d221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6e84f5c4-246e-47eb-88ea-279437d855ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d06d5954-50a2-4df6-9db5-582e65bad2e9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3c12ddda-89e6-4048-b1e0-1e86512c23b7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013025Z:3c12ddda-89e6-4048-b1e0-1e86512c23b7" ], + "x-ms-correlation-request-id": [ "31dba43a-39e1-4180-bb58-ddc1a602f26a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233128Z:31dba43a-39e1-4180-bb58-ddc1a602f26a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 598B36D09ED54C179D656ACE81E67A47 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:24Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4D7C50DF49F4DEAB08000D070DB2587 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -5174,7 +5174,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "316" ], - "x-ms-client-request-id": [ "ec510692-7443-483a-b12b-c2ae46658c42" ], + "x-ms-client-request-id": [ "d42c87db-8730-4d16-92b0-66d211b05761" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5189,36 +5189,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e608e429-e134-4be8-b803-05514666d6ad", "7700a4ec-5566-497b-8d03-d8460e8ca15e", "7a91a9dc-9de1-4ad0-b8b8-6ce6958279e4" ], + "x-ms-original-request-ids": [ "1bf04d9d-e555-4c81-96ee-d0b6a2769d69", "1a679a43-b847-4049-962c-3f5b370585f1", "27d8bb3a-c94a-44eb-9bd4-b546756dd90c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "722b12ec-2a2e-4a2f-bff3-e561154f1ebf" ], - "x-ms-correlation-request-id": [ "722b12ec-2a2e-4a2f-bff3-e561154f1ebf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013025Z:722b12ec-2a2e-4a2f-bff3-e561154f1ebf" ], + "x-ms-request-id": [ "81eec952-f7bb-4bd3-ab8a-c6b6a29c16b0" ], + "x-ms-correlation-request-id": [ "81eec952-f7bb-4bd3-ab8a-c6b6a29c16b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233129Z:81eec952-f7bb-4bd3-ab8a-c6b6a29c16b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 757023E2449642E2A0DAA6461935D916 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9BD11C4336F4AD58AD789174F1936DD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "3d87b9fe-e0ca-483e-b075-109a76077d60" ], + "x-ms-client-request-id": [ "618522bd-6047-4e10-8b2f-55c8bbd5af80" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5233,30 +5233,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f323744d-c101-4d50-956a-67bab60dd45b" ], + "x-ms-request-id": [ "700e05a3-7cb1-41b9-86e8-23e97f14e320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cd1961be-1495-4183-9236-2bb944b9ce82" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/07050202-9f75-4a4f-beb8-f7b2f3bcd80f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "70a1de1a-93fa-456d-a0af-7235f11f2d6f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013026Z:70a1de1a-93fa-456d-a0af-7235f11f2d6f" ], + "x-ms-correlation-request-id": [ "b382bbf4-e636-4d7f-87a4-ed4b7f95c71a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233130Z:b382bbf4-e636-4d7f-87a4-ed4b7f95c71a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 448726689D4D4ED6A4610A2749487211 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54599EF85230461FB3C157D2732E9E9F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -5276,30 +5276,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/60a210ca-c3ee-4225-9f66-1128c5d6b2ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6a5834e5-191a-4f4d-9a78-231b8dc53c13" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "79d4ee36-a571-4437-88b4-ecdf499870ba" ], - "x-ms-correlation-request-id": [ "79d4ee36-a571-4437-88b4-ecdf499870ba" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013039Z:79d4ee36-a571-4437-88b4-ecdf499870ba" ], + "x-ms-request-id": [ "def23d85-63f0-4eef-b13b-e98dc7f10041" ], + "x-ms-correlation-request-id": [ "def23d85-63f0-4eef-b13b-e98dc7f10041" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233142Z:def23d85-63f0-4eef-b13b-e98dc7f10041" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FE5C91A9FDE45F4A9F882C15330EDD8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F915877CA18A4D5E9754EF7526371B18 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:30Z" ], + "Date": [ "Fri, 14 Nov 2025 23:31:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"78036d8f-0000-0200-0000-6916863e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-PowerShell-fqti\",\r\n \"name\": \"Functions-Flex-PowerShell-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-fqti\",\r\n \"AppId\": \"f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5e7b4cd9-73cb-403a-af0a-64ff32c02c12\",\r\n \"ConnectionString\": \"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\r\n \"Name\": \"Functions-Flex-PowerShell-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:30:28.5375832+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-fqti_f22e7b45-3b1f-44aa-bf06-d4dd323abd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-fqti-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\": \"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\r\n \"name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-8wks\",\r\n \"AppId\": \"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8aeec65a-58b3-4406-be83-a2af16406d60\",\r\n \"ConnectionString\": \"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\r\n \"Name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:31:32.4922476+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-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5313,39 +5313,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55064A84FDAB\"" ], + "ETag": [ "\"1DC55BED71691C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac0c848f-d372-4ae7-8e59-90daf2ae3535" ], + "x-ms-request-id": [ "f85db847-5a00-4d1a-9ee0-d7ef042ef366" ], "X-AspNet-Version": [ "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/ecd413cf-f597-45bc-8915-3c89605a073c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3e2eedec-ab82-4605-8da6-7f96d1688204" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "292a5a73-8464-4c39-9e59-309f59c3eceb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013103Z:292a5a73-8464-4c39-9e59-309f59c3eceb" ], + "x-ms-correlation-request-id": [ "572fd99d-35b8-4f65-9a66-fecc4a022c9e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233207Z:572fd99d-35b8-4f65-9a66-fecc4a022c9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE8270B390964C7AA583AD2155F70AFE Ref B: MWH011020806052 Ref C: 2025-11-14T01:30:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A529D586453F4D79BFCF90B50D30793E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:31:43Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9562" ], + "Content-Length": [ "9557" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:30:41.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-PowerShell-8wks\",\"repositorySiteName\":\"Functions-Flex-PowerShell-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\",\"functions-flex-powershell-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:31:45.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-PowerShell-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-powershell-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "320" ], - "x-ms-client-request-id": [ "5b671b2e-a57f-43b6-a915-ec9262df61d1" ], + "x-ms-client-request-id": [ "891a1f0c-1541-4e18-90ad-b0a451297908" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5359,38 +5359,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550656B15820\"" ], + "ETag": [ "\"1DC55BEE3F0DF75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4928cd7d-318a-46f5-894e-34719cf42c48" ], + "x-ms-request-id": [ "83720a85-5d76-48c0-99de-82716659a7c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3876212b-056e-41c6-a0cc-60b33c4f81d4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013133Z:3876212b-056e-41c6-a0cc-60b33c4f81d4" ], + "x-ms-correlation-request-id": [ "e6eb0e14-6a54-430a-8745-4003e36e1c94" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233237Z:e6eb0e14-6a54-430a-8745-4003e36e1c94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EED8A7A3BFB4F00A7531CA1476949C5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F69563B7ADA1466C9AE9354BDB57D99B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-PowerShell-8wks\",\"repositorySiteName\":\"Functions-Flex-PowerShell-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\",\"functions-flex-powershell-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:32:07.0633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-PowerShell-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-powershell-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "321" ], - "x-ms-client-request-id": [ "5f68519f-1d4c-4390-a1b7-f7546fadb97d" ], + "x-ms-client-request-id": [ "78be4760-13c5-4bf8-a0c3-7d17cb405c30" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5405,38 +5405,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550656B15820\"" ], + "ETag": [ "\"1DC55BEE3F0DF75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10f25440-cf24-496f-9048-1fe14b05de6a" ], + "x-ms-request-id": [ "8b7e1912-c93f-42b7-850a-c81ad5db627d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a752eda6-f734-419e-88fe-59213ef18320" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013134Z:a752eda6-f734-419e-88fe-59213ef18320" ], + "x-ms-correlation-request-id": [ "c301fc5b-5212-4be2-865e-1a7c3acbc665" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233238Z:c301fc5b-5212-4be2-865e-1a7c3acbc665" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0261831CDDB4F3AA4818D372C733D34 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6E0F244009745FE9779662F97E1F363 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-PowerShell-8wks\",\"repositorySiteName\":\"Functions-Flex-PowerShell-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\",\"functions-flex-powershell-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:32:07.0633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-PowerShell-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-powershell-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "322" ], - "x-ms-client-request-id": [ "8735abaa-3fc1-42fe-a0e8-95a60cdda817" ], + "x-ms-client-request-id": [ "160a1c16-c57b-4df3-bb69-d55c280395fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5452,36 +5452,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4c5af65-3bb0-443e-bea2-77ec9dbb4865" ], + "x-ms-request-id": [ "87162c80-dc79-43c3-b061-c99b028d3353" ], "X-AspNet-Version": [ "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/ea4764c2-0201-48c9-8a48-a941c18e3aee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/06cf0cc1-7a00-4c34-aef9-159529608ff8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "80b46bb2-59c4-4181-8a55-f00a3b01589c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013134Z:80b46bb2-59c4-4181-8a55-f00a3b01589c" ], + "x-ms-correlation-request-id": [ "1457e301-55da-40e8-b01c-0e63677fee05" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233238Z:1457e301-55da-40e8-b01c-0e63677fee05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D96D1A996E447A3B78267E50B48A698 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA32A57DD7584D8AAB2DBF55645045AB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "92ca14db-72ec-4dc4-bd75-ba9b3e3f66db" ], + "x-ms-client-request-id": [ "8c2d72d0-81e5-4b52-8de1-bb9e257835b0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5497,37 +5497,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "892742aa-44bd-4e7a-9e7f-909bb418ef3d" ], + "x-ms-request-id": [ "718596b0-c04b-4658-b287-aac1a9129f31" ], "X-AspNet-Version": [ "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/f62d72ee-09f3-4053-97c5-1fb599100c0d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e6f5dbd4-c920-46c6-8379-d62950e86c44" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a9daeb2e-c8dd-419a-882d-8771a5c65f05" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013134Z:a9daeb2e-c8dd-419a-882d-8771a5c65f05" ], + "x-ms-correlation-request-id": [ "3e5c7996-7712-464e-a54c-a2e982743f64" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233239Z:3e5c7996-7712-464e-a54c-a2e982743f64" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04E0F4F07FDA487DBC0105CFBC71D6F0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF9E8D3084FC430DB96FE1C22D6EF1E0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "0c21aa43-d3e1-4948-8491-c0bf3ae0f80d" ], + "x-ms-client-request-id": [ "9b930653-b21e-484c-8394-657cbec4ced1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5543,36 +5543,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32f4d6dc-0664-486a-b0cc-238b6189b6ad" ], + "x-ms-request-id": [ "1c135674-3bd3-47f6-a69c-b5fb4abc04f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f24416cc-399b-4606-86ae-5abe71ad4839" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013135Z:f24416cc-399b-4606-86ae-5abe71ad4839" ], + "x-ms-correlation-request-id": [ "9690f5d4-883a-4725-b778-35bca724dc27" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233239Z:9690f5d4-883a-4725-b778-35bca724dc27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EAFE0534DD9F4103AA2C9C7B76B6F729 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03316E67AD1E44A79182A78D4A9C880E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52643,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52643\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:30:54.3366667\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "44f7386f-88f0-4173-9486-5a7d734019ad" ], + "x-ms-client-request-id": [ "c30ac99b-784e-4d20-9f9f-0b0d52e4eaaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5588,36 +5588,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2da03ac5-9aec-4a8a-8993-6c39a9294fc8" ], + "x-ms-request-id": [ "6ed03e8a-828c-40aa-9056-09cb53a4864a" ], "X-AspNet-Version": [ "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/2785931d-187d-4ef5-9ce4-2d2d9e6dec32" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9e4e00e3-f5d1-4a4e-93b4-f7abbf4e0f18" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "aa349a3f-d895-4bf9-9f7c-ed3049d7899b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013135Z:aa349a3f-d895-4bf9-9f7c-ed3049d7899b" ], + "x-ms-correlation-request-id": [ "0b967853-5d56-4b7e-a4be-444df3cd2250" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233240Z:0b967853-5d56-4b7e-a4be-444df3cd2250" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF9A9B17F2024D37B49E6FBA766DF1EF Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA74A4E72DBA4BD6A9507CC1F2943B80 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "58df56a5-41c7-459e-9234-ad1b9d595f97" ], + "x-ms-client-request-id": [ "9c0a8e83-81c3-45ea-af93-51669a14542c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5632,38 +5632,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550656B15820\"" ], + "ETag": [ "\"1DC55BEE3F0DF75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59a63504-731b-44cf-a8a2-d1672c3ebb4c" ], + "x-ms-request-id": [ "f4cb790a-e46b-43c8-9067-88bb68c6284b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0354bd9-7fe4-461c-8c7f-79bdd3c8b1d5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013137Z:c0354bd9-7fe4-461c-8c7f-79bdd3c8b1d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "acf8d721-c3f7-49d1-ad2c-f0cec4459053" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233240Z:acf8d721-c3f7-49d1-ad2c-f0cec4459053" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81C8E0E0E27F47B9A90CF02E89BB490A Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4709681383294D95BE761879FFD4ACF7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-PowerShell-8wks\",\"repositorySiteName\":\"Functions-Flex-PowerShell-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\",\"functions-flex-powershell-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:32:07.0633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-PowerShell-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-powershell-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "c4b032cc-fc51-4fdf-b628-bed12679f9cb" ], + "x-ms-client-request-id": [ "0f6a6ef6-0234-48bf-a077-82c592cd6b18" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5679,36 +5679,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd2edf4a-ca5c-4a4a-a546-39168309c73f" ], + "x-ms-request-id": [ "5acf88f1-45c7-48a9-b1cd-0a525b3d9bf8" ], "X-AspNet-Version": [ "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/f05f5052-0354-4cba-a7bd-147c08955988" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d01e10fb-1a4f-4846-94ee-1d61adfefce8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4ad2fb12-06c8-43c7-8c98-21a60040338a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013137Z:4ad2fb12-06c8-43c7-8c98-21a60040338a" ], + "x-ms-correlation-request-id": [ "bf008bfe-a331-46a3-ba78-e133b89e1af0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233240Z:bf008bfe-a331-46a3-ba78-e133b89e1af0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5501BE0306E4D648D4615E11DF48DAF Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:37Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D04E7636B254570A4C6792A553B2C83 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "13922e99-271c-4141-86e2-5becf6a8c6d5" ], + "x-ms-client-request-id": [ "d9580c74-6f4f-4a8e-9907-5e06de131625" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5724,37 +5724,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aee29a1a-bc75-42b9-898e-a24f4324f589" ], + "x-ms-request-id": [ "b503a1a0-da0f-47b9-a220-4dbc279e730c" ], "X-AspNet-Version": [ "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/a9ac2f2d-46dc-41f6-86b0-a6f9544b1c3d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/925c4113-d387-4298-979c-78f448525ea8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af3693b1-e21d-4f67-99fe-4e032a4cdbca" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013137Z:af3693b1-e21d-4f67-99fe-4e032a4cdbca" ], + "x-ms-correlation-request-id": [ "5033fec4-d065-4037-9a93-7a89b57bb9d2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233241Z:5033fec4-d065-4037-9a93-7a89b57bb9d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A659A98C5F3448C8D01549EB4D733E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:37Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D2BB606E1A14F81A2A84D89B83E344C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "329" ], - "x-ms-client-request-id": [ "966bf4c9-bdf0-4452-8a62-c404826d34f2" ], + "x-ms-client-request-id": [ "e431b330-54ac-45cf-92c9-5d2045220e68" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5769,38 +5769,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550656B15820\"" ], + "ETag": [ "\"1DC55BEE3F0DF75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7213def-c531-4ca2-a367-17829922cb3f" ], + "x-ms-request-id": [ "1b9aab30-f1e5-40e3-8ce0-66e1be929f15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7d64eb45-1f75-462b-aeec-b517172b044d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013138Z:7d64eb45-1f75-462b-aeec-b517172b044d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "620e331d-7633-4e18-9bb6-e77ca784db83" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233241Z:620e331d-7633-4e18-9bb6-e77ca784db83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75B3E5C19BCD4E5785C86FEE13DC9DFF Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED73647F893845B5BFB06963EFE93C2A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-PowerShell-fqti\",\"repositorySiteName\":\"Functions-Flex-PowerShell-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-fqti.azurewebsites.net\",\"functions-flex-powershell-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:31:02.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\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsflexpowershellfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-PowerShell-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-powershell-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-PowerShell-8wks\",\"repositorySiteName\":\"Functions-Flex-PowerShell-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-8wks.azurewebsites.net\",\"functions-flex-powershell-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:32:07.0633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks\",\"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-8wks\\\\$Functions-Flex-PowerShell-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-flex-powershell-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "23229ed7-b988-439a-aebe-bec3e487a416" ], + "x-ms-client-request-id": [ "4d012ebd-3895-4556-ae71-7c3d72b1c535" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5816,36 +5816,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d730cda-6299-4451-b068-0c385398b4b3" ], + "x-ms-request-id": [ "7ac49f2e-1d44-4c75-b2b0-d31112eef41f" ], "X-AspNet-Version": [ "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/c7cdb41a-8476-4cd7-bc40-3582dfa277c5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c7a4cecd-26a6-4474-ba09-17e2dd636876" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9c6678d9-ac19-4b5c-ab7f-eea3b5ffe26b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013138Z:9c6678d9-ac19-4b5c-ab7f-eea3b5ffe26b" ], + "x-ms-correlation-request-id": [ "b9ba299a-2198-4624-9371-3b09c850aee6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233242Z:b9ba299a-2198-4624-9371-3b09c850aee6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB567A90469F46BC9740C0B197A5C7A6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AB04FA77B7C4BF3A13A24578F1C097D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "331" ], - "x-ms-client-request-id": [ "d31f3dd0-878c-4890-b30b-15b0ace6ddb1" ], + "x-ms-client-request-id": [ "738a3e63-eabb-492a-a105-0100c376f164" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5861,37 +5861,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1db2efa-983b-46a2-8e9a-b6e744fdf253" ], + "x-ms-request-id": [ "0dcbdd71-7b34-46fe-8c29-ff42e5ca917d" ], "X-AspNet-Version": [ "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/8bc95640-e9dc-4f14-8c27-77a8623a3080" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f5828aaa-50d2-4fb7-a853-1bbabe17f821" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1024298d-d4a6-4f51-b87e-ddc5d0b9eed9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013138Z:1024298d-d4a6-4f51-b87e-ddc5d0b9eed9" ], + "x-ms-correlation-request-id": [ "58ca96dc-0e95-4d7e-9b3e-b8354e0d8213" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233243Z:58ca96dc-0e95-4d7e-9b3e-b8354e0d8213" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81C02A215E4640B4BCB9CC51B2D78B1B Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49D930C47CFB44B888685D95B9A8322E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti/config/web\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/web\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "1267a1fb-2c3c-4180-ad23-8c971a7e640c" ], + "x-ms-client-request-id": [ "579656cf-f23e-4c7f-9592-60a265158e1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5907,36 +5907,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0333ecd-18a6-46e6-818f-37e79e1ec5c7" ], + "x-ms-request-id": [ "7e7ea45e-9eb4-410c-bbfe-bcd201fbfe10" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e06a5317-bced-400a-ad8f-ead637a17a3d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013139Z:e06a5317-bced-400a-ad8f-ead637a17a3d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "21b343f9-7077-441f-8983-6b9295a979cc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233243Z:21b343f9-7077-441f-8983-6b9295a979cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A69B338E1F0463A8DA1CCF78A66DAE2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC2E9C34927A4CCC8397C6523CD47301 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:43Z" ], + "Date": [ "Fri, 14 Nov 2025 23:32:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52542,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52542\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:29:50.0433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52643,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52643\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:30:54.3366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "333" ], - "x-ms-client-request-id": [ "d53f0cb6-59f6-4c89-81e1-88778a5d60c1" ], + "x-ms-client-request-id": [ "0ddc7ab2-9a59-422f-a6c9-863be24b8cbf" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5951,20 +5951,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550656B15820\"" ], + "ETag": [ "\"1DC55BEE3F0DF75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e8d0a2c-2681-4f85-9dc6-bdfc9d1cecc8" ], + "x-ms-request-id": [ "2e224b69-f8bd-4a1f-b6b8-50808b0c75c1" ], "X-AspNet-Version": [ "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/3002d768-d137-4c9f-ae74-dfa11e01d7be" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/17e28854-ba26-4b6e-a0d9-35051eea8e9b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8cebc7ef-d2b0-48cf-9478-a82a00da032e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013156Z:8cebc7ef-d2b0-48cf-9478-a82a00da032e" ], + "x-ms-correlation-request-id": [ "fdaf1b8b-9866-4f7d-b681-8833b9ae7dd2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233300Z:fdaf1b8b-9866-4f7d-b681-8833b9ae7dd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7DF5C579CB84BD8A930368DCCD1AB4F Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5154999C6D74B45A6E6CD73948C8C4A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:32:44Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5978,7 +5978,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Custom-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Custom-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5993,18 +5993,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f4983a5-da00-4b6d-91a6-081645b283fa" ], + "x-ms-request-id": [ "5448eaac-607c-4d31-b18e-206c6ee3ff19" ], "X-AspNet-Version": [ "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/52c2ddbe-e980-441c-8a2e-eadb05d32ad4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c762849a-bbb9-492e-985d-b0c8936c2b88" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "82d3f5f9-7fa6-4d39-8b0e-bf1692d81079" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013157Z:82d3f5f9-7fa6-4d39-8b0e-bf1692d81079" ], + "x-ms-correlation-request-id": [ "ed4085f1-0b9b-4541-8b0b-d1e5c4224e14" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233301Z:ed4085f1-0b9b-4541-8b0b-d1e5c4224e14" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FC24A9E4A424E4EAD9BEAAA8AB39F8E Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:31:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4FD01B07F0B447D8B1A15FD30876CA0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6015,10 +6015,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -6034,38 +6034,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cba58c1f-6920-4b6d-866d-989f963611b0" ], + "x-ms-request-id": [ "71747bef-bfdd-494b-b3f5-92a6eb6634c3" ], "X-AspNet-Version": [ "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/17e6341a-15ff-49b0-bc4e-8dc3db5bcf58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0a973735-dcf1-4365-8450-e18d28af3add" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "869c43a3-2804-4024-b267-27e64f92a633" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013202Z:869c43a3-2804-4024-b267-27e64f92a633" ], + "x-ms-correlation-request-id": [ "12f6225b-9691-4b8a-bd97-1600909e12bd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233307Z:12f6225b-9691-4b8a-bd97-1600909e12bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0BCE5214C644A11A66985660ADE039C Ref B: MWH011020806052 Ref C: 2025-11-14T01:31:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EA323D9DB234DABBD617F1E1BB89489 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"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-14T01:32:02.0033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62125,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62125\",\"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-14T23:33:07.21\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "745c8fb4-546b-4e2a-b58c-1812685e3264" ], + "x-ms-client-request-id": [ "731eba9e-2a3b-48ee-8eb8-ffb2114a4595" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6080,37 +6080,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "995d2d78-63fd-435c-8d8a-3dad68aadf8f" ], + "x-ms-request-id": [ "aa371464-2531-406e-8870-93474d2175b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "060add06-bd62-4f29-88ea-89107a5bf8d4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013232Z:060add06-bd62-4f29-88ea-89107a5bf8d4" ], + "x-ms-correlation-request-id": [ "b4694ebb-300d-415b-a981-5a71d47bae0f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233337Z:b4694ebb-300d-415b-a981-5a71d47bae0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01CCC7BA167E49BB8D8F40A00878DF15 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98EE5E2B69D34ECDAB99994F938E77F7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62125,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62125\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:33:07.21\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "745c8fb4-546b-4e2a-b58c-1812685e3264" ], + "x-ms-client-request-id": [ "731eba9e-2a3b-48ee-8eb8-ffb2114a4595" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6125,24 +6125,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "377e9e1f-9cd7-4656-968b-7d7d321f7d71" ], + "x-ms-request-id": [ "e3044590-7c7f-4b6f-bd6d-a067bfd4c924" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "33460bb7-fa43-4cb6-a687-0d20ed4c516a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013233Z:33460bb7-fa43-4cb6-a687-0d20ed4c516a" ], + "x-ms-correlation-request-id": [ "c9035dda-c479-4a48-a852-ec5a889d5170" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233338Z:c9035dda-c479-4a48-a852-ec5a889d5170" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0210A466328C44B4BA884440C4B1D743 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 873F20CB29524BE996A3CCC4D73ACE24 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62125,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62125\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:33:07.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -6154,7 +6154,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "e6ef485b-1a95-4152-b3ab-68fcb515514f" ], + "x-ms-client-request-id": [ "a4022b37-81e4-43c0-96a4-0687308cd5f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6169,36 +6169,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0c2a7cc9-7456-402e-bcd9-a1326450b225", "550237ba-55dd-4289-935a-585b938ae3e3", "fca8b49b-0b9e-44ba-a459-c3edac7d7162" ], + "x-ms-original-request-ids": [ "c1759de9-7776-4c59-a9c6-793d2166433e", "5cf51a46-f7e0-44d5-815d-b7bc23a0f981", "8d9546ae-697b-41e9-98fa-4d60d89f98d6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3858192a-0f37-44b2-8ac6-85b64710da4b" ], - "x-ms-correlation-request-id": [ "3858192a-0f37-44b2-8ac6-85b64710da4b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013234Z:3858192a-0f37-44b2-8ac6-85b64710da4b" ], + "x-ms-request-id": [ "338bf51f-7716-44ef-b4e1-1364843a97e3" ], + "x-ms-correlation-request-id": [ "338bf51f-7716-44ef-b4e1-1364843a97e3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233339Z:338bf51f-7716-44ef-b4e1-1364843a97e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88BC3922785440B78F7F0EA153EF49F0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1109AD39B06442D79A08BE3128085A5F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/blobServices/default/containers/app-package-functionsflexcustom8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/blobServices/default/containers/app-package-functionsflexcustom8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "5beb3dea-9b28-497c-9a72-3376adbd70d4" ], + "x-ms-client-request-id": [ "94c33a3f-9bc7-48b8-8f80-07ad4668a500" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6213,31 +6213,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "294908e9-f602-45da-be4d-e4d928f70847" ], + "x-ms-request-id": [ "f27371a3-6209-4329-94b8-17fbbc8a2f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/49b2deac-f363-4bc6-a486-f539fdea20df" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a4a02657-3638-44ca-a193-b5e699187175" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7b2c4367-124c-414e-bfb4-044ccfde4e22" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013234Z:7b2c4367-124c-414e-bfb4-044ccfde4e22" ], + "x-ms-correlation-request-id": [ "11b0bdd2-7f19-4c76-b23d-b21b1408e859" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233339Z:11b0bdd2-7f19-4c76-b23d-b21b1408e859" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0B9C7528BC249FC80F317DAF8B5092B Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FFDCD10908B42548BD01D0F61E5E5E8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:8b39dec2-801e-0025-6d06-558c1c000000\\nTime:2025-11-14T01:32:34.4904403Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:e931e006-401e-001c-30bf-55ab61000000\\nTime:2025-11-14T23:33:39.7721937Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/blobServices/default/containers/app-package-functionsflexcustom8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/blobServices/default/containers/app-package-functionsflexcustom8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -6252,25 +6252,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231DB040F333\"" ], - "x-ms-request-id": [ "52811d52-7328-4754-ba8b-4570b9e616e0" ], + "ETag": [ "\"0x8DE23D63E03BF91\"" ], + "x-ms-request-id": [ "df5a7bf0-19b5-484e-a9ed-b2c2203b99a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a5265ca5-80eb-45e0-8e8a-ac043621f921" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d77439df-8595-4825-ba1d-2af53e0e5db0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "7b7fcf6b-2761-44a6-999b-512d555eebe6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013235Z:7b7fcf6b-2761-44a6-999b-512d555eebe6" ], + "x-ms-correlation-request-id": [ "bb252203-5460-43dd-918b-46de8798f3d9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233340Z:bb252203-5460-43dd-918b-46de8798f3d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E397CA2655C74522BFCA10B9C6ADC43A Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 051E20A94A7F449ABF987AA6B5741D9A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "446" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/blobServices/default/containers/app-package-functionsflexcustomfqti-0000000\",\"name\":\"app-package-functionsflexcustomfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/blobServices/default/containers/app-package-functionsflexcustom8wks-0000000\",\"name\":\"app-package-functionsflexcustom8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -6282,7 +6282,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "b8fa2f10-5c63-4318-87e1-07720b7ba2e0" ], + "x-ms-client-request-id": [ "30fce91d-1a6e-4b4e-a3cf-662a06949144" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6297,36 +6297,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "577bc1d8-5c1f-4b35-91e1-80aa130556b1", "afdab66e-ae82-4dc4-a4e5-8a1ced11d248", "098266ab-3c3d-4ddf-92a7-bb8f460ebd62" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "7e0b5a51-8eb3-41f0-a59f-938518100e4a" ], - "x-ms-correlation-request-id": [ "7e0b5a51-8eb3-41f0-a59f-938518100e4a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013235Z:7e0b5a51-8eb3-41f0-a59f-938518100e4a" ], + "x-ms-original-request-ids": [ "ac52ed60-9330-46ee-bb68-669c9e11dcaf", "baae0b87-c49a-452e-9a87-a946be0491eb", "f6296227-da15-453e-8fda-d651c4a9fec9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "8b622bdc-04b9-4224-9570-0f81c679064c" ], + "x-ms-correlation-request-id": [ "8b622bdc-04b9-4224-9570-0f81c679064c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233341Z:8b622bdc-04b9-4224-9570-0f81c679064c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD6C4C2554C2476FA42BD638E7319644 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E72464B075D4EEDB18215EB9DE10002 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "343" ], - "x-ms-client-request-id": [ "67d0f225-3860-4a31-834e-afbe43c80890" ], + "x-ms-client-request-id": [ "35dd1418-6801-4bda-a895-7ca572a8cc2d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6341,23 +6341,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4a9b52e6-8361-4546-8b20-7b9b5561d876" ], + "x-ms-request-id": [ "0ec20c3d-3588-4a8c-8966-ff341441500b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f4e0a9f9-4d18-412b-b5ee-fc61e1399003" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cf836d12-bf3c-4d3a-93fc-6bb753865e85" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "72091d43-d33e-4eb6-b880-2359167d9e62" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013236Z:72091d43-d33e-4eb6-b880-2359167d9e62" ], + "x-ms-correlation-request-id": [ "39f995ff-6739-4712-a284-5b92f6ed2ba2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233342Z:39f995ff-6739-4712-a284-5b92f6ed2ba2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE49EE75DD964BD0B41190C5416ED597 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DCB31BA36304BA68EAD125A2B8739DA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"o11yY6odr4yw28kn8yWUD4Nq6Cad6xrdgiNL86RFHySwe48WN8FpbjEYHuniOHWoMFZaMnOE2tMC+AStd2KeHg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"+SVx/ZyOoHemhEESPXFblgFA2UjQieTMEyqR/hOb77ofIoQ5j2SNvVKgFbMBh/22EVMRa/dutGlR+AStRo4ncQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -6369,7 +6369,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "344" ], - "x-ms-client-request-id": [ "ecfcb33f-10f7-4d24-a20d-db24edef4c09" ], + "x-ms-client-request-id": [ "09275f37-c20d-446b-9904-b605814d5080" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6384,36 +6384,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9e742c4f-18b4-44b1-be38-c4ec813d44d4", "f7bfc610-62db-47ff-9002-77a35e8c2141", "47657bad-4b1a-4f93-9816-da690dff7cec" ], + "x-ms-original-request-ids": [ "0da56ad0-4dc5-4120-ba53-e957bdd47a53", "6397cbe0-e846-46f2-989d-d6775404792b", "172738f5-e531-4e7a-9974-aa2aa1a0580a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "cc4f0dbc-ee4e-4a4f-8120-d64dc7ff7ec0" ], - "x-ms-correlation-request-id": [ "cc4f0dbc-ee4e-4a4f-8120-d64dc7ff7ec0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013237Z:cc4f0dbc-ee4e-4a4f-8120-d64dc7ff7ec0" ], + "x-ms-request-id": [ "1b1805e0-fe7c-40cc-a00f-c0c40914433d" ], + "x-ms-correlation-request-id": [ "1b1805e0-fe7c-40cc-a00f-c0c40914433d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233343Z:1b1805e0-fe7c-40cc-a00f-c0c40914433d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDF8ADE6AAB1470184AF83C8334DE1B8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1835BA038DA4F47A15AED56235A35B5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "345" ], - "x-ms-client-request-id": [ "112824f3-3629-4227-be5d-8cdf7b3ebad0" ], + "x-ms-client-request-id": [ "01a62878-71f5-479d-addd-0155f9424ad1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6428,30 +6428,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "64297064-2e3b-4a3d-a951-46102df89b5c" ], + "x-ms-request-id": [ "9ff499dc-1401-4338-aa47-03956212ae23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f4461260-57ad-4274-b723-1985f3bd9b07" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/357b38e4-4599-4990-bedf-cb307f58c33b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7e78da71-fae6-4649-aa53-0c36bde3be38" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013237Z:7e78da71-fae6-4649-aa53-0c36bde3be38" ], + "x-ms-correlation-request-id": [ "578df673-686d-429c-82b6-c0f1085675f5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233343Z:578df673-686d-429c-82b6-c0f1085675f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBA3552FE26342B3B3CD28FDD632711F Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:37Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F72157D7238A4ED0BEB204B1E03C4767 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:43Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"o11yY6odr4yw28kn8yWUD4Nq6Cad6xrdgiNL86RFHySwe48WN8FpbjEYHuniOHWoMFZaMnOE2tMC+AStd2KeHg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"+SVx/ZyOoHemhEESPXFblgFA2UjQieTMEyqR/hOb77ofIoQ5j2SNvVKgFbMBh/22EVMRa/dutGlR+AStRo4ncQ==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Flex-Custom-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Custom-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Flex-Custom-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Flex-Custom-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -6471,30 +6471,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bf7159ba-ebde-4221-a9a5-a0820bdc9e0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/dac27fb2-f36a-4af2-a6d5-94268deefd61" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "322ea298-0923-4083-a496-48e548f2b0d9" ], - "x-ms-correlation-request-id": [ "322ea298-0923-4083-a496-48e548f2b0d9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013249Z:322ea298-0923-4083-a496-48e548f2b0d9" ], + "x-ms-request-id": [ "bfeb3579-8660-43e6-b977-e77a4e731611" ], + "x-ms-correlation-request-id": [ "bfeb3579-8660-43e6-b977-e77a4e731611" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233358Z:bfeb3579-8660-43e6-b977-e77a4e731611" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD76D125ED7047BB974D67949F25D816 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:37Z" ], - "Date": [ "Fri, 14 Nov 2025 01:32:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9A4B3CDEC8D4EA08F4CDED7E61C1C79 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:43Z" ], + "Date": [ "Fri, 14 Nov 2025 23:33:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1611" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"78035797-0000-0200-0000-691686c10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Custom-fqti\",\r\n \"name\": \"Functions-Flex-Custom-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-fqti\",\r\n \"AppId\": \"14dddbd1-fcb1-48dc-995c-951171fe2050\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"143ef9ce-b044-489b-a861-98f08c756b79\",\r\n \"ConnectionString\": \"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\",\r\n \"Name\": \"Functions-Flex-Custom-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:32:39.371848+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-fqti_14dddbd1-fcb1-48dc-995c-951171fe2050_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-fqti-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\": \"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\r\n \"name\": \"Functions-Flex-Custom-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-8wks\",\r\n \"AppId\": \"67f62be7-d4fc-49c8-828e-07308a6f924e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"246f07f9-7f47-4fe4-b736-28824b450760\",\r\n \"ConnectionString\": \"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\",\r\n \"Name\": \"Functions-Flex-Custom-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:33:45.854673+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-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6508,39 +6508,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506985E7ECB\"" ], + "ETag": [ "\"1DC55BF28C7C1CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9aeddcd-69f2-4dba-94ab-d1bbb82dd7ae" ], + "x-ms-request-id": [ "d405fa6d-3160-458e-914e-dc5935f57e2e" ], "X-AspNet-Version": [ "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/8032c4d9-070e-449a-95af-f41a945faf56" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8524588f-2d69-4064-8175-85472983e089" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "d87cb8e9-a17b-42ec-94a5-247259494d92" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013313Z:d87cb8e9-a17b-42ec-94a5-247259494d92" ], + "x-ms-correlation-request-id": [ "89a62ee7-6ada-4f16-a325-6f27f6ded36a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233424Z:89a62ee7-6ada-4f16-a325-6f27f6ded36a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7F00D4F25B647F0BED182C662F0AD13 Ref B: MWH011020806052 Ref C: 2025-11-14T01:32:49Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 139327AEB1C64158B4A82ECCC1A88C6D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:33:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9494" ], + "Content-Length": [ "9496" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:32:52.1533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Custom-8wks\",\"repositorySiteName\":\"Functions-Flex-Custom-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\",\"functions-flex-custom-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:34:01.64\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-8wks\\\\$Functions-Flex-Custom-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-custom-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "348" ], - "x-ms-client-request-id": [ "5b048985-0d05-47ae-8ed1-9af3f86cf189" ], + "x-ms-client-request-id": [ "0378536d-3f18-46ad-93df-fe75195c0d86" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6554,38 +6554,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506A49A1B80\"" ], + "ETag": [ "\"1DC55BF3561F940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75caec56-fe60-444e-becb-b2b9d8490079" ], + "x-ms-request-id": [ "d40da2f8-14dc-4652-ba8c-c02fd431dbd9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "432e42b6-f6e9-4d8b-8b91-c0e72118da21" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013344Z:432e42b6-f6e9-4d8b-8b91-c0e72118da21" ], + "x-ms-correlation-request-id": [ "a9ef443f-3429-4fe8-96d9-3fb24e6bf9b3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233454Z:a9ef443f-3429-4fe8-96d9-3fb24e6bf9b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 647BBC10D4494CECB02169CBF615B54B Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3CC5365347749118DEF833DB7F3EFA8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9465" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Custom-8wks\",\"repositorySiteName\":\"Functions-Flex-Custom-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\",\"functions-flex-custom-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:34:23.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-8wks\\\\$Functions-Flex-Custom-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-custom-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "349" ], - "x-ms-client-request-id": [ "6945fdf2-64d0-4f6a-bbc8-68959ae1c6f5" ], + "x-ms-client-request-id": [ "231c7c14-127d-4206-828a-9ce524946c0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6600,38 +6600,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506A49A1B80\"" ], + "ETag": [ "\"1DC55BF3561F940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d707178e-9bf8-4c06-b436-ecd28892a58d" ], + "x-ms-request-id": [ "8c5d0c9a-1802-495b-9a2d-237d6c2c0d7e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e9eb4948-816a-4340-9a28-a8141061da49" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013344Z:e9eb4948-816a-4340-9a28-a8141061da49" ], + "x-ms-correlation-request-id": [ "112d5b10-551e-451f-bc72-3d7e32a989d1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233454Z:112d5b10-551e-451f-bc72-3d7e32a989d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2AEC8F2109CF42058A14E6B6F9CA1A3B Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FB2103883CB48DF84C6BC2B283A26FE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9465" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Custom-8wks\",\"repositorySiteName\":\"Functions-Flex-Custom-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\",\"functions-flex-custom-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:34:23.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-8wks\\\\$Functions-Flex-Custom-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-custom-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "350" ], - "x-ms-client-request-id": [ "c302721f-03ac-4256-b3eb-da8241f677dc" ], + "x-ms-client-request-id": [ "69a5503b-c03e-40df-b802-f81517889a2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6647,36 +6647,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dfb5c85c-c09b-4294-a45a-afd329d9f32c" ], + "x-ms-request-id": [ "13b2c813-8291-441f-8318-a036d192f766" ], "X-AspNet-Version": [ "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/6b62574f-a0b0-4987-a1c2-97a96b1a8109" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1429224c-e620-420c-b564-0209ffef3923" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "045d5b8a-652b-434a-a801-b463472c3d03" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013346Z:045d5b8a-652b-434a-a801-b463472c3d03" ], + "x-ms-correlation-request-id": [ "50e22c64-c94a-4ad9-9075-51e6b2a25d5f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233455Z:50e22c64-c94a-4ad9-9075-51e6b2a25d5f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 315635A01AF7481EB200829DCEE1370C Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7ABE48E30C684CE0ACB184DD2294BCAF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "351" ], - "x-ms-client-request-id": [ "bd16fde5-0cd9-4cf9-9dbb-8831a57bb722" ], + "x-ms-client-request-id": [ "63dbc8b7-6d98-4d9a-a5e0-20d9efd14517" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6692,37 +6692,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62d32c4c-4f12-4a60-b5cf-c6a62bb8e18a" ], + "x-ms-request-id": [ "dccb385d-a655-45e6-af85-a39ba5a8632f" ], "X-AspNet-Version": [ "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/878e7398-0f9c-4981-a509-acc701de4c6e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cab29768-7e82-4e4a-a26d-d1bb536556f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "29e48462-4096-4c36-bbef-7df96e5fd2e3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013346Z:29e48462-4096-4c36-bbef-7df96e5fd2e3" ], + "x-ms-correlation-request-id": [ "3071bc36-47d3-4257-9b39-69efb18f3f76" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233455Z:3071bc36-47d3-4257-9b39-69efb18f3f76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62D22E3B00F14AC096E686D60B3CCE0D Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3DF12B326BD475B9FC2F2FAAA70575C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web\",\"name\":\"Functions-Flex-Custom-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "352" ], - "x-ms-client-request-id": [ "a0ec6ca1-ee84-4b34-9b23-993d03241f71" ], + "x-ms-client-request-id": [ "03f01433-fbd2-417b-a38f-5a70e1672868" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6738,36 +6738,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "34c01f18-acd9-4a5b-9e65-2b7361d6805e" ], + "x-ms-request-id": [ "a297c218-db16-4805-a111-8b1517cd71e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e03d8e20-67af-4419-99ac-2e6c4182bd45" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013346Z:e03d8e20-67af-4419-99ac-2e6c4182bd45" ], + "x-ms-correlation-request-id": [ "f32a8dae-f4ff-4285-a7ae-0198e321cf77" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233456Z:f32a8dae-f4ff-4285-a7ae-0198e321cf77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D45347581F54157B7DAEF087B47E803 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABEBB74306114F07833793F0B7887C16 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62125,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62125\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:33:07.21\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "353" ], - "x-ms-client-request-id": [ "283e2e39-1eb3-4dcb-b125-6d1fa9d70145" ], + "x-ms-client-request-id": [ "feae7582-5847-47bb-a37d-f1a4b740e55c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6783,36 +6783,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12aefe01-43e1-40f6-a3da-811d38a3766d" ], + "x-ms-request-id": [ "b504d588-8397-48eb-ba6c-266f9c3be9f0" ], "X-AspNet-Version": [ "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/38e62c03-45c8-42a2-a8f4-4a9dc4042ab0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c97ca4e3-faaa-4b4a-98aa-01c26a03bf37" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "04fefc0a-59ca-4ca2-befa-6fed7d8dd827" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013347Z:04fefc0a-59ca-4ca2-befa-6fed7d8dd827" ], + "x-ms-correlation-request-id": [ "5a05def6-6940-44c5-b114-21be84c18005" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233456Z:5a05def6-6940-44c5-b114-21be84c18005" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5EB1300274F4E6EB00F58EF3AA18DBF Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C0C848AD8B74EEE876CF4D1FAFFC573 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:56Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "354" ], - "x-ms-client-request-id": [ "2ba660e4-b243-4946-91ae-eb244556a782" ], + "x-ms-client-request-id": [ "96863179-a345-4633-b3ff-ac1cccdf8459" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6827,38 +6827,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506A49A1B80\"" ], + "ETag": [ "\"1DC55BF3561F940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28c375b8-7188-4af9-bf72-80b73eb5d8e3" ], + "x-ms-request-id": [ "dcac2fab-2ac6-433b-84f1-2b1fe1e5a722" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "45a7063a-af61-4a68-9fa8-03410605f4ab" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013347Z:45a7063a-af61-4a68-9fa8-03410605f4ab" ], + "x-ms-correlation-request-id": [ "b72de1bb-0c13-4b9f-a949-bd7e480d9ef1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233457Z:b72de1bb-0c13-4b9f-a949-bd7e480d9ef1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62AC2425ECEE4F8AB71069EA443EE4A4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:47Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E22D9CD840B4A629F7979DC61C6B1E4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:56Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9465" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Custom-8wks\",\"repositorySiteName\":\"Functions-Flex-Custom-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\",\"functions-flex-custom-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:34:23.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-8wks\\\\$Functions-Flex-Custom-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-custom-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "355" ], - "x-ms-client-request-id": [ "07337678-ee46-4cab-ae66-590f838c2c9c" ], + "x-ms-client-request-id": [ "f4f76a9b-709e-421b-beb6-9127a38cc430" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6874,36 +6874,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b59fb9fc-974d-45f9-b74d-ef6b86ea865b" ], + "x-ms-request-id": [ "632df1fe-e155-43e3-99e3-e17cb4b6a850" ], "X-AspNet-Version": [ "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/900655f7-3b36-4833-846f-b56e0fabb4b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/383c2266-8902-48d9-99ea-ddf8fbb91be7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b9740f9e-94e7-4192-8097-9d96ade85fc8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013347Z:b9740f9e-94e7-4192-8097-9d96ade85fc8" ], + "x-ms-correlation-request-id": [ "d903a5f2-1772-461f-a0dc-9154b5f586d0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233457Z:d903a5f2-1772-461f-a0dc-9154b5f586d0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE8B53A76CC54478AE78352525D91A24 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:47Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CFEADA04432449DAB3D672759C121DB4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "1959d5ab-a9b3-4a94-9b44-56722fca846a" ], + "x-ms-client-request-id": [ "70c22f27-10e1-45d5-8912-7cdec4a287da" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6919,37 +6919,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e4da1a56-c0fc-479c-8adb-481142f44422" ], + "x-ms-request-id": [ "58ba470f-e154-4de8-9edd-c63395f6a090" ], "X-AspNet-Version": [ "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/11c65b25-6b12-4c40-b2c6-ba30a5fd61ec" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0fcb3644-040f-4967-9b81-e9de74066018" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013348Z:0fcb3644-040f-4967-9b81-e9de74066018" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/65e80e23-afb8-4067-ad35-7e322afcad12" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "853cf774-ee7e-4862-86bc-7e1440b066e8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233457Z:853cf774-ee7e-4862-86bc-7e1440b066e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CDC4349593F490B84E38B6B9849E68E Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DCFB49FA14034F7D9F95963CCBB105FE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web\",\"name\":\"Functions-Flex-Custom-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "357" ], - "x-ms-client-request-id": [ "c2529fe0-3079-4227-8c6e-52adc7918d2e" ], + "x-ms-client-request-id": [ "8deac3c2-583f-496e-8dfc-45cabfc3fbf7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6964,38 +6964,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506A49A1B80\"" ], + "ETag": [ "\"1DC55BF3561F940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93f4c872-0e7a-4e58-8924-7ac59e7ce416" ], + "x-ms-request-id": [ "0ea885d1-9809-48da-a833-b0cc7b701c04" ], "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": [ "d9b54398-b845-42da-a718-b13907cc9ad2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013348Z:d9b54398-b845-42da-a718-b13907cc9ad2" ], + "x-ms-correlation-request-id": [ "b55b88d0-b960-4362-b722-64a0b1ea05ec" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233459Z:b55b88d0-b960-4362-b722-64a0b1ea05ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA53DD1DA73D4A9BACCAFBD003874298 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D43D135788B7468A8E31A4FA6F185EAB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9465" ], + "Content-Length": [ "9472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Flex-Custom-fqti\",\"repositorySiteName\":\"Functions-Flex-Custom-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-fqti.azurewebsites.net\",\"functions-flex-custom-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:33:13.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappcustomsafqti.blob.core.windows.net/app-package-functionsflexcustomfqti-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-fqti\",\"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-fqti\\\\$Functions-Flex-Custom-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-flex-custom-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Flex-Custom-8wks\",\"repositorySiteName\":\"Functions-Flex-Custom-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-8wks.azurewebsites.net\",\"functions-flex-custom-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:34:23.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-8wks\\\\$Functions-Flex-Custom-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-flex-custom-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "358" ], - "x-ms-client-request-id": [ "1f937cbc-9358-4574-a6ee-bd78aae15136" ], + "x-ms-client-request-id": [ "eb86fbe3-724c-45be-9949-6369753a15d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7011,36 +7011,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5955f60-f701-4e1b-9423-4cbb63a1f246" ], + "x-ms-request-id": [ "c0893fc9-7a93-432f-87e9-a203264ace6a" ], "X-AspNet-Version": [ "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/f32d72ac-dd83-4009-82f3-bd108753ee2d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e3f74bfb-5f23-481d-bbe9-41ec00c34087" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013349Z:e3f74bfb-5f23-481d-bbe9-41ec00c34087" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1c306107-9d86-45b6-93b1-c9fad4ae13e5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "2a1edb73-b400-447f-83bc-3224f0b18fa0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233459Z:2a1edb73-b400-447f-83bc-3224f0b18fa0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 066627852CD24451AA8953FBDBA65D0E Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5D97BE75BFC2471C8F32850B3C3D512B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsafqti;AccountKey=tHyWEP/ZuWV07anoNXKJvlRWsQ9K7IMlbXYP6x+0e1+wL5my5OgxnFSawOT5Bq5VDGp//dAVV2xh+ASt8fwW+w==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "359" ], - "x-ms-client-request-id": [ "fbd9d6f2-132e-4be9-bee8-39593d5c3c43" ], + "x-ms-client-request-id": [ "43c29695-cc21-4065-9124-724646b4b5e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7056,37 +7056,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ac24c59-138e-47d2-b69d-00d529d4aa54" ], + "x-ms-request-id": [ "d6a4c0d1-4a9b-4aef-a9a0-0a2aa5810267" ], "X-AspNet-Version": [ "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/39f145e1-422b-45ff-9d16-9b2a1ac5c294" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "001c36b8-e353-4cbb-994c-45613296c1cd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013349Z:001c36b8-e353-4cbb-994c-45613296c1cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5bc8daf6-043c-44f1-8ece-8026094604c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2e523237-272b-4673-b033-d5a44b356b3d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233500Z:2e523237-272b-4673-b033-d5a44b356b3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FEB8B903E584488944A14F539BF4E47 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:49Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1D3B90C9CE4483F99958B059BAFFA62 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:34:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti/config/web\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/web\",\"name\":\"Functions-Flex-Custom-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "d2c5fd8d-6ba0-4e65-a6da-31d2bfffdc79" ], + "x-ms-client-request-id": [ "152148b5-1527-42dd-b146-537616490028" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7102,36 +7102,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ec3275e-62ad-4bc3-9dea-c09b5931263f" ], + "x-ms-request-id": [ "e645aba1-e52f-4eb0-82b3-e17844ff2911" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "856fda86-8978-4460-9c35-3514f2228ebc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013350Z:856fda86-8978-4460-9c35-3514f2228ebc" ], + "x-ms-correlation-request-id": [ "e0354128-cc8b-4171-b1ff-c66ffab76752" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233500Z:e0354128-cc8b-4171-b1ff-c66ffab76752" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1F3D90F44304D3183BDC84A939498B0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:49Z" ], - "Date": [ "Fri, 14 Nov 2025 01:33:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E90787AFCC148B7BEF121BF331F510C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:34:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52543,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52543\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:32:02.0033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62125,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62125\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:33:07.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Flex-Custom-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "361" ], - "x-ms-client-request-id": [ "3937a9fd-53b6-4d15-95e1-45da69615c0e" ], + "x-ms-client-request-id": [ "a21acb9a-010b-4349-a436-681db713f476" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7146,20 +7146,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506A49A1B80\"" ], + "ETag": [ "\"1DC55BF3561F940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "566396df-482a-4fd1-abfb-79943825a5bf" ], + "x-ms-request-id": [ "8ca50733-e5e4-4795-adea-5425557b4617" ], "X-AspNet-Version": [ "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/1e3d194a-fff3-4e0e-ac17-74ca11c95aed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cd38b96f-d832-4fbf-832d-0b94b4047b0e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "14b1ac2b-7a1e-4577-8c58-b17a0acfc3b3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013407Z:14b1ac2b-7a1e-4577-8c58-b17a0acfc3b3" ], + "x-ms-correlation-request-id": [ "cac364d0-3b8a-46a4-9b11-d618086d98c3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233517Z:cac364d0-3b8a-46a4-9b11-d618086d98c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56380515F00748508A55CAF00F4877AC Ref B: MWH011020806052 Ref C: 2025-11-14T01:33:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DA1C2991A164201A8D40CAE53BC3EC5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7173,7 +7173,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7188,18 +7188,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23d37116-569e-4fef-a21d-6db9711f404c" ], + "x-ms-request-id": [ "453debcf-89ed-44e2-b7cf-3035f049f6fd" ], "X-AspNet-Version": [ "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/85a65840-cafd-414e-a96e-3f99667633df" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e4381eee-4959-4700-954c-66d21b5a5264" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7d2260e4-bde4-45a1-bd3f-b813c7db91bf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013407Z:7d2260e4-bde4-45a1-bd3f-b813c7db91bf" ], + "x-ms-correlation-request-id": [ "9138f15a-495b-417a-a3bb-4c25acd8bcaa" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233518Z:9138f15a-495b-417a-a3bb-4c25acd8bcaa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5728FDF4CEBA40AD90C3D5099441BA90 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C3783D8BDBB4C3B9E13FF54EF56D0B6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7210,10 +7210,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -7229,38 +7229,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "472b3130-c841-4fb9-bf9d-699c1acbf00f" ], + "x-ms-request-id": [ "383e0317-0a76-451c-bd27-6a0e07b75ae2" ], "X-AspNet-Version": [ "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/f66be9ac-3851-4a0c-8945-47bfaac26698" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a37aac29-e68c-4b3f-8b22-0f595a1c597c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "2f344bb3-eb75-48f8-bae9-825ffa17bf77" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013412Z:2f344bb3-eb75-48f8-bae9-825ffa17bf77" ], + "x-ms-correlation-request-id": [ "9f35fd28-cf84-4463-aa99-81006e3a6c03" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233523Z:9f35fd28-cf84-4463-aa99-81006e3a6c03" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDE386FE417D45D5AD63B8397ADF30D9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A3C55D828BC419A835E37BD6FC69B80 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"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-14T01:34:12.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62126,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62126\",\"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-14T23:35:23.0066667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "365" ], - "x-ms-client-request-id": [ "e720b656-1e7f-4b1d-9840-67b5bb4625ba" ], + "x-ms-client-request-id": [ "fd062f8f-cfa7-4205-93b7-133fe4507659" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7275,37 +7275,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1325ab8e-984e-431f-810c-09dff8c191c5" ], + "x-ms-request-id": [ "0ebd3408-7372-4366-acaf-69b5c63df937" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aefe51fe-0dfa-484d-a73c-da365c5d9f5c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013443Z:aefe51fe-0dfa-484d-a73c-da365c5d9f5c" ], + "x-ms-correlation-request-id": [ "3be44ab7-9370-490b-9f0d-55e3a10396f7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233553Z:3be44ab7-9370-490b-9f0d-55e3a10396f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 192CC3132A934122A630B775E75834B1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6096D2DB5DD845598E2B687872D50E11 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62126,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62126\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:35:23.0066667\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "366" ], - "x-ms-client-request-id": [ "e720b656-1e7f-4b1d-9840-67b5bb4625ba" ], + "x-ms-client-request-id": [ "fd062f8f-cfa7-4205-93b7-133fe4507659" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7320,24 +7320,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f3b7b91-0e67-4f53-b2ca-b5d84258af2e" ], + "x-ms-request-id": [ "84a5e9a1-e229-4777-a0a8-2e79512949de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1907eea4-ab92-486b-9077-7f205fa5e4f2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013443Z:1907eea4-ab92-486b-9077-7f205fa5e4f2" ], + "x-ms-correlation-request-id": [ "fd0bb25d-f763-4046-9f28-55155a981413" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233554Z:fd0bb25d-f763-4046-9f28-55155a981413" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6695E184E5C1475FA5329B920A04B342 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA3519A6B14F45E2B105499C794E1BBE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62126,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62126\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:35:23.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -7349,7 +7349,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "367" ], - "x-ms-client-request-id": [ "94a6b954-a412-4dff-9071-4d9d33ac3101" ], + "x-ms-client-request-id": [ "03cbade4-e582-4a67-80c2-39f471f04d30" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7364,36 +7364,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4c35d52e-30e6-412e-ad27-4cbaf4b3f4d2", "8709833c-2dc9-4eb1-b2bb-c754ef660a8d", "d2f2e07c-964f-47de-b745-d41b07666175" ], + "x-ms-original-request-ids": [ "f4ba2cc5-499e-41ec-958a-84aec5c51ac4", "89257f6d-45aa-437f-81e1-944da1a78348", "2ff4daf6-6f5f-4a03-9b0a-4bb882f28ef4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2daae323-77fe-419d-81c1-8bbf0bedbab9" ], - "x-ms-correlation-request-id": [ "2daae323-77fe-419d-81c1-8bbf0bedbab9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013444Z:2daae323-77fe-419d-81c1-8bbf0bedbab9" ], + "x-ms-request-id": [ "c136938a-873b-485d-bd33-0c2d71e8a702" ], + "x-ms-correlation-request-id": [ "c136938a-873b-485d-bd33-0c2d71e8a702" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233554Z:c136938a-873b-485d-bd33-0c2d71e8a702" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12D66FB9E31844A7899441634CD6DDA5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0BFD230B169407BB20423F15B5701A6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionspythonflexscaling8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionspythonflexscaling8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "368" ], - "x-ms-client-request-id": [ "88ec13df-3990-4cce-80f9-d252aa3dc471" ], + "x-ms-client-request-id": [ "2c74dd39-32e5-4a1e-86bd-bdb88a1af3d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7408,31 +7408,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f87ee814-45bc-4c3b-9a7d-db8ea3b3be27" ], + "x-ms-request-id": [ "e37fe43c-a1c7-4c70-a8c9-7ed9c83b2642" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/74d9d7a9-09ef-4202-a080-7e031c3e03c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5fd9f401-952a-4047-bc28-288e6828c868" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7feb3d74-49a8-43fe-b283-18462b3a1955" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013445Z:7feb3d74-49a8-43fe-b283-18462b3a1955" ], + "x-ms-correlation-request-id": [ "3082e8c6-14d5-4ff7-91ff-f7820db5cd0b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233555Z:3082e8c6-14d5-4ff7-91ff-f7820db5cd0b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8433F1E84F8E4C46BBBD71F2290B5EDE Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6BF077F57A724530B19C9331D6EFD457 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:91674896-e01e-0038-2506-55caeb000000\\nTime:2025-11-14T01:34:45.0549815Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:50f0751e-601e-0040-47bf-55e0c3000000\\nTime:2025-11-14T23:35:55.2566010Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionspythonflexscaling8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionspythonflexscaling8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -7447,25 +7447,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231DFE0E1EE8\"" ], - "x-ms-request-id": [ "8f96bcb0-927d-4e79-bc37-fb52a76bcbf3" ], + "ETag": [ "\"0x8DE23D68EC47094\"" ], + "x-ms-request-id": [ "6a1bf411-ae87-4810-9ffb-e8857bd8f0b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b1165a9b-53ca-4f6f-8b06-3b0fb896d9a5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/64c764fa-d938-4e98-8242-59090a33905e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9a649c30-8809-45ca-a0de-fec723994338" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013445Z:9a649c30-8809-45ca-a0de-fec723994338" ], + "x-ms-correlation-request-id": [ "fa919b9c-f0f4-46d0-aa21-67af35eecbc3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233555Z:fa919b9c-f0f4-46d0-aa21-67af35eecbc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 43E5B28822E9431A880C035C31C1FAED Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 510691113A7A437980410D500C689726 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "460" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/blobServices/default/containers/app-package-functionspythonflexscalingfqti-0000000\",\"name\":\"app-package-functionspythonflexscalingfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/blobServices/default/containers/app-package-functionspythonflexscaling8wks-0000000\",\"name\":\"app-package-functionspythonflexscaling8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -7477,7 +7477,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "cea2531b-9b23-4cda-aca5-029a176064f9" ], + "x-ms-client-request-id": [ "d32f93c6-2818-489c-9f97-5d8b3f4dde66" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7492,36 +7492,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e824ea99-8d7e-44d4-b855-ddd201340065", "d6249734-3ec6-4b72-afec-a4e9b1424375", "c8734daa-a275-4343-9fa6-a79f291cd0e6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4c08448e-72f5-4e81-aece-7ec85e2cf07d" ], - "x-ms-correlation-request-id": [ "4c08448e-72f5-4e81-aece-7ec85e2cf07d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013446Z:4c08448e-72f5-4e81-aece-7ec85e2cf07d" ], + "x-ms-original-request-ids": [ "8f974ff0-389a-4181-bd10-f4a39cd54c3e", "edb47bdf-8c51-4fda-ba73-dd2521411698", "84765920-3ac0-4dcb-b259-88b55068e4c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "c77c35be-bb65-4d2e-8d88-b230515f54ae" ], + "x-ms-correlation-request-id": [ "c77c35be-bb65-4d2e-8d88-b230515f54ae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233556Z:c77c35be-bb65-4d2e-8d88-b230515f54ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9ADE519CAA2A41D9997B532FD4FB6B34 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5160AA1F61742C48A81193953CCA59F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:56Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "371" ], - "x-ms-client-request-id": [ "f93ef0ee-b1c6-4285-ad7a-87458acc6d3f" ], + "x-ms-client-request-id": [ "a52442b9-1722-4d7f-b6e9-8f78b4e56a5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7536,23 +7536,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "63d2849d-4b80-48eb-b020-bc418b7f001a" ], + "x-ms-request-id": [ "4126512e-2269-4632-a61b-3359457e0b23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f2e05da3-62a2-4aff-a173-d2eceebc9369" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8e9be14c-3d54-458e-8c72-068b2f30963d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "53b57912-f681-40b3-b5e7-030c1f278723" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013447Z:53b57912-f681-40b3-b5e7-030c1f278723" ], + "x-ms-correlation-request-id": [ "a5456142-d426-463a-87bc-2e9c1417387b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233557Z:a5456142-d426-463a-87bc-2e9c1417387b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 97D1E57878CB4DA7A350B83038E0B3BC Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28A4CFA6BD4F4D26A58FCCF7D416170C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SuePBq+K5rXBjCUWYshXoqlKXi45LcdOnYcYMxNfAEJJLyNuqETiKjIIq/7KLZ8kDNOI4O/kAB43+ASthGWPcg==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -7564,7 +7564,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "372" ], - "x-ms-client-request-id": [ "0920a9e8-ad17-4bbb-9a39-514790dee66c" ], + "x-ms-client-request-id": [ "cf4d513a-45a6-4d2e-b49d-0c3ada520d9a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7579,36 +7579,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8c52e296-0d2a-4174-94e5-1634c985d04b", "c67271a9-41f2-4ede-808c-11f8881a0c2c", "4e1d93d8-85aa-4ecb-a4f6-e7e05e01b5b1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "fda5377e-f57c-4f87-8563-2a3e3019d126" ], - "x-ms-correlation-request-id": [ "fda5377e-f57c-4f87-8563-2a3e3019d126" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013448Z:fda5377e-f57c-4f87-8563-2a3e3019d126" ], + "x-ms-original-request-ids": [ "76f47834-bfeb-4978-8400-1fd59390772d", "0894560e-2702-4479-865a-73f5e96389ff", "e36216d0-2b39-491a-a1ac-ec6b559cabc4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "144e5d28-6f9c-4ff7-91c2-c50516a8fcc6" ], + "x-ms-correlation-request-id": [ "144e5d28-6f9c-4ff7-91c2-c50516a8fcc6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233557Z:144e5d28-6f9c-4ff7-91c2-c50516a8fcc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3BDBD99DECF44549209D1E9AECFBFCC Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:47Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F0232B9D72A430D87A07CED51020A33 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "373" ], - "x-ms-client-request-id": [ "8055a47b-f6cc-469b-8e91-dfe0fe8afadc" ], + "x-ms-client-request-id": [ "401f8a67-819f-45ba-8be2-184ce404c65b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7623,30 +7623,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dbea0999-5493-495d-ab55-a22e27e53a6e" ], + "x-ms-request-id": [ "7209fe23-941d-4d40-a617-e6fa6ea0f4aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f56a5ae-a6a4-4a20-a8c7-8fd4fa2d605a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4ca32736-5503-46c4-a524-e6949d1c7a9a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d588911c-0394-4fd4-a020-f08302a0c1a9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013448Z:d588911c-0394-4fd4-a020-f08302a0c1a9" ], + "x-ms-correlation-request-id": [ "c03b88b5-b2ab-4332-9c0b-c2b76a867c52" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233558Z:c03b88b5-b2ab-4332-9c0b-c2b76a867c52" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFA2A5C543504DDE90BF0705E160001E Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DEF0265FD9E041768714E92632E96EC6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:35:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"4xpIG7g1eVAndvkfkJUCtGsRhcErci0vl+39T8JPns7m+qYgUR5/lAJ672kFEF5FQpN142mS0TKh+AStfojx4g==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SuePBq+K5rXBjCUWYshXoqlKXi45LcdOnYcYMxNfAEJJLyNuqETiKjIIq/7KLZ8kDNOI4O/kAB43+ASthGWPcg==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -7666,30 +7666,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6078df23-eb5c-4aa2-b81b-8ae0f7e89273" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/35878391-39b7-45c3-beb4-4dcfaf976e96" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "bc79956a-c35c-41a1-8e6d-75a115498da2" ], - "x-ms-correlation-request-id": [ "bc79956a-c35c-41a1-8e6d-75a115498da2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013500Z:bc79956a-c35c-41a1-8e6d-75a115498da2" ], + "x-ms-request-id": [ "08b0dd97-0945-4505-a1fd-844500da1d2f" ], + "x-ms-correlation-request-id": [ "08b0dd97-0945-4505-a1fd-844500da1d2f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233611Z:08b0dd97-0945-4505-a1fd-844500da1d2f" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFFF4A32243E49A8AE6F113E20FDD685 Ref B: MWH011020806052 Ref C: 2025-11-14T01:34:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:34:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDD7BB44315145CB9EA23182B5AD6336 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:35:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:36:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"7803b09f-0000-0200-0000-691687430000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-fqti\",\r\n \"name\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"AppId\": \"f5571936-d55e-4e8c-8611-251a7ef7afc0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bd21d36f-2dc5-44b2-9972-cf28dac8d726\",\r\n \"ConnectionString\": \"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:34:50.0402919+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-fqti_f5571936-d55e-4e8c-8611-251a7ef7afc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-fqti-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\": \"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\r\n \"name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"AppId\": \"33228ef1-a6e4-4064-9040-cbaccec606f9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dc1718c9-6151-4735-9017-ed993ce3056c\",\r\n \"ConnectionString\": \"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:36:00.7780637+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-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7703,39 +7703,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506E6115815\"" ], + "ETag": [ "\"1DC55BF79695695\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fb22aca-a2d8-4ba0-8195-a91efdfe34f1" ], + "x-ms-request-id": [ "a0d5000d-5cb5-4f37-b427-b89817797212" ], "X-AspNet-Version": [ "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/6f1ed281-f3d2-472b-b4bb-13d402fbcb66" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6efb2958-2dac-43c2-8701-02eda1d36eef" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "60c20749-b895-451f-8d88-ef6ed0b475b1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013524Z:60c20749-b895-451f-8d88-ef6ed0b475b1" ], + "x-ms-correlation-request-id": [ "4bc1ad7e-ce35-4ac6-8e86-6cd918dbd22c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233638Z:4bc1ad7e-ce35-4ac6-8e86-6cd918dbd22c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4AD6176884C404BA07CCC1E5BC10CF5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:00Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 773CD990B4B04CE19EA388779F05C0F7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:36:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:36:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9679" ], + "Content-Length": [ "9681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:02.4933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Python-Flex-Scaling-8wks\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"functions-python-flex-scaling-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:36:16.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\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-8wks\\\\$Functions-Python-Flex-Scaling-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "376" ], - "x-ms-client-request-id": [ "d24fe16c-180c-42a1-9054-720330762f3d" ], + "x-ms-client-request-id": [ "5a4769f2-afd0-4037-81e6-e65ed84db989" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7749,38 +7749,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506F25CB940\"" ], + "ETag": [ "\"1DC55BF8592A3CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59498c32-b36f-4f5b-8e6a-b9517e860daf" ], + "x-ms-request-id": [ "56a9ca30-40ba-4cc9-81f3-ba8f6c82f2d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aae4723c-c8e9-4943-ae9f-0acad0dd1d2e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013554Z:aae4723c-c8e9-4943-ae9f-0acad0dd1d2e" ], + "x-ms-correlation-request-id": [ "54200243-02d0-4912-8e3e-eeef0cbae07c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233709Z:54200243-02d0-4912-8e3e-eeef0cbae07c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58A50265C4F54958AAD75B5A5C9D1863 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B1FE97667A344CC8CCA7D3F0723EE63 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9651" ], + "Content-Length": [ "9663" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Python-Flex-Scaling-8wks\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"functions-python-flex-scaling-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:36:38.2366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-8wks\\\\$Functions-Python-Flex-Scaling-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "377" ], - "x-ms-client-request-id": [ "85eb37c3-41da-4ba1-bac7-ca8479fe6f56" ], + "x-ms-client-request-id": [ "ffe4ab49-1789-4d37-b23d-4ef0847c95e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7795,38 +7795,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506F25CB940\"" ], + "ETag": [ "\"1DC55BF8592A3CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b2a95cb-4621-4e0e-8ab1-33c3be600d98" ], + "x-ms-request-id": [ "d53d186e-485c-4729-a5aa-cfc5825e9961" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05061d1c-d925-4579-b077-bc49f232ac62" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013555Z:05061d1c-d925-4579-b077-bc49f232ac62" ], + "x-ms-correlation-request-id": [ "f572dab8-b4ad-41e1-aec3-b3ecbad179fe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233709Z:f572dab8-b4ad-41e1-aec3-b3ecbad179fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 213F331D541D43FF95C14198C28BC95A Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23497052F0954EB09587C93FD9DC896E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9651" ], + "Content-Length": [ "9663" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Python-Flex-Scaling-8wks\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"functions-python-flex-scaling-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:36:38.2366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-8wks\\\\$Functions-Python-Flex-Scaling-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "8430ca0c-da4a-487d-a246-f9bbe6343c1f" ], + "x-ms-client-request-id": [ "4a816056-640a-4ccf-b479-4d4901fb7910" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7842,36 +7842,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e195b9d-bddd-457f-b397-a555a3f51437" ], + "x-ms-request-id": [ "6e503ac6-4d7f-4438-b9c3-08dccaa1f67a" ], "X-AspNet-Version": [ "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/63e9401f-6627-4ccf-9660-ed2f4c1ffbde" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5c08c0c6-3c08-4c61-9cb9-deb557c7ed28" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e68e516a-e541-42d3-961e-fe83526ddd68" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013555Z:e68e516a-e541-42d3-961e-fe83526ddd68" ], + "x-ms-correlation-request-id": [ "c9b5f5db-446b-4f99-8e9d-0f5e4a2391d2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233709Z:c9b5f5db-446b-4f99-8e9d-0f5e4a2391d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 471F8F7EF91D4FA5B86EF94E75C37948 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0642F4B6EF5490DBA26EE25C4A14CC3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "379" ], - "x-ms-client-request-id": [ "2522f279-710e-4b79-bc97-6e845aeeeef5" ], + "x-ms-client-request-id": [ "64155a22-f3bf-4e14-9d80-95c60cadf0a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7887,37 +7887,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9e609bc-fd1b-4728-b86e-119922b20536" ], + "x-ms-request-id": [ "d21c5dac-555b-42ad-b824-ab9540f736f0" ], "X-AspNet-Version": [ "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/0192f36f-dbc8-46d2-a1a9-a70ab34f2bcd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/35fd414b-5e63-4b92-a18e-85c0d4fcde3e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0393568-1097-4198-9678-14ef57c9fbcc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013556Z:c0393568-1097-4198-9678-14ef57c9fbcc" ], + "x-ms-correlation-request-id": [ "b083683c-9d88-4cb1-915a-f0b32ec5a31d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233710Z:b083683c-9d88-4cb1-915a-f0b32ec5a31d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B02E27112FF4F048C3E5E52E79723FB Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 354968DC4B0E4B939884BE0E444EB50D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "380" ], - "x-ms-client-request-id": [ "9d44f00f-ab6d-43dd-9227-7b9c8b59e98d" ], + "x-ms-client-request-id": [ "47d63cb4-98cb-49e9-b0c5-c3d73646705f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7933,36 +7933,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "54588e4b-f1ad-4d51-964b-05f893fd3c8a" ], + "x-ms-request-id": [ "719e4f8b-2cb5-4f33-9b67-aa12c2eaca2a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6176265d-8958-40d5-b229-d144841763fc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013556Z:6176265d-8958-40d5-b229-d144841763fc" ], + "x-ms-correlation-request-id": [ "6a3b6d0e-2ef8-425e-988c-b73aece5cdb3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233710Z:6a3b6d0e-2ef8-425e-988c-b73aece5cdb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBA80DD3C02B43D6AC7F84885FF890F0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ADF55A8106B043B383361757B609AF52 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62126,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62126\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:35:23.0066667\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "381" ], - "x-ms-client-request-id": [ "c225e038-4cda-4ed2-bba8-92098654cbdc" ], + "x-ms-client-request-id": [ "80a723d6-58e4-4f52-bb60-757281fb88c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7978,36 +7978,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8969aee-73fd-4737-876b-6038122ccb3c" ], + "x-ms-request-id": [ "1b140645-95f6-45f0-acab-52b43f00e92e" ], "X-AspNet-Version": [ "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/c6bacaf5-5eec-4894-afa4-109f7a53579f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/94fb2fef-5bb1-4620-8fee-eb3325672b11" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6066d703-c896-4039-b15e-86a36dfe07ae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013556Z:6066d703-c896-4039-b15e-86a36dfe07ae" ], + "x-ms-correlation-request-id": [ "d23d298d-a534-4688-983d-821a09c5698d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233711Z:d23d298d-a534-4688-983d-821a09c5698d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15FC054272B54412A9B6EC426A6ACF6E Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A961E8264E2B4116826418E094324585 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "382" ], - "x-ms-client-request-id": [ "abde3d6f-f83d-4d81-a398-c967e5ccbc30" ], + "x-ms-client-request-id": [ "33bf7c89-6660-48a7-933d-80a5bdefb19e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8022,38 +8022,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506F25CB940\"" ], + "ETag": [ "\"1DC55BF8592A3CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b896fbf-68ad-4b5f-a720-2ccb605ca7f2" ], + "x-ms-request-id": [ "bc86cc80-06d7-4b9c-b7e2-9aad3820140d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "440ed52c-e0f0-4e3a-8da4-0c96b8d6989f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013557Z:440ed52c-e0f0-4e3a-8da4-0c96b8d6989f" ], + "x-ms-correlation-request-id": [ "4cc98c19-19dc-4e18-92a8-0252b62e813b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233711Z:4cc98c19-19dc-4e18-92a8-0252b62e813b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59872565686E441688D2588C430378C1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E7C015EEA49494B94517CCD89CAE5EC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9651" ], + "Content-Length": [ "9663" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Python-Flex-Scaling-8wks\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"functions-python-flex-scaling-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:36:38.2366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-8wks\\\\$Functions-Python-Flex-Scaling-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "810fcb20-7731-4cda-bbaa-77903408a259" ], + "x-ms-client-request-id": [ "31dbb796-8c3f-417b-aa65-f99c0a747e95" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8069,36 +8069,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5d33ddc-b52d-4dcb-9000-865a5d972076" ], + "x-ms-request-id": [ "45f578ff-bd78-4409-99fa-bddc3041469b" ], "X-AspNet-Version": [ "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/1651ed0c-5245-47d3-ab4f-79e57793676a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/907086b6-4d21-43e7-826a-4779ab239a67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "44c06dfa-f69d-41eb-be4e-a3b094198cb0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013557Z:44c06dfa-f69d-41eb-be4e-a3b094198cb0" ], + "x-ms-correlation-request-id": [ "58139f91-d875-4862-a614-ff4b4b60b185" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233712Z:58139f91-d875-4862-a614-ff4b4b60b185" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A7DB2F4A5B4E41BD94C77F3AB01ABB12 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62B86A2AB64248C092475E13C8771DAA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "384" ], - "x-ms-client-request-id": [ "43907254-4f6f-4651-8f6f-05773a47b1a0" ], + "x-ms-client-request-id": [ "84ded1bf-d094-433f-a8ff-b5ab411ea733" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8114,37 +8114,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "024007d5-6519-4db5-afb2-1d3cc921c7a0" ], + "x-ms-request-id": [ "5d6a445e-543a-4cdf-a46b-5b0fb478e03f" ], "X-AspNet-Version": [ "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/bfc9d033-670a-4440-b6c3-2022d2db014f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eec3b364-ce3c-4a43-853f-69df8e7f6e43" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b569f49-55d3-4ba0-8b8f-825faa7cd48e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013558Z:9b569f49-55d3-4ba0-8b8f-825faa7cd48e" ], + "x-ms-correlation-request-id": [ "4e39b3c1-f66d-4951-bd7b-f043e561070d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233712Z:4e39b3c1-f66d-4951-bd7b-f043e561070d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 111AD4A763F54347ACCC4872C725820F Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9D011DD549D441189DD3E9480B24020 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "385" ], - "x-ms-client-request-id": [ "0a571b80-3d5a-4124-bba8-8dd068036bdd" ], + "x-ms-client-request-id": [ "5e683d10-2a2b-4d88-9a54-bcc816343897" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8159,38 +8159,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506F25CB940\"" ], + "ETag": [ "\"1DC55BF8592A3CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c89d62e-0b89-40c9-9fe5-59129c3434b1" ], + "x-ms-request-id": [ "4851e57d-52c3-443e-a410-694e6e63e6ac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a7c7f26b-4577-45a2-a2c4-d3f78a77b1f8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013558Z:a7c7f26b-4577-45a2-a2c4-d3f78a77b1f8" ], + "x-ms-correlation-request-id": [ "3649ccc3-6ede-4e87-abe9-0c945622bdae" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233712Z:3649ccc3-6ede-4e87-abe9-0c945622bdae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2899B7929144730A31596E09533B4CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37BCAF5F052C466F9F6F2E9F4F2BF4DF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9651" ], + "Content-Length": [ "9663" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Python-Flex-Scaling-fqti\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"functions-python-flex-scaling-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:35:23.86\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsafqti.blob.core.windows.net/app-package-functionspythonflexscalingfqti-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-fqti\",\"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-fqti\\\\$Functions-Python-Flex-Scaling-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-python-flex-scaling-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Python-Flex-Scaling-8wks\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"functions-python-flex-scaling-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:36:38.2366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-8wks\\\\$Functions-Python-Flex-Scaling-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-python-flex-scaling-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "386" ], - "x-ms-client-request-id": [ "07f81bd1-1e26-49d2-841d-f78609a6ccfb" ], + "x-ms-client-request-id": [ "be16425f-1ae0-4b1b-8235-623de2d923e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8206,36 +8206,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f235ee6b-b094-480f-9d06-f0a5241e4e9d" ], + "x-ms-request-id": [ "43866921-b702-4b46-b474-4797cf558439" ], "X-AspNet-Version": [ "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/4fc0fe0a-d079-42c8-8f4c-a059ad6b50fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/dd680a49-2dc9-4059-bccd-9a0ce7b9b643" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1e2876aa-c0c4-4f99-82c7-dd7c72cf8106" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013559Z:1e2876aa-c0c4-4f99-82c7-dd7c72cf8106" ], + "x-ms-correlation-request-id": [ "db6e5f80-06b5-484b-a53d-5522cc34dd06" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233713Z:db6e5f80-06b5-484b-a53d-5522cc34dd06" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A487DA3DCB264204879FD8E78063D29F Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABAFEA2A74AC4CF48CC6ABA32B7D319B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsafqti;AccountKey=+8hEK+Oe2r+EqKGs//Rs17GhCuzqORGTXc8nLMTIcyYneOgW931caeIwFp+1EzTGgd26yd+3o45e+AStsTGkEA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "d76738d5-609b-47e6-b15a-845c47d3fd6b" ], + "x-ms-client-request-id": [ "ac3ba649-924f-4c17-acb0-6cf3400bf82b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8251,37 +8251,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1860aac3-68fe-458e-9b87-17ddda9d67db" ], + "x-ms-request-id": [ "d2f46f1e-4aec-4ece-9c53-6bc6bb88a8f1" ], "X-AspNet-Version": [ "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/ae3ff2d6-8e51-4308-ae65-edb4fbd46342" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3a75c6a5-5d63-4b6d-93e2-08088efc86ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "38fd3706-f03d-441b-bc1c-bf2a2e94393d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013559Z:38fd3706-f03d-441b-bc1c-bf2a2e94393d" ], + "x-ms-correlation-request-id": [ "13311104-b0e5-4ed3-b9e1-dfd809073b0f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233713Z:13311104-b0e5-4ed3-b9e1-dfd809073b0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE1BBBD451BB4752BF488D3AF6403E35 Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:59Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC3A3FB064C54D13AB4F89D4543EC457 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti/config/web\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/web\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "d1fbed1f-b2b4-42ac-ae71-e6477e70ed65" ], + "x-ms-client-request-id": [ "5897036e-ff2b-4617-a392-2636b4d78b6b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8297,36 +8297,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f5978c8-438a-4e20-93e9-a0421f1cbcb7" ], + "x-ms-request-id": [ "4c314d0e-a97f-4da0-b60b-0af66b3150de" ], "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": [ "6eb1ddb8-c18c-4fd6-b6a9-5ccf557a4ce4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013559Z:6eb1ddb8-c18c-4fd6-b6a9-5ccf557a4ce4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f61180d1-76d4-4140-835c-a5111631412a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233714Z:f61180d1-76d4-4140-835c-a5111631412a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 078AC077A29A434DBB291675FEBC6E8B Ref B: MWH011020806052 Ref C: 2025-11-14T01:35:59Z" ], - "Date": [ "Fri, 14 Nov 2025 01:35:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DFFD5016BF540FB94DC9DAFEB970D4C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52544,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52544\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:34:12.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62126,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62126\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:35:23.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "ec27308b-62f6-4f2f-8c0a-ea84bbbf6b23" ], + "x-ms-client-request-id": [ "a6df7b99-e0b4-4153-b589-85acb04da6bf" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8341,20 +8341,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5506F25CB940\"" ], + "ETag": [ "\"1DC55BF8592A3CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cca534b-1581-422f-b1bc-f549598d8908" ], + "x-ms-request-id": [ "220ca352-f674-48e4-8ad6-c73d6a8c83b0" ], "X-AspNet-Version": [ "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/1c61991b-bb09-4fd4-b8a0-139e31ff375c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2ec38c24-388d-44c6-9e41-2b68e66f7608" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "9263bb73-17ad-41b3-805c-aaa152c1da84" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013618Z:9263bb73-17ad-41b3-805c-aaa152c1da84" ], + "x-ms-correlation-request-id": [ "bb4d8d8d-a751-49bc-aef5-bba0f1f2c187" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233732Z:bb4d8d8d-a751-49bc-aef5-bba0f1f2c187" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CEC82C1A346345F6B7D9852A8713D4DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:00Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A66D74582CE34985BE0AAD49C1CEB426 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8368,7 +8368,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -8383,18 +8383,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a71acf3d-c772-46b0-953f-f809013a0705" ], + "x-ms-request-id": [ "9810f9b5-f13e-40fe-b9af-ecd6345e825f" ], "X-AspNet-Version": [ "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/08ae8d5a-f763-479d-99fc-10b9951e7d24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/68016796-5856-4fa3-bce4-06354eb839d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5ccddd59-1a0a-433e-bb2f-3d7d34c32184" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013618Z:5ccddd59-1a0a-433e-bb2f-3d7d34c32184" ], + "x-ms-correlation-request-id": [ "41567adc-82dc-4ab4-bd8d-2eb13b483848" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233733Z:41567adc-82dc-4ab4-bd8d-2eb13b483848" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE361D9123634085812EC21B013F2E1E Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F98EC332DA3B47DEA05679E79605AD59 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:32Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -8405,10 +8405,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"zoneRedundant\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\",\r\n \"capacity\": 3\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -8424,38 +8424,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef3fde37-8fa1-409d-ace9-78c77b3adaf0" ], + "x-ms-request-id": [ "b40e1450-6b04-4f8c-bf93-5de80cfbecdb" ], "X-AspNet-Version": [ "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/ee038b6f-f2f1-44e4-a367-fdec7ef49ebb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b61c01af-cb81-4f28-9b75-d9feda22528a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "964eedca-6b39-46cf-b97d-8e6a67ebcb0c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013623Z:964eedca-6b39-46cf-b97d-8e6a67ebcb0c" ], + "x-ms-correlation-request-id": [ "11b58207-877b-418f-9d51-0ad816481c04" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233740Z:11b58207-877b-418f-9d51-0ad816481c04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC7E10B9B82948A9B55F2E7812685EA1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC12709CE70046D1917A9A7F7F9A27D0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:37:34Z" ], + "Date": [ "Fri, 14 Nov 2025 23:37:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1901" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-14T01:36:23.45\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62127,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62127\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-14T23:37:39.73\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "393" ], - "x-ms-client-request-id": [ "9a06323c-6277-41d5-ba8a-34943013af25" ], + "x-ms-client-request-id": [ "b8dd79c5-1a8b-4a24-a33c-e02833113c2d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8470,37 +8470,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1317e012-bc84-4833-8af1-ed041c1f903d" ], + "x-ms-request-id": [ "abb34713-a61b-49f3-85d3-9c8a23771ce3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07973cbb-571b-444d-acf9-ed10d1bfad6c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013654Z:07973cbb-571b-444d-acf9-ed10d1bfad6c" ], + "x-ms-correlation-request-id": [ "208eb9be-3f1f-4ec6-a7db-ee1f76b326ef" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233810Z:208eb9be-3f1f-4ec6-a7db-ee1f76b326ef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10EF3998A9DE4D5DBCC6A1FA6A3271E3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 547CC8B8F84148CABEE3683E9B99770C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62127,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62127\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:37:39.73\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "9a06323c-6277-41d5-ba8a-34943013af25" ], + "x-ms-client-request-id": [ "b8dd79c5-1a8b-4a24-a33c-e02833113c2d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8515,24 +8515,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b7bc5dfd-67c3-4e37-a2cb-9b613db8090f" ], + "x-ms-request-id": [ "ecccaf3b-f79b-4be3-a10a-7c86bd22b3c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "96256bf7-8459-4c22-8b74-a5338daf9dd4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013654Z:96256bf7-8459-4c22-8b74-a5338daf9dd4" ], + "x-ms-correlation-request-id": [ "ce33e0ee-b1fc-47d8-b0c0-5da35b207fb4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233810Z:ce33e0ee-b1fc-47d8-b0c0-5da35b207fb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED65DCF03B714EF59F9CB1F1DA92A58C Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99231C0C34314C17A86D466FCCBF0BD3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62127,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62127\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:37:39.73\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -8544,7 +8544,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "395" ], - "x-ms-client-request-id": [ "915186d2-3ebb-4607-9fca-076649f91684" ], + "x-ms-client-request-id": [ "b919e038-0c5c-431d-a767-faa12605afdf" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8559,36 +8559,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "31019884-7fe0-4a98-8d1d-32c49b3564ad", "b22c71f3-4f12-4afc-8ea5-7ee3f1d7db6d", "fb36a78b-eea7-4e8a-9eb2-a4b3492ba422" ], + "x-ms-original-request-ids": [ "59b85ee9-1aae-4c49-a856-f3da2860fa67", "dbd97e4d-7b5a-4ab9-bff7-35f04dc289a4", "12926d95-b53f-4da9-9e2e-25f19f8f01fa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "73db5d71-9ca1-4292-8871-0ce4053aeee3" ], - "x-ms-correlation-request-id": [ "73db5d71-9ca1-4292-8871-0ce4053aeee3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013655Z:73db5d71-9ca1-4292-8871-0ce4053aeee3" ], + "x-ms-request-id": [ "c6316a4c-5f77-423b-bafd-2b8176936d62" ], + "x-ms-correlation-request-id": [ "c6316a4c-5f77-423b-bafd-2b8176936d62" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233812Z:c6316a4c-5f77-423b-bafd-2b8176936d62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA93ABCD31D740DBBBA472731AD00A1F Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1740964778D49359FFF2BEF5E77AF80 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsnodesystemidentity8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsnodesystemidentity8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "396" ], - "x-ms-client-request-id": [ "f906fe2c-7aa8-44ff-9918-14470e1a3290" ], + "x-ms-client-request-id": [ "d67e11f0-8fec-4663-b42a-23524d985760" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8603,31 +8603,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "403efc67-7072-4a54-83c7-c089b5847401" ], + "x-ms-request-id": [ "a8241ad8-a91b-49da-826d-d838e47777e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/db06a19b-efe2-445c-a43f-e33a5236bd9c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/93226ff5-82d4-493a-9d29-53197f6b6d9b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "95dc2b21-e7e6-408e-9b81-5570f24020cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013656Z:95dc2b21-e7e6-408e-9b81-5570f24020cd" ], + "x-ms-correlation-request-id": [ "20a5d14e-282d-4b51-9774-815851bb3c10" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233812Z:20a5d14e-282d-4b51-9774-815851bb3c10" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 996D1AFD3EDC439FB36CC20416B2E36E Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 858A1BD4B73A468C92C71B6608A6AD72 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:5e2d74ec-201e-0047-5c07-55925a000000\\nTime:2025-11-14T01:36:56.3623031Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:7692519b-501e-0044-68bf-55af5f000000\\nTime:2025-11-14T23:38:12.5460577Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsnodesystemidentity8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsnodesystemidentity8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -8642,25 +8642,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231E4C626BEC\"" ], - "x-ms-request-id": [ "611d92c5-ba82-4d1c-8971-a2a583ad277c" ], + "ETag": [ "\"0x8DE23D6E0A0A3A3\"" ], + "x-ms-request-id": [ "bcc3c9d3-33b1-43f1-afc5-605e54b13f48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/640b8009-84b7-43a7-bb8c-fea3c1c7a3ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4635bd8a-572b-412b-b3b3-478239a2ca64" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "789bca4f-d5fe-41f8-a660-6a0f77eac9b6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013657Z:789bca4f-d5fe-41f8-a660-6a0f77eac9b6" ], + "x-ms-correlation-request-id": [ "97f2d196-0cb8-46b9-83e5-34411a548c3e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233813Z:97f2d196-0cb8-46b9-83e5-34411a548c3e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30D95E939ACD42E099A44E3E3392C4AB Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 471B951581F44B9DB7B375C5AF9EA346 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "460" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/blobServices/default/containers/app-package-functionsnodesystemidentityfqti-0000000\",\"name\":\"app-package-functionsnodesystemidentityfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/blobServices/default/containers/app-package-functionsnodesystemidentity8wks-0000000\",\"name\":\"app-package-functionsnodesystemidentity8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -8672,7 +8672,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "5603eb3e-f037-4b33-ac70-7780480e0af2" ], + "x-ms-client-request-id": [ "4d8dfe4a-25b9-4477-a289-7204cfb46b10" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8687,36 +8687,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "17f49201-d8df-4c96-8460-95afe1c32dd3", "177dda49-e7b3-4c0c-a179-b2bb3d6802df", "dbbe66f0-4031-4124-b116-96eb95847af5" ], + "x-ms-original-request-ids": [ "50bfae1c-5c90-47d5-b3f5-33d0a263375f", "3ec6f034-d0f8-41b6-9125-31a944b2deaa", "edd244ce-31e4-45f7-a804-c41e9ea111ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "adab1313-ab70-4f85-946d-69369c03ff9b" ], - "x-ms-correlation-request-id": [ "adab1313-ab70-4f85-946d-69369c03ff9b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013658Z:adab1313-ab70-4f85-946d-69369c03ff9b" ], + "x-ms-request-id": [ "cb188fba-a364-47d7-9531-5c690a232a08" ], + "x-ms-correlation-request-id": [ "cb188fba-a364-47d7-9531-5c690a232a08" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233813Z:cb188fba-a364-47d7-9531-5c690a232a08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99641BED7067466AB061718E61C16A32 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B994BCF5E5FB45A0BE529907B4C465A9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "bc3b5dc9-0b49-472b-9a1e-06f66b0e4738" ], + "x-ms-client-request-id": [ "58249223-58fb-445c-b741-50b5ce0f4795" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8731,30 +8731,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "32e2bd53-0e7d-42f1-af63-5ac6b9584fed" ], + "x-ms-request-id": [ "d59b38ec-3bd8-40c5-b19f-0bd4d155fae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e9324b32-095f-45de-a564-ac52b64ba294" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b019ee96-9b49-4e91-91ae-210302beb409" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "27c3f3fc-16f4-4830-bf96-6c6a6c552fec" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013658Z:27c3f3fc-16f4-4830-bf96-6c6a6c552fec" ], + "x-ms-correlation-request-id": [ "e5ac3702-9e95-4d7c-a696-6eaf10c6fcd2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233814Z:e5ac3702-9e95-4d7c-a696-6eaf10c6fcd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75F55458504B4C6BB1E4CC019C6DDAB2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:36:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8D79219715C490A87D01821C00C77F7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"pSHOojsFN8q+Tack0Fyxk5X3kWIJdkDnZL3UplBajtACJ9TH98k15kf8peL/uAMEC2CVnaF8FTeG+AStB2gFug==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"HPx4RMmDLBazm1divQFiA4722BK9DJxgwjCVxQ3ohY8EXNVhnRjR9v23ZM4WtwWlx4056+GzeedG+AStbFJshQ==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-fqti?api-version=2015-05-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-8wks?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -8774,30 +8774,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/aaf3bb0c-89ab-4791-b9a2-f1ffbdf4cc69" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/69136492-6e75-4706-8f30-7fd5e24d247d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "91841e29-a9af-485a-90bc-cc860467e065" ], - "x-ms-correlation-request-id": [ "91841e29-a9af-485a-90bc-cc860467e065" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013711Z:91841e29-a9af-485a-90bc-cc860467e065" ], + "x-ms-request-id": [ "e8dfdc23-98ed-4eab-bfa2-1e14dd44345b" ], + "x-ms-correlation-request-id": [ "e8dfdc23-98ed-4eab-bfa2-1e14dd44345b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233828Z:e8dfdc23-98ed-4eab-bfa2-1e14dd44345b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07488BEBD2224D518691F565B724D87D Ref B: MWH011020806052 Ref C: 2025-11-14T01:36:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:37:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F63BE9F4F0014C64942C6FAACB87F3C2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"78031fa7-0000-0200-0000-691687c70000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Node-SystemIdentity-fqti\",\r\n \"name\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"AppId\": \"269d91da-c89b-4f48-ae9b-b80601d7c805\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a1b15bef-4df1-46f5-8ef7-d8e8f302abca\",\r\n \"ConnectionString\": \"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\",\r\n \"Name\": \"Functions-Node-SystemIdentity-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:37:01.0199716+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-fqti_269d91da-c89b-4f48-ae9b-b80601d7c805_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-fqti-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\": \"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\r\n \"name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"AppId\": \"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"72f873d8-e77f-4cd1-b81b-333b88113567\",\r\n \"ConnectionString\": \"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\r\n \"Name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:38:16.9557851+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-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8811,39 +8811,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550735C0D1B5\"" ], + "ETag": [ "\"1DC55BFCA3F4ED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5bafb3a9-5c4c-468d-ac97-f993abe2eaad" ], + "x-ms-request-id": [ "f8f6537e-ade7-4294-8f91-478e89c29aad" ], "X-AspNet-Version": [ "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/55ab2d77-92d5-4d86-808c-906abd12f3e5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ee1937c0-e013-4d66-8c32-0f08f5ba22c1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "47365367-4d0b-47d4-b988-1da2094acab7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013737Z:47365367-4d0b-47d4-b988-1da2094acab7" ], + "x-ms-correlation-request-id": [ "fbd77c42-1e5f-4b2c-88c5-245d0395d7b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233854Z:fbd77c42-1e5f-4b2c-88c5-245d0395d7b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21AECDCEB93B408184DCA2EE41BBC253 Ref B: MWH011020806052 Ref C: 2025-11-14T01:37:11Z" ], - "Date": [ "Fri, 14 Nov 2025 01:37:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C50A651F34349379EF2884DAD82E3D6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:38:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:38:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9709" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:16.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Node-SystemIdentity-8wks\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\",\"functions-node-systemidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:38:32.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-8wks\\\\$Functions-Node-SystemIdentity-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-node-systemidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"5e857737-009d-47c8-93f4-a583e981abc5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "402" ], - "x-ms-client-request-id": [ "0677798c-8a66-40b1-8906-252ebe9ff446" ], + "x-ms-client-request-id": [ "bfdcb8f1-5fd6-45ab-aff0-f61967a4f089" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8857,38 +8857,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550741B5BB75\"" ], + "ETag": [ "\"1DC55BFD674D10B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b331b179-d568-4e31-ba5a-9c890694b9be" ], + "x-ms-request-id": [ "6ec30959-d80a-4075-98d2-b81f665c0ec4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "33370161-9ea3-4941-8acd-e7c28dbeb4e1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013807Z:33370161-9ea3-4941-8acd-e7c28dbeb4e1" ], + "x-ms-correlation-request-id": [ "5998657e-f222-4e08-8384-fcb0c886b544" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233924Z:5998657e-f222-4e08-8384-fcb0c886b544" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E53F853EEA3548D8816E2339C5CF37DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AFF5B97DD4E4A9EA740BE88ADFB9625 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Node-SystemIdentity-8wks\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\",\"functions-node-systemidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:38:53.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-8wks\\\\$Functions-Node-SystemIdentity-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-node-systemidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5e857737-009d-47c8-93f4-a583e981abc5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "403" ], - "x-ms-client-request-id": [ "f2676eb9-cb92-4900-af27-fcd73145e9e6" ], + "x-ms-client-request-id": [ "3e2b963e-e89e-434a-addd-eedde508d5e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8903,38 +8903,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550741B5BB75\"" ], + "ETag": [ "\"1DC55BFD674D10B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3825911d-648b-4342-8e4a-98329ee52e72" ], + "x-ms-request-id": [ "c11346a9-b3ad-415c-bc36-5994a92e2e7a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "797a9936-f0ef-4436-9705-6f9601ec44b7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013808Z:797a9936-f0ef-4436-9705-6f9601ec44b7" ], + "x-ms-correlation-request-id": [ "3eb28bec-21fa-4610-adb7-e2de01f8bfa0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233925Z:3eb28bec-21fa-4610-adb7-e2de01f8bfa0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 862F4605418F47A8887F12DE9AC6083F Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B39F2754EAB043FA84E52652FBF06DC9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Node-SystemIdentity-8wks\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\",\"functions-node-systemidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:38:53.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-8wks\\\\$Functions-Node-SystemIdentity-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-node-systemidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5e857737-009d-47c8-93f4-a583e981abc5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "404" ], - "x-ms-client-request-id": [ "7a069502-8f86-4688-8a9e-2de346364aab" ], + "x-ms-client-request-id": [ "a82b33ac-a33b-4d6f-81c4-3e8d456f5be6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8950,36 +8950,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a6d7aa5-30d2-4a40-9593-9f1b3f219da5" ], + "x-ms-request-id": [ "0c49628e-41a0-45e2-9d20-b5102059ff93" ], "X-AspNet-Version": [ "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/1c330f1b-8a74-47bd-aad3-325df136fdeb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/182469b6-e19d-4e51-b202-b370cbc9d783" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f5be1586-8671-4fc4-bc5a-87cf0f0bd7a3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013808Z:f5be1586-8671-4fc4-bc5a-87cf0f0bd7a3" ], + "x-ms-correlation-request-id": [ "593b868e-253e-45b7-a43e-0d4ab90b933d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233925Z:593b868e-253e-45b7-a43e-0d4ab90b933d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B6426E03BEA45FAAB27EEE611F793BC Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9758365FE70A4A45B025ECDF761202B0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "405" ], - "x-ms-client-request-id": [ "b4222885-35a8-4aa2-a0c0-94cedc5a665f" ], + "x-ms-client-request-id": [ "cfd64343-9959-44d2-8757-22b2c4d7c783" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8995,37 +8995,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a10a5bd-fdf7-48b5-8e54-77772f7b5475" ], + "x-ms-request-id": [ "196fb4eb-f570-4a11-a0c5-b8f7b60a2ec4" ], "X-AspNet-Version": [ "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/2cbc97c2-f0f0-41c2-a111-ad54f997ea7e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/686fda24-c4df-431d-8d08-9c4cd71b4c73" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "246bdd15-b3cd-4d86-aa74-b1e50dcc96a5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013808Z:246bdd15-b3cd-4d86-aa74-b1e50dcc96a5" ], + "x-ms-correlation-request-id": [ "5716cf81-f211-4d57-95b9-5b366b10ed6c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233925Z:5716cf81-f211-4d57-95b9-5b366b10ed6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BB7544A61FC4996A8EE942B45B44FA9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 943B6FE64ABB454AB4868119E4D1D57C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"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\":39201,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"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\":39265,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "406" ], - "x-ms-client-request-id": [ "620e0675-64bf-4957-8ef0-c24c99c1abe4" ], + "x-ms-client-request-id": [ "1c9d6f30-18a6-4bf5-b5d8-72fd6929a73e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9041,36 +9041,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "717b4772-2410-4299-b6c4-4dbe73963d8c" ], + "x-ms-request-id": [ "a013b114-1d7e-40da-a0cb-268551340c44" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9cf68621-bb0c-4b83-b8be-852f818f372a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013809Z:9cf68621-bb0c-4b83-b8be-852f818f372a" ], + "x-ms-correlation-request-id": [ "b988ec5d-5c8d-4391-9d2c-8fe11d407b5e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233926Z:b988ec5d-5c8d-4391-9d2c-8fe11d407b5e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 545C73D00896492894CB2113C6D9B939 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71B1D29A293B4F50AF894F0784E8441D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62127,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62127\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:37:39.73\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "407" ], - "x-ms-client-request-id": [ "cbbe3b6a-b16d-41c6-9711-cfab78b3f5ed" ], + "x-ms-client-request-id": [ "078db38d-cdc9-486e-a01d-ec346240292a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9086,36 +9086,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "04bc1596-16ec-4771-b7e0-db0f450b7948" ], + "x-ms-request-id": [ "33017428-06b4-4081-a931-740490b6c155" ], "X-AspNet-Version": [ "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/91c3750c-1d86-4601-9136-650f6eb8ecc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/76e10789-8063-44a7-bdb3-d8c8f37ce318" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "678ec9e5-3f52-4e5d-a506-b846709ae40b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013809Z:678ec9e5-3f52-4e5d-a506-b846709ae40b" ], + "x-ms-correlation-request-id": [ "10f81a34-5b30-4b25-b022-7683a5b3838b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233926Z:10f81a34-5b30-4b25-b022-7683a5b3838b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF90128CAE3342AF98F126F285C4A160 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EBDB17E84CF4555BB7AF95667E2676E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "408" ], - "x-ms-client-request-id": [ "5acd5931-bb51-495f-8b10-ee862d683927" ], + "x-ms-client-request-id": [ "2c7bec2f-106a-487c-82dc-6fefeed74635" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9130,38 +9130,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550741B5BB75\"" ], + "ETag": [ "\"1DC55BFD674D10B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1e74463-b7ac-45bb-865a-9639f51843b0" ], + "x-ms-request-id": [ "732a1979-fb8d-4c20-9558-282e8b9fae48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1a457dd-2525-4a85-82c9-7b7f0df5e533" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013810Z:c1a457dd-2525-4a85-82c9-7b7f0df5e533" ], + "x-ms-correlation-request-id": [ "0ebd80c1-8ff9-47ec-982a-f2e33923b967" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233927Z:0ebd80c1-8ff9-47ec-982a-f2e33923b967" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6695072A172E437B892AA1A191E264E8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 60FD974C3C3D4217A1BAA487D9A9FFC0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Node-SystemIdentity-8wks\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\",\"functions-node-systemidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:38:53.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-8wks\\\\$Functions-Node-SystemIdentity-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-node-systemidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5e857737-009d-47c8-93f4-a583e981abc5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "409" ], - "x-ms-client-request-id": [ "b4e189cd-e9dc-4d03-945a-e774789abb42" ], + "x-ms-client-request-id": [ "8c30777a-a82a-407e-b372-9b6c3ac6c826" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9177,36 +9177,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "489f28dc-e8c9-4035-8d47-5eb5b0bd4320" ], + "x-ms-request-id": [ "5a9e746d-65d4-4070-88cd-e4c05cd22547" ], "X-AspNet-Version": [ "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/2ae2237c-f5f6-4bb4-90b9-3d27f00677f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f6c67b63-b730-4883-92bc-3c3b38573036" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "eda80619-09ac-48da-9952-4b173feddbe1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013810Z:eda80619-09ac-48da-9952-4b173feddbe1" ], + "x-ms-correlation-request-id": [ "5e9a0084-0ec0-4704-94d7-9dbcff67391f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233927Z:5e9a0084-0ec0-4704-94d7-9dbcff67391f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76C51C55262D43DBB070F27064413169 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9AD823DBD39C4C45816DC407A85A0035 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "410" ], - "x-ms-client-request-id": [ "a9bce7be-57f2-438c-8156-98325c5c4175" ], + "x-ms-client-request-id": [ "4eae33c2-8d63-4bc2-95b7-f011e2c07bcc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9222,37 +9222,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32b100cf-408b-4aaa-b1a3-b7bcb1eb8283" ], + "x-ms-request-id": [ "e88c3c54-44a5-465f-87ee-bb9435f3ae19" ], "X-AspNet-Version": [ "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/3055745a-e36c-41c1-aa1a-1fe30b5bab78" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b1e941b1-b7f6-44b5-86de-4f4a564d48bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bc8e5ffe-72c8-46eb-87ae-36e50756db88" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013811Z:bc8e5ffe-72c8-46eb-87ae-36e50756db88" ], + "x-ms-correlation-request-id": [ "26e2fd55-9db1-480a-97bb-f6f3c7bb1cb7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233928Z:26e2fd55-9db1-480a-97bb-f6f3c7bb1cb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C3E107B513B42958B9FA4E7A09EBCC2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4459989EE79A4449B9A85BAC6034954C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:27Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"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\":39201,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"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\":39265,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "b8bd273b-2541-48d4-912e-b62d8859cb4f" ], + "x-ms-client-request-id": [ "26e24aea-75ad-4a02-a45a-0770e228e829" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9267,38 +9267,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550741B5BB75\"" ], + "ETag": [ "\"1DC55BFD674D10B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2df6fc67-6c2e-4ef4-9fca-260f4f0cf4af" ], + "x-ms-request-id": [ "fb7db5f7-24cf-4bd8-a144-03b79dee594f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d2ea383a-e9d2-4c19-bddb-3d39881855fa" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013811Z:d2ea383a-e9d2-4c19-bddb-3d39881855fa" ], + "x-ms-correlation-request-id": [ "820109bc-32a6-4c92-b63a-59e7bbdf43e3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233928Z:820109bc-32a6-4c92-b63a-59e7bbdf43e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE9113F5DC6746C8BFAF89A70EE012FA Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:11Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4181C66969049F7ADEDE4D984BFCD55 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9691" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Node-SystemIdentity-fqti\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-fqti.azurewebsites.net\",\"functions-node-systemidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:37:36.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexappnodesafqti.blob.core.windows.net/app-package-functionsnodesystemidentityfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-fqti\\\\$Functions-Node-SystemIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-node-systemidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d4c656ec-01f4-4878-80cd-f446a3e1bfd5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Node-SystemIdentity-8wks\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-8wks.azurewebsites.net\",\"functions-node-systemidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:38:53.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-8wks\\\\$Functions-Node-SystemIdentity-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-node-systemidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5e857737-009d-47c8-93f4-a583e981abc5\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "9ba7eb0f-766a-4576-a2c5-5f5109091f58" ], + "x-ms-client-request-id": [ "97b51fbf-0b7c-46f0-8611-660a626b7074" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9314,36 +9314,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "627a0e5b-ee83-477a-9f29-da6a460e01b4" ], + "x-ms-request-id": [ "3a615b31-b33b-4b16-b02a-9e1142eea4b5" ], "X-AspNet-Version": [ "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/4baa6c1e-f4be-4149-9563-78ff01953251" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/069a34e8-81a3-4607-b030-4ae76ed3015c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c2d6249b-c91b-47e9-9e42-ca79673e4827" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013811Z:c2d6249b-c91b-47e9-9e42-ca79673e4827" ], + "x-ms-correlation-request-id": [ "976649e3-d881-4462-9e16-cafb303a47c5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233928Z:976649e3-d881-4462-9e16-cafb303a47c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB7030C0738448B39C2453A3806132BB Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:11Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5DAF8F42055419ABF20D4C121E00C6A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:28Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesafqti;AccountKey=Znyvi2kTjYGFepfB8HCSpoD60yhcmjBN83EWMgu52Nz2PvR4WjEkzjIS9pSm92tphIKcqt1leB7l+AStNdEetA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "1f477b8b-a89a-4f26-a3ee-7f0ce67f3361" ], + "x-ms-client-request-id": [ "12fa51ba-542e-40ee-ba43-3a8d2c5fc129" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9359,37 +9359,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1327cd4c-ae26-4425-a5a4-864ded74835e" ], + "x-ms-request-id": [ "0f8839e7-3149-46e4-bcb0-26d033f5147f" ], "X-AspNet-Version": [ "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/82c2601a-bc8f-4fb6-8c1a-f27a8dff85d7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "29038fd0-2769-47f0-8738-8f4b6cec3e39" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013812Z:29038fd0-2769-47f0-8738-8f4b6cec3e39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2a0008f8-2d75-4c89-9f22-0fb61fd32879" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0f713631-576f-4b9c-81b8-96c5796e3236" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233929Z:0f713631-576f-4b9c-81b8-96c5796e3236" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1780070C353840A4A5872F01BA9B4329 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:12Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9FF3ADCD87ED463BA7867758FFFEDB3A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti/config/web\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"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\":39201,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/web\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"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\":39265,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "414" ], - "x-ms-client-request-id": [ "fbdb15f5-f50b-4d4c-8148-458cf44f5943" ], + "x-ms-client-request-id": [ "d0732e53-48bc-4497-9787-353c60ac625a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9405,36 +9405,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc99f662-919a-42e9-bb7f-41075c40a3e7" ], + "x-ms-request-id": [ "400889bb-db5a-4a58-9321-2e00a37906d3" ], "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": [ "60d61264-0585-4f9d-bd7d-e67f7e759376" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013812Z:60d61264-0585-4f9d-bd7d-e67f7e759376" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d3543e78-01b8-48d9-9d17-5d12a11d4263" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233929Z:d3543e78-01b8-48d9-9d17-5d12a11d4263" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 173E1C6864D645F48B31637A4AA3F47B Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:12Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3447451156444EDB3CBE2C74D40DA3E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62037,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:36:23.45\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62127,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62127\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:37:39.73\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "415" ], - "x-ms-client-request-id": [ "2e4e126c-1ff1-4866-85a0-b37a019b199e" ], + "x-ms-client-request-id": [ "e792c9d4-d08e-4c53-a469-53f15b585e07" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9449,20 +9449,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550741B5BB75\"" ], + "ETag": [ "\"1DC55BFD674D10B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6af957a9-c794-4058-8295-b86944efca39" ], + "x-ms-request-id": [ "d68bac6e-e536-4fb4-919d-a98ee8f22f17" ], "X-AspNet-Version": [ "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/3a558e68-6acb-4321-9b99-1dcd8b0c0921" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0f90b8f1-18d9-4a9f-89a0-48271c8b5989" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "85386ce9-8374-4856-8564-aef806b20980" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013827Z:85386ce9-8374-4856-8564-aef806b20980" ], + "x-ms-correlation-request-id": [ "a288e138-fe31-4fc1-95d9-fc1569b19f74" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233946Z:a288e138-fe31-4fc1-95d9-fc1569b19f74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8D27120D28644159D2B2524471C363B Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:12Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CBCF541D9764F53A511D78A30A706B4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9476,7 +9476,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9491,18 +9491,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2fb0314a-bc05-4ce5-8573-04bf22faea3e" ], + "x-ms-request-id": [ "66cd49b6-e1d5-4cf3-b7aa-3697a0c80644" ], "X-AspNet-Version": [ "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/bd125045-36f2-4d96-b0cb-2d771dc4c72a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bf613f80-7322-4249-ab47-f4ce669a226d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c18adf24-fdf0-4edb-a5ef-4a26046c8f48" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013828Z:c18adf24-fdf0-4edb-a5ef-4a26046c8f48" ], + "x-ms-correlation-request-id": [ "20b6c2f3-ca35-4061-a7f5-df09f0dfcc00" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T233947Z:20b6c2f3-ca35-4061-a7f5-df09f0dfcc00" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB1A3D13E3AF4AC3834D1254684747C6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE0304ABA1E540F0AEB9C319E8F02AE9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9513,10 +9513,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -9532,38 +9532,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "400e09ba-cc2c-49db-a688-69d3610227ef" ], + "x-ms-request-id": [ "55d464e6-21f7-4f3d-9e15-a299d0e5186c" ], "X-AspNet-Version": [ "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/48423e2b-e03f-4366-bd1b-570dd903c471" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/34dd963b-ac5c-4445-8c57-fa029d69e162" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "0e46d89b-8545-4398-a54d-88f5bbb8d6e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013833Z:0e46d89b-8545-4398-a54d-88f5bbb8d6e7" ], + "x-ms-correlation-request-id": [ "2a62dc3c-ce47-4541-a3cc-e54ba38ac514" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T233951Z:2a62dc3c-ce47-4541-a3cc-e54ba38ac514" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0573B1F5B5D14569BD7D834047642877 Ref B: MWH011020806052 Ref C: 2025-11-14T01:38:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:38:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC9641C6B87C48F2A21586371F25047E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:39:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:39:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1901" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"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-14T01:38:33.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52644,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52644\",\"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-14T23:39:51.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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "419" ], - "x-ms-client-request-id": [ "8847fe45-f982-4792-b4f5-43eb60ede3e1" ], + "x-ms-client-request-id": [ "27a50bd1-edaf-46d6-966e-140a06abfab1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9578,37 +9578,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30bbdb8b-69e0-43e2-894f-0d0032555cf9" ], + "x-ms-request-id": [ "803ea1c9-8e77-48a8-9e5f-b359e803959c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f28b0759-fcc2-4610-87c9-23622a65b416" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013904Z:f28b0759-fcc2-4610-87c9-23622a65b416" ], + "x-ms-correlation-request-id": [ "357693ca-aa92-46cd-8c9c-2c1b8df6cbc0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234022Z:357693ca-aa92-46cd-8c9c-2c1b8df6cbc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E5BE74F182A4DD4BAA3B6EFE886141B Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B98225FB3E6045A9BAB9B0C9FDFAE882 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52644,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52644\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:39:51.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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "8847fe45-f982-4792-b4f5-43eb60ede3e1" ], + "x-ms-client-request-id": [ "27a50bd1-edaf-46d6-966e-140a06abfab1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9623,24 +9623,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce34daa0-3ec3-4d76-acc1-9f3a15a92b1e" ], + "x-ms-request-id": [ "59967822-362c-4989-af65-3902c0ea5ccc" ], "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": [ "d03d3d12-317b-433e-8a4a-a999fd59004a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013904Z:d03d3d12-317b-433e-8a4a-a999fd59004a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9d8681c9-d4b0-4af0-bbe0-06dd953c3e9d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234022Z:9d8681c9-d4b0-4af0-bbe0-06dd953c3e9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 695C56682E964E45A286010464B13E78 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DEF065AEDA64EC4B524F0E37CDCF83A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52644,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52644\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:39:51.5966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -9652,7 +9652,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "13a508fd-cd86-47c4-9e27-6ca19ee8128f" ], + "x-ms-client-request-id": [ "5a9d558a-75a5-4000-be0e-6438ce08111b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9667,36 +9667,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4de9ce12-aff7-4cb9-85f2-da7c3cd459f4", "8006b9b9-92c5-4260-b75b-826aafeebb8e", "41630d67-5830-4579-a47a-fcf788e97101" ], + "x-ms-original-request-ids": [ "cab5577e-2cd9-4943-bac7-18256d438641", "d18bb21b-9dfc-4caa-8e57-5af02b54b7ff", "f2c79367-1714-486c-ad59-920beee36707" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5ad1dd6b-7642-4420-a717-19452f4ba313" ], - "x-ms-correlation-request-id": [ "5ad1dd6b-7642-4420-a717-19452f4ba313" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013905Z:5ad1dd6b-7642-4420-a717-19452f4ba313" ], + "x-ms-request-id": [ "932efe96-a080-4c77-8a26-9ae717bca1c7" ], + "x-ms-correlation-request-id": [ "932efe96-a080-4c77-8a26-9ae717bca1c7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234023Z:932efe96-a080-4c77-8a26-9ae717bca1c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B249C218D4B64F3281C64F2F07BD2D6B Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:04Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 317FD33A107A4EB79B99396781BA2F2A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "422" ], - "x-ms-client-request-id": [ "ce60d2c7-6e8b-4cf4-913f-b1a3da33659f" ], + "x-ms-client-request-id": [ "bb661563-7048-4ca7-ab5c-03fecc4b1912" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9711,31 +9711,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "53d90fd8-56b7-4b42-b01c-3d0faed5f1f2" ], + "x-ms-request-id": [ "0853c458-6e20-487d-8f5e-39164d2a0ef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e5d64ec6-79b7-47c6-a4e2-5c03a39fce7f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f907c87e-df68-4659-a0c7-93810774726e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4bd1034c-7b55-4ce6-9244-884d8ce09378" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013905Z:4bd1034c-7b55-4ce6-9244-884d8ce09378" ], + "x-ms-correlation-request-id": [ "bfcf423f-9f7f-4bec-93b1-b38127a6f7cc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234024Z:bfcf423f-9f7f-4bec-93b1-b38127a6f7cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C820B1BB1044D9F99ED80711ED57D48 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E69ABD2712B4EE6B58B63C68D89E623 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:b1cd3289-301e-0066-5107-55210b000000\\nTime:2025-11-14T01:39:05.6559098Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:700020a9-e01e-0012-15c0-559f69000000\\nTime:2025-11-14T23:40:24.0378076Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -9750,37 +9750,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231E99751E2A\"" ], - "x-ms-request-id": [ "c5b50143-38fe-4b88-8fe8-db91236e7a59" ], + "ETag": [ "\"0x8DE23D72EFC4F22\"" ], + "x-ms-request-id": [ "3bffeafd-7ecb-472b-ab8c-0ed93fb11f52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8ec26aba-764b-4a04-b141-a25c13ad55fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/15af26ea-285c-4cdc-986e-3324fd343444" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3071491c-6459-42d7-ae08-5f024fe8bd8e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013906Z:3071491c-6459-42d7-ae08-5f024fe8bd8e" ], + "x-ms-correlation-request-id": [ "5a4e099a-a839-45bb-b172-f22c50b9d632" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234024Z:5a4e099a-a839-45bb-b172-f22c50b9d632" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4320E9D6D7C84F259588D31C27E11D12 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:05Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73745E8888B949C2B708D16D1D188844 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "468" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000\",\"name\":\"app-package-functionspwshuserassignedidentit-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti?api-version=2018-11-30+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks?api-version=2018-11-30+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti?api-version=2018-11-30", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks?api-version=2018-11-30", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "424" ], - "x-ms-client-request-id": [ "5adf3727-6337-4b8e-bf28-3a6769bdce53" ], + "x-ms-client-request-id": [ "5e56e649-a4ef-4df9-9fa2-f9265d8451d2" ], "CommandName": [ "Az.Functions.internal\\Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9798,20 +9798,20 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e44706f1-b32a-4828-bc5b-b1e47b48274a" ], - "x-ms-correlation-request-id": [ "e44706f1-b32a-4828-bc5b-b1e47b48274a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013906Z:e44706f1-b32a-4828-bc5b-b1e47b48274a" ], + "x-ms-request-id": [ "6dd18cb6-2cdd-4acd-9418-139ebc4bfc80" ], + "x-ms-correlation-request-id": [ "6dd18cb6-2cdd-4acd-9418-139ebc4bfc80" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234025Z:6dd18cb6-2cdd-4acd-9418-139ebc4bfc80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9616EB16FFF49AF875085082DABE889 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5ECCA64327B64039A1522E8B23AF7C9C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "466" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"name\":\"my-flex-app-uai-fqti\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}", + "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\",\"name\":\"my-flex-app-uai-8wks\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"505c3830-c2b6-469b-b4a8-2fd6a6d49baa\",\"clientId\":\"fd4d02c5-7641-4da1-a89a-769cdb50014b\"}}", "isContentBase64": false } }, @@ -9823,7 +9823,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "001238c8-f51c-4bf8-a8bb-44f351216d0e" ], + "x-ms-client-request-id": [ "f1653ec0-2d68-44bd-80ec-ef7247c2218d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9838,36 +9838,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7d7522ad-7123-4ad8-a184-aa0b7d854cec", "1f164fc1-1b08-4c34-995d-1b737ae2970c", "27464a37-dd72-4879-9de7-599f72bae75e" ], + "x-ms-original-request-ids": [ "bf5ad0b0-d75f-4e96-b17b-59dbf936e138", "caf8c30e-5af4-497b-8de2-dd41e39d20d8", "f30fca8d-3739-4673-b931-13708b01f234" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4cb5ea4e-0e94-4101-9349-aec0e3e0ea82" ], - "x-ms-correlation-request-id": [ "4cb5ea4e-0e94-4101-9349-aec0e3e0ea82" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013907Z:4cb5ea4e-0e94-4101-9349-aec0e3e0ea82" ], + "x-ms-request-id": [ "9d69aa5a-2afd-4ec5-9df2-9f405982d08a" ], + "x-ms-correlation-request-id": [ "9d69aa5a-2afd-4ec5-9df2-9f405982d08a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234025Z:9d69aa5a-2afd-4ec5-9df2-9f405982d08a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5AEC079796E4B9E93369AA406CCCD3F Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFFC3D62A7734C1B8D996446ADD58724 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "d73c03a8-2b10-4350-bfd0-f043f7e5ac7a" ], + "x-ms-client-request-id": [ "5a09d791-3538-4bed-a83f-0b95e3c3b7e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9882,30 +9882,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ac7d1ee0-77fd-4189-a4a5-54a7fd291070" ], + "x-ms-request-id": [ "4c047c88-403f-44ee-9e16-a1d75bf9cc7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5191ec04-a1e2-47c3-85df-a35bfbaf623d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/45297ae2-f1da-44bd-9d70-e01960a60a54" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b25f56ee-4145-448a-bb10-3e1d92826c25" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T013907Z:b25f56ee-4145-448a-bb10-3e1d92826c25" ], + "x-ms-correlation-request-id": [ "955c8763-618b-4328-b9fb-ea0d9937a0d7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234026Z:955c8763-618b-4328-b9fb-ea0d9937a0d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17670B3401B34D47B193C38278918039 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4D84C38BF0F4C3582D995592B2248C4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2015-05-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -9925,30 +9925,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/36bb0163-3bce-4cef-99d4-f8c0b8e5479d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bc4d85c5-21d5-492c-afe1-4f794dce5404" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "a7a6f823-15f9-4399-8361-4af72f516a67" ], - "x-ms-correlation-request-id": [ "a7a6f823-15f9-4399-8361-4af72f516a67" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013920Z:a7a6f823-15f9-4399-8361-4af72f516a67" ], + "x-ms-request-id": [ "4f5125ac-4f74-4beb-bbbe-7610960dff61" ], + "x-ms-correlation-request-id": [ "4f5125ac-4f74-4beb-bbbe-7610960dff61" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234040Z:4f5125ac-4f74-4beb-bbbe-7610960dff61" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCB3283567A34785BD7F6D1B2D1AF03A Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA79F679B0F64E3AA48358FAE14EFFC3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:40:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1696" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"780384ae-0000-0200-0000-691688480000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"AppId\": \"4eae3893-4654-43e2-94cf-9c61db1775ec\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c59dec64-225e-4f2a-9c2b-65004cec61ca\",\r\n \"ConnectionString\": \"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:39:10.2457191+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-fqti_4eae3893-4654-43e2-94cf-9c61db1775ec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-fqti-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\": \"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"AppId\": \"6496531f-759a-4e89-9157-c2dd51765c50\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\r\n \"ConnectionString\": \"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:40:27.9512322+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-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsafqti.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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"\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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa8wks.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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"\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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9962,39 +9962,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550781B59A4B\"" ], + "ETag": [ "\"1DC55C0183FFA00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "111e727e-1d2a-4abc-9d83-a9691436a18e" ], + "x-ms-request-id": [ "fa183bf0-9e35-4d2d-8e2d-1bd579089655" ], "X-AspNet-Version": [ "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/fa925d70-d9b1-4377-8b0c-c4fd72fb7e67" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5b67b7e4-c6ba-412a-ba0c-d9286c72ead5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "61e41a57-806d-482a-ad16-edc2de2e56b0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T013947Z:61e41a57-806d-482a-ad16-edc2de2e56b0" ], + "x-ms-correlation-request-id": [ "259d9220-ec3a-492c-83ec-1c239f03f3ed" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234104Z:259d9220-ec3a-492c-83ec-1c239f03f3ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B04EC478553466B85AA6BE7AB551322 Ref B: MWH011020806052 Ref C: 2025-11-14T01:39:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:39:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72F488F2AAB54D099B10E9AA7B70902D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:40:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10171" ], + "Content-Length": [ "10169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:23.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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"functions-pwsh-userassignedidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:40:43.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\",\"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-8wks\",\"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-8wks\\\\$Functions-Pwsh-UserAssignedIdentity-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\":{\"principalId\":\"505c3830-c2b6-469b-b4a8-2fd6a6d49baa\",\"clientId\":\"fd4d02c5-7641-4da1-a89a-769cdb50014b\"}}}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "4fe47dcb-d644-44ed-b604-7aa79f774579" ], + "x-ms-client-request-id": [ "3339508f-bc6b-45b2-ade0-6ffa0a1ea49e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10008,38 +10008,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55078F1E5255\"" ], + "ETag": [ "\"1DC55C024587E55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84062b76-6d61-4967-bd7e-85b0d379c784" ], + "x-ms-request-id": [ "a0e3341e-fd4f-42d7-9894-3ba77a2d2f86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b7c3d854-1387-4f91-82a2-9becc6bd3607" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014017Z:b7c3d854-1387-4f91-82a2-9becc6bd3607" ], + "x-ms-correlation-request-id": [ "bc7d3f72-324b-47c6-a9b0-8a4a268de515" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234135Z:bc7d3f72-324b-47c6-a9b0-8a4a268de515" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FDF98C9783D4EB496980E4DAD386160 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:17Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78FB9E48DF684C859DB1E0201D26CC53 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10153" ], + "Content-Length": [ "10146" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"functions-pwsh-userassignedidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:41:04.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\",\"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-8wks\",\"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-8wks\\\\$Functions-Pwsh-UserAssignedIdentity-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\":{\"principalId\":\"505c3830-c2b6-469b-b4a8-2fd6a6d49baa\",\"clientId\":\"fd4d02c5-7641-4da1-a89a-769cdb50014b\"}}}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "430" ], - "x-ms-client-request-id": [ "889a156d-7fa6-446c-8c94-6089b9a28083" ], + "x-ms-client-request-id": [ "9fdfbe1d-3564-4485-8de5-80b1a21ac142" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10054,38 +10054,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55078F1E5255\"" ], + "ETag": [ "\"1DC55C024587E55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8dabcd4c-2c32-41f6-9243-908422322018" ], + "x-ms-request-id": [ "7d041514-4c19-4b12-b122-fc0ad34a034e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e194751e-f5e1-4bc7-aea7-531f7502757e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014017Z:e194751e-f5e1-4bc7-aea7-531f7502757e" ], + "x-ms-correlation-request-id": [ "64e5b3a4-d0db-4de2-8f64-8cb83534a8e8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234136Z:64e5b3a4-d0db-4de2-8f64-8cb83534a8e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09C7C1D24FF446C2B2337B49E15AEBE0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:17Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BE6E5F5CBB24BB2ABBEA3BB66D8775B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10153" ], + "Content-Length": [ "10146" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"functions-pwsh-userassignedidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:41:04.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\",\"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-8wks\",\"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-8wks\\\\$Functions-Pwsh-UserAssignedIdentity-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\":{\"principalId\":\"505c3830-c2b6-469b-b4a8-2fd6a6d49baa\",\"clientId\":\"fd4d02c5-7641-4da1-a89a-769cdb50014b\"}}}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "431" ], - "x-ms-client-request-id": [ "5cfd11f1-87a7-472f-8c09-392a8ffb1abf" ], + "x-ms-client-request-id": [ "d24d38d3-2764-4a1e-af78-33790017dcd8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10101,36 +10101,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "65d20bc5-7139-49aa-b767-524b923f75e2" ], + "x-ms-request-id": [ "a3fcccfd-98a2-4185-9da9-4b7f8f2019c1" ], "X-AspNet-Version": [ "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/09c8e150-797a-4d71-8c88-be96dc2ccc36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6c207c97-fc90-4405-8de4-7480faf07018" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fd977d97-1886-43ea-aac0-baf52a8bf9b4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014018Z:fd977d97-1886-43ea-aac0-baf52a8bf9b4" ], + "x-ms-correlation-request-id": [ "ec87d390-398b-49ea-bada-0622e2e3911c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234136Z:ec87d390-398b-49ea-bada-0622e2e3911c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F825C06E8F604A999CCCD740D7CE2BF7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECE42944DB374FB5A3234E1AF4D45D98 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "6682827f-a350-486b-98a6-5e70b5b4286e" ], + "x-ms-client-request-id": [ "a13ba24c-9b4f-46c7-a9aa-5a2c06411b34" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10146,37 +10146,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ddf0177-248f-4cea-95cc-980b080231e3" ], + "x-ms-request-id": [ "e6fe6148-18f3-4f52-8e12-9a2417ad75e8" ], "X-AspNet-Version": [ "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/0da5e2dc-f836-4204-af00-5173c0ff99e0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7eec5441-7ad7-4863-bc88-0b3110b8c174" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014018Z:7eec5441-7ad7-4863-bc88-0b3110b8c174" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ca996458-9d4e-4c06-88fe-2d006d6f44c3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ca564b49-618e-40d0-b5ed-de73380632a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234137Z:ca564b49-618e-40d0-b5ed-de73380632a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 215E563EC2E64144BA613B5A8EA633D0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1ED13F67427848ED9C6DF1F732794FBF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"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\":39202,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"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\":33721,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "433" ], - "x-ms-client-request-id": [ "4e3615fa-a382-426e-b3f4-b1a90d05f34a" ], + "x-ms-client-request-id": [ "9eab53b0-a668-465e-aab4-2a829fae368d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10192,36 +10192,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5bb5528b-e123-413d-9417-38310de2c487" ], + "x-ms-request-id": [ "310f6934-638a-4b2c-bfce-27395462fb26" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c933eaf-b479-49bc-916f-d71b79096613" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014019Z:9c933eaf-b479-49bc-916f-d71b79096613" ], + "x-ms-correlation-request-id": [ "a389b7cb-c506-4753-953b-d5398a150641" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234137Z:a389b7cb-c506-4753-953b-d5398a150641" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56A33B1964D947458B3C3C779E811451 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54D1078806594172ACC46DDD8214DCE9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52644,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52644\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:39:51.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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "b7446353-886c-4460-884f-e94b2259910e" ], + "x-ms-client-request-id": [ "ff1814ef-e226-4236-9bd8-21468c38681b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10237,36 +10237,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b184d90c-1e94-4b28-961d-a06b0ef66a50" ], + "x-ms-request-id": [ "a898c569-e7de-44af-a805-54d2fd40e5e8" ], "X-AspNet-Version": [ "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/59d08525-8dda-4f8e-9938-392ef2c27889" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/12735590-e442-4fef-b647-00628a84c281" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a0a37136-30d6-47bd-b462-63eee192181b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014019Z:a0a37136-30d6-47bd-b462-63eee192181b" ], + "x-ms-correlation-request-id": [ "6bda7635-8790-41da-8e81-e26880df5495" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234139Z:6bda7635-8790-41da-8e81-e26880df5495" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E36BF1DAFD7348D88E80D37EE6627DD3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C64005C900DE4DAABF47C48217F09AF5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "23714fe9-33c5-4f89-8aa6-fd44b7dfe2e1" ], + "x-ms-client-request-id": [ "7a112be5-62cb-4741-8159-2ca072899edc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10281,38 +10281,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55078F1E5255\"" ], + "ETag": [ "\"1DC55C024587E55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0278344d-634b-4643-b4d3-925d87bf706b" ], + "x-ms-request-id": [ "6dc4f91a-7f63-49e2-9d5c-f08c9a3ad9a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2811027e-ca07-48c2-8050-6743071de07f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014020Z:2811027e-ca07-48c2-8050-6743071de07f" ], + "x-ms-correlation-request-id": [ "2d16a253-c79e-409b-b9fd-4e4373039852" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234139Z:2d16a253-c79e-409b-b9fd-4e4373039852" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D36F0E823644B58B10BE6EEC13F90E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0ACD918279BF491B94E15BAC9A092D9E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10153" ], + "Content-Length": [ "10146" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"functions-pwsh-userassignedidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:41:04.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\",\"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-8wks\",\"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-8wks\\\\$Functions-Pwsh-UserAssignedIdentity-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\":{\"principalId\":\"505c3830-c2b6-469b-b4a8-2fd6a6d49baa\",\"clientId\":\"fd4d02c5-7641-4da1-a89a-769cdb50014b\"}}}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "504e7389-6f66-4b08-a6a5-ece4529b08b4" ], + "x-ms-client-request-id": [ "0dcd68ec-ca67-4087-b977-ed844187c472" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10328,36 +10328,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d4c5c7b3-09c7-4750-a631-13769214f47d" ], + "x-ms-request-id": [ "a1519c27-d21a-4290-b7db-98db684638d8" ], "X-AspNet-Version": [ "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/456127d3-44e8-4dca-b526-563b58361b48" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6c559405-473c-47ed-8143-f80b01ccee53" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "df68674d-a190-49ed-8f96-e27f10eb7264" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014020Z:df68674d-a190-49ed-8f96-e27f10eb7264" ], + "x-ms-correlation-request-id": [ "2f7ee628-930a-4339-bf97-bab1dfd82ea5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234140Z:2f7ee628-930a-4339-bf97-bab1dfd82ea5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1219244B9E09482D86F0EB65713A413A Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EE754D499064B2BB50EA5B6DCBF44F6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "437" ], - "x-ms-client-request-id": [ "e460b023-1c45-4737-aafa-272366102357" ], + "x-ms-client-request-id": [ "6d8cde93-21fa-4d68-8491-21615d1a8d9f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10373,37 +10373,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02e7a296-a0ef-4f96-893e-63f277087263" ], + "x-ms-request-id": [ "de2517d0-e4a9-4931-9f85-f1844b3cd9f1" ], "X-AspNet-Version": [ "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/031eeac1-d416-404d-b2e9-2ce6d31ec605" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "286a8d2f-9790-4b36-ae9a-32315fa9f0ec" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014020Z:286a8d2f-9790-4b36-ae9a-32315fa9f0ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/caf185c8-33d9-4635-b80b-e7a2b120d017" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9aa070c6-9323-4ee2-8b5e-f92d215bec48" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234140Z:9aa070c6-9323-4ee2-8b5e-f92d215bec48" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 679824FD498D4F4B81D2FF31A63CE08D Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 103096C211854BC8A2E6530AEE2273F0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"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\":39202,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"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\":33721,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "438" ], - "x-ms-client-request-id": [ "cf138c90-d44a-41cb-b09c-60515383b95c" ], + "x-ms-client-request-id": [ "44642e30-6ff1-4443-95fa-01ab063cc7a2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10418,38 +10418,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55078F1E5255\"" ], + "ETag": [ "\"1DC55C024587E55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "954b45b6-b0e4-4309-a25a-0e9262b20026" ], + "x-ms-request-id": [ "a56a6066-454e-4a60-85cb-f53e358dea17" ], "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": [ "4a6cc922-6eee-490b-b20e-b22ff911f2d8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014021Z:4a6cc922-6eee-490b-b20e-b22ff911f2d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a9a0b727-07b4-4686-ba73-c98da8163d13" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234141Z:a9a0b727-07b4-4686-ba73-c98da8163d13" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C56587284B14A209CF9F1CEC5D68C4E Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF1BA01FD64949E2B382F1481566408D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10153" ], + "Content-Length": [ "10146" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Pwsh-UserAssignedIdentity-fqti\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"functions-pwsh-userassignedidentity-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:39:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\",\"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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-fqti\\\\$Functions-Pwsh-UserAssignedIdentity-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti\":{\"principalId\":\"0b3df055-ad5e-4754-832a-e212e1370f96\",\"clientId\":\"8a484c9c-cfe7-487d-9c03-6b99c456c37c\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Pwsh-UserAssignedIdentity-8wks\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"functions-pwsh-userassignedidentity-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:41:04.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\",\"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-8wks\",\"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-8wks\\\\$Functions-Pwsh-UserAssignedIdentity-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\":{\"principalId\":\"505c3830-c2b6-469b-b4a8-2fd6a6d49baa\",\"clientId\":\"fd4d02c5-7641-4da1-a89a-769cdb50014b\"}}}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "439" ], - "x-ms-client-request-id": [ "4aed9a20-a008-4de9-9927-c8e3175866cb" ], + "x-ms-client-request-id": [ "d893af01-a9fd-4e2b-93f3-eb44601f8cd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10465,36 +10465,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c04eade4-f6ae-4618-a536-4aca54f804eb" ], + "x-ms-request-id": [ "1e6563ca-5db3-4eda-9c3a-40a19d5a7cae" ], "X-AspNet-Version": [ "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/f8ec339e-8e16-40b2-a984-aca9a9cc6786" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a6bf3bf0-98f7-44fe-8e39-7bee3aedff34" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd6a28ec-e908-425a-a805-0033e94a6cae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014021Z:bd6a28ec-e908-425a-a805-0033e94a6cae" ], + "x-ms-correlation-request-id": [ "8a820eee-3ff7-4849-bc1c-b5a7b70652d7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234141Z:8a820eee-3ff7-4849-bc1c-b5a7b70652d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98716D4320DD4148ACDAF08C61C6A367 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BA9B67CF056480494A4435B7CD2A17A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", "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-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "2492be2e-a556-40ba-a199-f98aaa5a64e5" ], + "x-ms-client-request-id": [ "688c1958-ac9a-4ac6-a8ad-679db9b3b5e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10510,37 +10510,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acaf9d7d-89c5-4bf0-9593-2c617029ee51" ], + "x-ms-request-id": [ "0bc94a46-4613-4085-b2c1-a7ff0ed61853" ], "X-AspNet-Version": [ "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/ae965505-b6bb-4030-af71-567c0b5695a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ce325d14-c314-4b31-9c48-2829c1b734bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2358c6f9-4b3f-41bb-817d-f24aecd107b2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014022Z:2358c6f9-4b3f-41bb-817d-f24aecd107b2" ], + "x-ms-correlation-request-id": [ "260a8395-cee8-4c88-968c-7b28ec306b36" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234142Z:260a8395-cee8-4c88-968c-7b28ec306b36" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FF2B46048DF492EA3D70CBA4A917623 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 917BC54AE10A4BF3824F21AC33309F87 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"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\":39202,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"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\":33721,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "441" ], - "x-ms-client-request-id": [ "6b880cc5-40cf-46ea-90b4-693a1a9265c2" ], + "x-ms-client-request-id": [ "047960d3-a528-4635-b7f0-332490b7bbad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10556,36 +10556,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2ce21a7-b988-437c-8897-55bf4bd6ca6d" ], + "x-ms-request-id": [ "e2368e4d-5d04-4948-953f-dc69cd6f123b" ], "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": [ "206f12d4-9f70-4d17-87b5-1c443d56de1a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014022Z:206f12d4-9f70-4d17-87b5-1c443d56de1a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f05960e8-5736-48a2-9c1a-eb4df6b59af3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234142Z:f05960e8-5736-48a2-9c1a-eb4df6b59af3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F88EEBE2AD344BA5A6BE2A3E39374153 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 155D61D6514D4E04A7B545B3F16FC9B8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62038,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:38:33.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52644,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52644\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:39:51.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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "442" ], - "x-ms-client-request-id": [ "11d78a74-2ca0-46ea-ad80-ca5b31633d8f" ], + "x-ms-client-request-id": [ "17db1433-40ee-428f-b224-960a704b4d1c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10600,20 +10600,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55078F1E5255\"" ], + "ETag": [ "\"1DC55C024587E55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1457f33d-4faf-4dd5-b8a9-e803d73fc026" ], + "x-ms-request-id": [ "63250473-1a39-4707-becd-698a21163faf" ], "X-AspNet-Version": [ "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/0eff27b5-781d-46e3-9bcb-b509e5c621e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cb6b88a1-29cc-46f1-98b0-e2ae1c94eb10" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "85c0c094-f6c0-4306-94d8-a45d569898eb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014041Z:85c0c094-f6c0-4306-94d8-a45d569898eb" ], + "x-ms-correlation-request-id": [ "557162c4-0d6c-4510-b998-470492570cf5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234159Z:557162c4-0d6c-4510-b998-470492570cf5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD2E1E2B28084A2C940649043A2E04D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A39F290771A437298A1B697A747B4E3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:42Z" ], + "Date": [ "Fri, 14 Nov 2025 23:41:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -10627,7 +10627,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PS-CustomConfig-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -10642,18 +10642,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56f93e2b-f762-48c8-9110-fb6d13c945b5" ], + "x-ms-request-id": [ "45e3ccf5-fd03-4149-8471-cb29c445ee14" ], "X-AspNet-Version": [ "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/f353c4ea-4147-42a0-8f35-bd5aed2fe946" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1c9bc1da-7b07-48ed-98d9-6c2d05ecfe4b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0a824fa2-43e5-4512-89a8-c43c1b942eaf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014042Z:0a824fa2-43e5-4512-89a8-c43c1b942eaf" ], + "x-ms-correlation-request-id": [ "55144e70-d94d-40db-9c66-ea072dd92b57" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234200Z:55144e70-d94d-40db-9c66-ea072dd92b57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 953B526D86A64B2E946A0F015D8E4288 Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBEE9137A247448C924A3AC1377C58BA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:41:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -10664,10 +10664,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -10683,38 +10683,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ca8fbd7-1c3a-4bc0-9707-497ae97dd1a8" ], + "x-ms-request-id": [ "e1065e14-89a7-42a6-aa25-94bc512ee7c0" ], "X-AspNet-Version": [ "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/0ce5605c-aafb-451b-a7a9-f7ab532b0fb8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0a19c10c-a831-4b83-a18b-1c78f45001f4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ffb628e1-6829-4f48-af2d-2dfef939f306" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014047Z:ffb628e1-6829-4f48-af2d-2dfef939f306" ], + "x-ms-correlation-request-id": [ "cccb586c-8b64-4620-adb7-925127d24ddf" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234205Z:cccb586c-8b64-4620-adb7-925127d24ddf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 458774BCEC2C487DB25431033D1EB9FF Ref B: MWH011020806052 Ref C: 2025-11-14T01:40:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:40:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F1CC7C19D9714E41922A7C7557499ABB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62128,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62128\",\"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-14T23:42:05.3633333\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "446" ], - "x-ms-client-request-id": [ "59273587-d23e-481a-a310-7477279f11d2" ], + "x-ms-client-request-id": [ "6d9dd807-6ead-4c57-be69-7be314d67daf" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10729,37 +10729,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f205a497-2dc7-49d2-8f25-89f0dd07a7e2" ], + "x-ms-request-id": [ "bbd34050-da6c-43e9-b1f2-6ce91cfda910" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5cc892ad-7916-4b50-afe8-e84088df2574" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014117Z:5cc892ad-7916-4b50-afe8-e84088df2574" ], + "x-ms-correlation-request-id": [ "16ec95da-101b-41d2-b45c-c628c5243aca" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234236Z:16ec95da-101b-41d2-b45c-c628c5243aca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59A69C4E275C4BB7B550156104593B5C Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:17Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32077A468A064C87AE9C2A63865D3C6F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62128,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62128\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:42:05.3633333\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "59273587-d23e-481a-a310-7477279f11d2" ], + "x-ms-client-request-id": [ "6d9dd807-6ead-4c57-be69-7be314d67daf" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10774,24 +10774,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "801da4b3-81f9-4eca-9f85-82ad6be9f09a" ], + "x-ms-request-id": [ "52998110-3f21-453d-935e-7837cb8bc989" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "681b99d0-4623-4f45-bbe2-086c1dc6f030" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014118Z:681b99d0-4623-4f45-bbe2-086c1dc6f030" ], + "x-ms-correlation-request-id": [ "6aaaa21f-55e0-4ed8-ace4-10587e5ac1a0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234236Z:6aaaa21f-55e0-4ed8-ace4-10587e5ac1a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DBFA40A5E9A474C95F91DC28E59D980 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:17Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BEF67087D4BC4653A0511C5F60322E25 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62128,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62128\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:42:05.3633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -10803,7 +10803,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "448" ], - "x-ms-client-request-id": [ "eb8c3551-739c-48c5-95f3-27b06d74982e" ], + "x-ms-client-request-id": [ "d2f39e93-5ac2-4c21-b170-b35698cfe65e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10818,36 +10818,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8035182a-ec18-4407-b9ba-45c58b0a365d", "1b54e9e0-c467-4d65-ace0-db78f97ab962", "b1833f5e-9df5-47cb-ba59-c030f0d6e022" ], + "x-ms-original-request-ids": [ "edb762bf-4e42-4f08-9878-6ef36365399d", "8fa13dd9-a409-4c05-bcb4-79943116239b", "ea5d3fc5-f0b2-4818-afdf-5430f13a05a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "86a6cadc-fde0-403a-901a-8afd69e7aaad" ], - "x-ms-correlation-request-id": [ "86a6cadc-fde0-403a-901a-8afd69e7aaad" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014119Z:86a6cadc-fde0-403a-901a-8afd69e7aaad" ], + "x-ms-request-id": [ "b3de103a-b2b5-4713-b1a9-1ba5e691ff4d" ], + "x-ms-correlation-request-id": [ "b3de103a-b2b5-4713-b1a9-1ba5e691ff4d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234237Z:b3de103a-b2b5-4713-b1a9-1ba5e691ff4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2ABD7DE6C6C745B08ADBA56A0C45D48C Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:18Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C06B849687114F99B5C33DA7D9D2293D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspscustomconfig8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspscustomconfig8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "449" ], - "x-ms-client-request-id": [ "82889005-b79e-44be-9adc-428321f84ebc" ], + "x-ms-client-request-id": [ "174e8c15-9a2c-4f67-bd56-4f6b15c77b3a" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10862,31 +10862,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "07cdea1a-c9e6-47cc-bbf8-48df1aae3452" ], + "x-ms-request-id": [ "8fc3aca3-9f1a-476e-9c6e-40ce1663ba5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ed4a1bc0-fffa-4448-96c3-15061890f779" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cebaa517-c88e-4b6d-8f66-11bb4077a303" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "374c856b-6db5-428d-b045-ba41728ef6c1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014119Z:374c856b-6db5-428d-b045-ba41728ef6c1" ], + "x-ms-correlation-request-id": [ "d83334d4-be92-4928-a9f0-4695de880437" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234238Z:d83334d4-be92-4928-a9f0-4695de880437" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFAB7957F5C745299E532D6906B0FBD1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E39CC453B104EDD94BB7B025B3EB04F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095e3af2-601e-0026-7e07-552633000000\\nTime:2025-11-14T01:41:19.5814311Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:7000dd70-e01e-0012-38c0-559f69000000\\nTime:2025-11-14T23:42:38.0528788Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspscustomconfig8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspscustomconfig8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -10901,25 +10901,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231EE93BE2E3\"" ], - "x-ms-request-id": [ "ddbb576b-a183-49c5-a058-58141ca6f6d9" ], + "ETag": [ "\"0x8DE23D77F0B37F2\"" ], + "x-ms-request-id": [ "d763011a-9854-4ee9-b001-8e3f61a93880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5c79d51c-3a8c-468b-a899-9570b49219e5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ccca73d7-9659-484c-939a-09f9c4bb141d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "7edd2d86-a023-4c2b-8fc5-870fc7b79868" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014120Z:7edd2d86-a023-4c2b-8fc5-870fc7b79868" ], + "x-ms-correlation-request-id": [ "e5f0821c-abd2-4378-8393-39caca810f13" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234239Z:e5f0821c-abd2-4378-8393-39caca810f13" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87BB5E92080640A786AFB0C3061C749D Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:19Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1889048792BF49529F367CACAFA1DF58 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionspscustomconfigfqti-0000000\",\"name\":\"app-package-functionspscustomconfigfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionspscustomconfig8wks-0000000\",\"name\":\"app-package-functionspscustomconfig8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -10931,7 +10931,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "da373967-4d76-43b5-9c43-6a0d64b19130" ], + "x-ms-client-request-id": [ "74b085f1-c77f-4a63-b084-5b86e2af5df2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10946,36 +10946,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0cce5710-0721-4de5-b763-8ece3f1b2ca0", "5e65b10a-5abd-42d3-a6c6-0aff2d969866", "d1bd2b3b-b99c-4301-8d5c-86184bf8eb0c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "2b3eccbe-6f3a-4771-8202-df47e760a910" ], - "x-ms-correlation-request-id": [ "2b3eccbe-6f3a-4771-8202-df47e760a910" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014121Z:2b3eccbe-6f3a-4771-8202-df47e760a910" ], + "x-ms-original-request-ids": [ "dfa28f73-3c88-4608-a065-1dedabbfb0d0", "044e7266-e3ad-4b14-9ea4-ae310dd0d703", "855f1c36-a662-4a46-b52d-d4a2cc9563b8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "37770f17-5103-496e-a633-fa75fc731990" ], + "x-ms-correlation-request-id": [ "37770f17-5103-496e-a633-fa75fc731990" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234239Z:37770f17-5103-496e-a633-fa75fc731990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3305F4779B304ED7B669686968FA88DC Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 196622007D5F4E01A45D6813FAE2CC17 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:39Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "452" ], - "x-ms-client-request-id": [ "e1645f90-ba47-41d2-95a2-1c0b739b788f" ], + "x-ms-client-request-id": [ "6534a6d8-e910-43f2-8d40-33cb23b9edb6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10990,23 +10990,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b3d2f279-8ef7-48b0-97a7-484ab19d2bcb" ], + "x-ms-request-id": [ "5f1cf03a-a430-4a2f-a786-5b0329b9e53e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6f697e3b-6d43-4ea5-b766-76e336639835" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/86cc6aba-64e1-4013-940c-00d80ebff2ac" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4f7e034f-7212-43f2-8b70-9301bfe619b4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014121Z:4f7e034f-7212-43f2-8b70-9301bfe619b4" ], + "x-ms-correlation-request-id": [ "bf475a8e-d569-4168-ba64-5ad4dab8b712" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234240Z:bf475a8e-d569-4168-ba64-5ad4dab8b712" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC39DEFFC3894959B0C4D903E68DBA0D Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06AEAB567C944C17ACC319AA97566728 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -11018,7 +11018,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "453" ], - "x-ms-client-request-id": [ "168a4a52-10e1-4089-81ef-f76d504dd70b" ], + "x-ms-client-request-id": [ "fe2fca93-9a67-411f-af40-549c49d5d944" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11033,36 +11033,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "76e6c6d4-0bef-4c9b-8c77-169ed8c975b0", "52f1418b-9f79-432c-b200-e690a7aa4c17", "0245413b-7f0b-471b-bdc8-5dfb2fd41b2b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f717f9a3-a828-4c00-8c0f-4c72480c92c7" ], - "x-ms-correlation-request-id": [ "f717f9a3-a828-4c00-8c0f-4c72480c92c7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014122Z:f717f9a3-a828-4c00-8c0f-4c72480c92c7" ], + "x-ms-original-request-ids": [ "b9df7817-8cf8-42d0-b197-ac49a03fe5f6", "d0225e73-ed57-45a7-a4ef-d9c160fc6ed7", "ac6659f6-1dbc-4d57-97fd-e85cc98a7419" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "ddcbc523-b575-4ac6-a95e-1865b98cabe2" ], + "x-ms-correlation-request-id": [ "ddcbc523-b575-4ac6-a95e-1865b98cabe2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234241Z:ddcbc523-b575-4ac6-a95e-1865b98cabe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5472490632444D987E8992876C3786D Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5BCD359620F416782CF6BDFB3098B6A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:40Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "454" ], - "x-ms-client-request-id": [ "dc6a22f8-587e-4bc7-91b2-5aec53274a23" ], + "x-ms-client-request-id": [ "cc071369-f35c-44da-bf19-cca2eefc1ba3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11077,30 +11077,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7ba6972c-a5e5-4c5d-849c-0f4163702b88" ], + "x-ms-request-id": [ "56a8bde0-01be-41c5-814a-1b097ef7a69f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/14fef645-ea62-450e-a901-b8ed95b6d81f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/01c080b8-1a50-454b-8dcf-9c7013708bff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7365a73a-32a1-4cb7-b262-c2a32de61948" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014122Z:7365a73a-32a1-4cb7-b262-c2a32de61948" ], + "x-ms-correlation-request-id": [ "c487a7d8-d1dd-44a0-9cc9-779a64131d72" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234241Z:c487a7d8-d1dd-44a0-9cc9-779a64131d72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7C2D7CAB1514542A4BE80F4EFB8C1EF Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27701914268F406F8546A7F0CB153404 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"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-fqti/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-8wks?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -11120,30 +11120,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/41614b10-729b-4e17-8d6b-acc9635da002" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b3f66ab2-75a9-4202-8adc-f8febc66ba71" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "a713ce20-05ab-4798-8345-0171f83089a3" ], - "x-ms-correlation-request-id": [ "a713ce20-05ab-4798-8345-0171f83089a3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014134Z:a713ce20-05ab-4798-8345-0171f83089a3" ], + "x-ms-request-id": [ "f73b7b14-ed75-4414-b430-db630de65db7" ], + "x-ms-correlation-request-id": [ "f73b7b14-ed75-4414-b430-db630de65db7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234252Z:f73b7b14-ed75-4414-b430-db630de65db7" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CFB7C76FC35241F280208A1C90518109 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E809F536ADDF44649577D25CFB20B595 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:41Z" ], + "Date": [ "Fri, 14 Nov 2025 23:42:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"780310b6-0000-0200-0000-691688ce0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-PS-CustomConfig-fqti\",\r\n \"name\": \"Functions-PS-CustomConfig-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-fqti\",\r\n \"AppId\": \"986f7406-ebeb-4294-ab2d-3752dc766278\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7d557552-614c-4aa8-b52b-bfb83f30b33e\",\r\n \"ConnectionString\": \"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\r\n \"Name\": \"Functions-PS-CustomConfig-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:41:24.4271273+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-fqti_986f7406-ebeb-4294-ab2d-3752dc766278_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-fqti-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\": \"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\r\n \"name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-8wks\",\r\n \"AppId\": \"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\r\n \"ConnectionString\": \"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\r\n \"Name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:42:44.0467968+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-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\"\r\n },\r\n {\r\n \"name\": \"CustomSetting2\",\r\n \"value\": \"Value2\"\r\n },\r\n {\r\n \"name\": \"CustomSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Project\": \"FlexConsumption\",\r\n \"Environment\": \"Test\",\r\n \"Owner\": \"PowerShell\"\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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\"\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": { }, @@ -11157,39 +11157,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5507D0DC41E0\"" ], + "ETag": [ "\"1DC55C066F53520\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "00852c73-e198-4ba7-8ca0-c9be97ca8f46" ], + "x-ms-request-id": [ "4eeeff1c-064b-4a00-8bec-a02f5a82c229" ], "X-AspNet-Version": [ "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/b6a87a36-a49f-4fa8-bbaf-a21f52c9d758" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d7e8ccf4-6c17-4224-aa81-8e629d5c0f60" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "be44e210-c206-4af1-a486-b0f086ca9e6b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014158Z:be44e210-c206-4af1-a486-b0f086ca9e6b" ], + "x-ms-correlation-request-id": [ "5ed26244-35a2-47c2-8d9b-5960d4aebaaf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234317Z:5ed26244-35a2-47c2-8d9b-5960d4aebaaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4EF3A4DD7C24D3A93B3522D32C151A0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:41:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:41:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FEA9D4870F0644ABA8E7634E4FB94ACC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:42:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9710" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:36.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-PS-CustomConfig-8wks\",\"repositorySiteName\":\"Functions-PS-CustomConfig-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\",\"functions-ps-customconfig-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:42:55.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-8wks\\\\$Functions-PS-CustomConfig-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-ps-customconfig-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "457" ], - "x-ms-client-request-id": [ "41eb3502-bcfa-424c-a664-064bbf41a895" ], + "x-ms-client-request-id": [ "7fbb7763-d235-4ead-aa64-e9e8a90834d5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11203,38 +11203,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5507DD80234B\"" ], + "ETag": [ "\"1DC55C07390F335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d6c7c2d-7442-4f54-aae3-f47495ea9f0a" ], + "x-ms-request-id": [ "3b9dcae8-7c3e-41ab-b861-684f4835dbfe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b023540c-6e02-4f9f-a99c-1e13b6c0a762" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014229Z:b023540c-6e02-4f9f-a99c-1e13b6c0a762" ], + "x-ms-correlation-request-id": [ "f2aab95a-353f-4482-bc57-f37468cfb1d8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234348Z:f2aab95a-353f-4482-bc57-f37468cfb1d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BA6AE9DEF0E492DBB9E91D82D613ADA Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9CC9C90718443AF93A0CE9AD4BF5532 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-PS-CustomConfig-8wks\",\"repositorySiteName\":\"Functions-PS-CustomConfig-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\",\"functions-ps-customconfig-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:43:17.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-8wks\\\\$Functions-PS-CustomConfig-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-ps-customconfig-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "458" ], - "x-ms-client-request-id": [ "2165f3a8-5e26-4129-ad63-5e42d63cd402" ], + "x-ms-client-request-id": [ "2a4ad380-6291-45ce-abf9-b5cd6c939605" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11249,38 +11249,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5507DD80234B\"" ], + "ETag": [ "\"1DC55C07390F335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cdc48476-1677-4625-87f7-fe4e7b543ade" ], + "x-ms-request-id": [ "694a88b3-66ae-49b1-9b2a-8d3d9f3945bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4ab8be64-4674-4a16-8279-2cfcc79874e1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014229Z:4ab8be64-4674-4a16-8279-2cfcc79874e1" ], + "x-ms-correlation-request-id": [ "28a0aecd-03c4-4dac-a493-fd70518ddd01" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234348Z:28a0aecd-03c4-4dac-a493-fd70518ddd01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8A124BF47A84B1C8AA3491749AC8B9A Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAB4B01933A4493695D4850EC9E78FBB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-PS-CustomConfig-8wks\",\"repositorySiteName\":\"Functions-PS-CustomConfig-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\",\"functions-ps-customconfig-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:43:17.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-8wks\\\\$Functions-PS-CustomConfig-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-ps-customconfig-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "459" ], - "x-ms-client-request-id": [ "42000705-3063-4db8-a679-f6e416dccbc1" ], + "x-ms-client-request-id": [ "e064815b-6e64-4690-aa00-abdd9093a633" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11296,36 +11296,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "189532d1-2cf4-4cf0-879b-03e6a4652a52" ], + "x-ms-request-id": [ "554fe542-a41c-4067-ba1e-408d21089fb1" ], "X-AspNet-Version": [ "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/71c42a10-ca58-45bf-987c-c4cccb0bfa3a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e0b61056-933f-44b4-bf84-c5763db0fd6f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e790032c-f842-4b70-86f5-0f2d557a9c7d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014230Z:e790032c-f842-4b70-86f5-0f2d557a9c7d" ], + "x-ms-correlation-request-id": [ "0ae77962-92ff-46b9-a0ed-caf64905467a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234349Z:0ae77962-92ff-46b9-a0ed-caf64905467a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3BFA823DA52643088B5BCD2EA80FCB74 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2205AB291C44450C9C36672B81174F53 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "460" ], - "x-ms-client-request-id": [ "8618321a-22c8-4f53-8221-d3215b815aed" ], + "x-ms-client-request-id": [ "37577be0-7779-4aed-8c27-32fe49b4c8a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11341,37 +11341,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0025039-2950-47f9-adff-85b9cf464cc6" ], + "x-ms-request-id": [ "27c9ff22-6a72-4633-9089-194954415daa" ], "X-AspNet-Version": [ "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/01e75343-ce24-48c0-9aef-1457e64ce92d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6747dd64-768e-49cb-80e9-3d59412655dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c630a6cf-6cbc-44e8-93d8-702bddab72a3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014230Z:c630a6cf-6cbc-44e8-93d8-702bddab72a3" ], + "x-ms-correlation-request-id": [ "9429b0cf-ae44-4e0d-8272-00d9539ea23c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234349Z:9429b0cf-ae44-4e0d-8272-00d9539ea23c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 918EAC61C57440A286B37B5A2204E4E5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64252197325D4B7F86F5F67DD3DF6D2F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "461" ], - "x-ms-client-request-id": [ "8c7ed111-c827-4f4b-b02d-8fa79b7aa20d" ], + "x-ms-client-request-id": [ "5f56f3fe-3dff-497d-ab8b-23c5161a35f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11387,36 +11387,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c29ba461-e2b7-41d8-8099-48c72d027cdc" ], + "x-ms-request-id": [ "f0de2aee-b05b-4d05-bbc7-7ea929cf9a72" ], "X-AspNet-Version": [ "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/3a6ae9b8-80f2-41e3-8278-15fb487fff4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9c7f30ab-955a-40bd-a12c-43a5ce6127de" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d0d6414f-0e0f-4479-8804-caaaf05ad0e2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014230Z:d0d6414f-0e0f-4479-8804-caaaf05ad0e2" ], + "x-ms-correlation-request-id": [ "a4215234-c7c5-476b-8dd8-f428590b0557" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234350Z:a4215234-c7c5-476b-8dd8-f428590b0557" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA08E3A5A0C646D7AB1ABCA7C8595DF2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F864ED8F6A364C98976EA57416385059 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "462" ], - "x-ms-client-request-id": [ "9551f748-64df-449c-ae0e-14830914c055" ], + "x-ms-client-request-id": [ "34837825-4b75-48d7-b7c7-a5e89fa23cfb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11432,36 +11432,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14211a41-a18f-4e0e-b9f8-4f3f3778f25e" ], + "x-ms-request-id": [ "200568cc-c3f3-4434-8912-91c9bc6fa8e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "34648660-f4ac-43ab-8e54-f0c2c58bf2c6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014231Z:34648660-f4ac-43ab-8e54-f0c2c58bf2c6" ], + "x-ms-correlation-request-id": [ "7a8cee07-192e-411a-88bd-ae8f4475eaf8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234350Z:7a8cee07-192e-411a-88bd-ae8f4475eaf8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7625C11EB58149F4AADA1F38AD92DCC6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09C94F3ACAF44FE2BFC94E297BE3DA14 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62128,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62128\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:42:05.3633333\",\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "7a86c399-6388-4a81-885d-e27ffa1e44d1" ], + "x-ms-client-request-id": [ "85047d0d-e413-4905-b494-cdcc39351fab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11476,38 +11476,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5507DD80234B\"" ], + "ETag": [ "\"1DC55C07390F335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e54c9ea7-b30f-400b-a0e3-23feaa21cb99" ], + "x-ms-request-id": [ "cf9a8d2d-3dab-41d4-ad59-f2bc12d94c28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "351c4448-2edb-4c70-9589-3951ae94fdee" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014231Z:351c4448-2edb-4c70-9589-3951ae94fdee" ], + "x-ms-correlation-request-id": [ "45a5288c-b983-4d61-8a19-bd898b2ecece" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234351Z:45a5288c-b983-4d61-8a19-bd898b2ecece" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F444E54ECE82445AB11B91B822FB82DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48241A71721B470D9D92C5FD2D1E772A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-PS-CustomConfig-8wks\",\"repositorySiteName\":\"Functions-PS-CustomConfig-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\",\"functions-ps-customconfig-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:43:17.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-8wks\\\\$Functions-PS-CustomConfig-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-ps-customconfig-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "464" ], - "x-ms-client-request-id": [ "95da0b00-e3f3-4bed-b5ab-0d96151cd55c" ], + "x-ms-client-request-id": [ "117372ef-00aa-4067-88ff-debf058f96cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11523,36 +11523,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b87bfe5-33f1-463f-9f45-b57b95bffb83" ], + "x-ms-request-id": [ "482f4ebf-7be5-4e36-80f5-914de64da967" ], "X-AspNet-Version": [ "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/f6f8df5d-98bb-4c01-a208-d10cca2ac646" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/26505ad0-ac6d-417a-8000-e1295d228cde" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d9dae125-f524-4275-ae53-aec725bfac38" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014232Z:d9dae125-f524-4275-ae53-aec725bfac38" ], + "x-ms-correlation-request-id": [ "5a34120e-c479-480f-8440-8a1ec0bfb7d5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234351Z:5a34120e-c479-480f-8440-8a1ec0bfb7d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 575DA4A8BB684B08B4CB05480534FF92 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CFF01916AC4478B8D264EE6C4254A9D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "002cc3b6-82e3-471f-ba43-f610fa068d4b" ], + "x-ms-client-request-id": [ "35bdf072-fab7-4ae2-b44a-03513b93d6a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11568,37 +11568,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8054829e-689d-40b9-9325-b9bb80ab2a79" ], + "x-ms-request-id": [ "25d000f8-f1a1-4d1b-bc52-8ce60066f96b" ], "X-AspNet-Version": [ "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/724fe898-7ecc-4291-85c7-c5c3091e1121" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/57fc5f52-37a3-4d1d-b37d-2231789ca4ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a7769df5-fc6c-4f92-abde-02bc97b3896f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014232Z:a7769df5-fc6c-4f92-abde-02bc97b3896f" ], + "x-ms-correlation-request-id": [ "d131fc20-db0b-46b6-bac8-9692f1cd9995" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234351Z:d131fc20-db0b-46b6-bac8-9692f1cd9995" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22D009C8465B4A1496BF34AD3EF6219A Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AD9B855460A4FCB88C409A8F9E7EA55 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "466" ], - "x-ms-client-request-id": [ "72a28ec6-2eb3-438f-987f-3b8a8fc5e3ea" ], + "x-ms-client-request-id": [ "9d72b024-5ce7-4e55-b381-a3558e66f8a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11613,38 +11613,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5507DD80234B\"" ], + "ETag": [ "\"1DC55C07390F335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0472b377-8957-4cb3-b548-03470cf38ccf" ], + "x-ms-request-id": [ "e79cdc0b-fa7a-4276-8765-94c2cfa70128" ], "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": [ "321292d0-8739-4b88-8044-54343e7663e5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014233Z:321292d0-8739-4b88-8044-54343e7663e5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "828b9f0a-6460-4e48-92a3-f1a22136fc47" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234352Z:828b9f0a-6460-4e48-92a3-f1a22136fc47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC81C2CBC45B44C687BFF4673F3138BD Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B1F6C9F240A45E8BB05CADF012A6B5F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9692" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-PS-CustomConfig-fqti\",\"repositorySiteName\":\"Functions-PS-CustomConfig-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-fqti.azurewebsites.net\",\"functions-ps-customconfig-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:41:58.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionspscustomconfigfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-fqti\\\\$Functions-PS-CustomConfig-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-ps-customconfig-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-PS-CustomConfig-8wks\",\"repositorySiteName\":\"Functions-PS-CustomConfig-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-8wks.azurewebsites.net\",\"functions-ps-customconfig-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:43:17.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-PS-CustomConfig-8wks\\\\$Functions-PS-CustomConfig-8wks\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"defaultHostName\":\"functions-ps-customconfig-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "467" ], - "x-ms-client-request-id": [ "0ff520b9-2614-4626-8312-3e592dd4820c" ], + "x-ms-client-request-id": [ "d90b352d-4056-4973-988e-29626abab5ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11660,36 +11660,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a1d1791-755e-4d40-be24-9f4ecd7a3607" ], + "x-ms-request-id": [ "6f20d364-b2bc-42d5-b3db-e8488024cf7f" ], "X-AspNet-Version": [ "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/a6f17330-a210-401c-bf48-ddf55816234b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ceecbaf6-b968-46c3-990d-f79a7ae208d1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c62f9ea5-bcb9-421d-aa51-67bdb807753b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014233Z:c62f9ea5-bcb9-421d-aa51-67bdb807753b" ], + "x-ms-correlation-request-id": [ "deb8092b-50c4-43de-aecc-0f4255fecbfe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234352Z:deb8092b-50c4-43de-aecc-0f4255fecbfe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B70C3A2D0024CB6BC47CD0043C8049B Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 552DDA032A704CA69E6A50D4E19BBB96 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"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-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "61be063c-43a0-416d-9e75-19c1a3074c90" ], + "x-ms-client-request-id": [ "3087fa2a-e76b-4212-9dcc-879f2d6b3d97" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11705,37 +11705,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19559cc1-d890-4c30-bcfe-5dfbb4bc832b" ], + "x-ms-request-id": [ "f58b2776-315e-4a8a-9d91-8472fa250fa6" ], "X-AspNet-Version": [ "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/296f2e16-1899-4877-89ab-1c8ee94d0135" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e8f83ece-7aec-4020-b3b2-a9337fe6ba78" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e45422be-30bc-4f58-8fb5-d62988e46b8a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014234Z:e45422be-30bc-4f58-8fb5-d62988e46b8a" ], + "x-ms-correlation-request-id": [ "96ce98b7-6b34-4f5f-9f2f-817e4310894c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234353Z:96ce98b7-6b34-4f5f-9f2f-817e4310894c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D41444EC399740CB8C4980DFC9B86844 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E4C9E46CB8BE40C89CF34255E052660C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti/config/web\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/web\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "469" ], - "x-ms-client-request-id": [ "f470bd32-ec93-4030-beac-fa32a9710f40" ], + "x-ms-client-request-id": [ "3a403725-cd37-4ab5-ba88-606a98c4f9f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11751,36 +11751,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b322f5f3-98b7-4767-9a47-5b1a4aac798a" ], + "x-ms-request-id": [ "2e8bc5c4-43ef-49cd-b424-6da6cb34da73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2605af46-3ece-47a4-b4d9-a44930a1a892" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014234Z:2605af46-3ece-47a4-b4d9-a44930a1a892" ], + "x-ms-correlation-request-id": [ "79578f40-0c78-4026-b0ec-81d837fa6226" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234353Z:79578f40-0c78-4026-b0ec-81d837fa6226" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BB541DAF85446FD98830991744CEEC7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D93E1907F674313A89CF9F8E3AAD1AB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:43:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62039,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:40:47.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62128,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62128\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:42:05.3633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "b660d488-b64c-41e1-af7d-e6f8ec43f677" ], + "x-ms-client-request-id": [ "fdd0134a-35ee-4638-897c-79ec51ecf6bb" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11795,20 +11795,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5507DD80234B\"" ], + "ETag": [ "\"1DC55C07390F335\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9791af97-7ebc-4738-b439-893e4e7cc6a1" ], + "x-ms-request-id": [ "6eaa9089-ea77-47a2-93c5-86b125838790" ], "X-AspNet-Version": [ "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/50bb0d8a-d931-4aac-8406-5e2ddc9210e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3de557a4-0821-47ff-8a8d-dc9e63f2002b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "10fc7b82-f1f7-4288-b939-4fea40e256c5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014253Z:10fc7b82-f1f7-4288-b939-4fea40e256c5" ], + "x-ms-correlation-request-id": [ "bcc38664-aedf-48cd-acbb-912c00007199" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234411Z:bcc38664-aedf-48cd-acbb-912c00007199" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C5F9F506C6647E883A7C527B29FDBD2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB18A578CD774C8BA5030BA3877B3942 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:43:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11822,7 +11822,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Java-NoAppInsights-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-NoAppInsights-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11837,18 +11837,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a255b77-615d-46cc-9f97-4d13dd2e692e" ], + "x-ms-request-id": [ "d2c5b551-5a82-4baa-b442-8df60536733e" ], "X-AspNet-Version": [ "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/da5b7bfa-44e0-431f-9685-b9daec7ad827" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/uksouth/f890d345-fe44-4b56-9f2b-63aa10501e89" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3dc76b97-847a-4327-9b5a-16ef12513553" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014253Z:3dc76b97-847a-4327-9b5a-16ef12513553" ], + "x-ms-correlation-request-id": [ "06a14b7c-c622-4505-bf7d-ed771b15cd21" ], + "x-ms-routing-request-id": [ "UKSOUTH:20251114T234413Z:06a14b7c-c622-4505-bf7d-ed771b15cd21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 257FCCEA16354917A0C3789B8A2F0CF6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1917A7D2A1D64482A70821F8269541DF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11859,10 +11859,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -11878,38 +11878,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33071286-8726-4fa6-8eab-c53491dcafe9" ], + "x-ms-request-id": [ "27e4e6dd-09e8-4048-9e06-887ca6823e15" ], "X-AspNet-Version": [ "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/d2719f11-79db-4f28-ba4e-75b638b1248b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d332bed0-155a-4748-b99a-71fa90f56fab" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d7357312-0645-44ba-a848-ffdcf4b3a1cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014259Z:d7357312-0645-44ba-a848-ffdcf4b3a1cd" ], + "x-ms-correlation-request-id": [ "426d15f5-6ef9-4c2d-8484-165ad0b96217" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234418Z:426d15f5-6ef9-4c2d-8484-165ad0b96217" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83F2B980E1614E3A82C3A957D11F7714 Ref B: MWH011020806052 Ref C: 2025-11-14T01:42:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:42:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DA986E634D1481780E9ECC683B5DC02 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"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-14T01:42:58.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52645,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52645\",\"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-14T23:44:18.57\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "474" ], - "x-ms-client-request-id": [ "348171c7-b94e-4be8-b6b9-62702aed38a9" ], + "x-ms-client-request-id": [ "11e15c8d-80bf-441b-b1f1-b049a018a658" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11924,37 +11924,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83920cf0-2a3d-4b66-9353-269089709b77" ], + "x-ms-request-id": [ "5e1dce5b-7480-4ffc-94a8-21e5fb6df9d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3765f3bf-1d48-4bcc-a140-3105d05e4449" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014329Z:3765f3bf-1d48-4bcc-a140-3105d05e4449" ], + "x-ms-correlation-request-id": [ "deed9f74-30cf-4648-b322-3d05efc02c92" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234449Z:deed9f74-30cf-4648-b322-3d05efc02c92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31A6BE24E4884930832D4148C2957946 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 412265A7318B48A8B5D50B4C51FCB09A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52645,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52645\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:44:18.57\",\"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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "475" ], - "x-ms-client-request-id": [ "348171c7-b94e-4be8-b6b9-62702aed38a9" ], + "x-ms-client-request-id": [ "11e15c8d-80bf-441b-b1f1-b049a018a658" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11969,24 +11969,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a070655-370a-4449-a4ad-2b3938190444" ], + "x-ms-request-id": [ "553b55c6-60bc-44a7-926d-001a5d2e3cd3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e43e31b9-9713-4054-b934-149596c968ad" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014329Z:e43e31b9-9713-4054-b934-149596c968ad" ], + "x-ms-correlation-request-id": [ "465e6184-6a6f-45cc-a786-b75c216b960e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234449Z:465e6184-6a6f-45cc-a786-b75c216b960e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F77CF35A46FA4987AC83153DDAD22905 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 398613579D564C5C92213B84090EF179 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52645,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52645\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:44:18.57\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -11998,7 +11998,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "cabdb36c-2e8d-4e66-94dd-347d86fa9d0a" ], + "x-ms-client-request-id": [ "b8a25815-411e-4540-a7c8-d49109a3e709" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12013,36 +12013,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "edade7db-b67f-445f-8a6e-191be123b93a", "73aaa192-b944-4417-aa5d-4d7d828223df", "d234f011-085e-46c3-a168-7a1332531378" ], + "x-ms-original-request-ids": [ "c627a1ef-c1ad-4a07-8ec6-70dc7e0928d0", "3f6ee854-3993-489b-9f34-35d019624727", "64b69adf-5812-4df2-a44a-623bc5de70e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2d68942d-c600-4185-ab46-e0ac1ab7dff4" ], - "x-ms-correlation-request-id": [ "2d68942d-c600-4185-ab46-e0ac1ab7dff4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014330Z:2d68942d-c600-4185-ab46-e0ac1ab7dff4" ], + "x-ms-request-id": [ "1b981f58-c5a7-4e84-8cda-ab4107fbfc00" ], + "x-ms-correlation-request-id": [ "1b981f58-c5a7-4e84-8cda-ab4107fbfc00" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234450Z:1b981f58-c5a7-4e84-8cda-ab4107fbfc00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0FEC48DBD804BFF8BA3CC56151E3858 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E13AA246FAF41A2891DD905CE14BDFD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsjavanoappinsights8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsjavanoappinsights8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "477" ], - "x-ms-client-request-id": [ "2ad2b900-9997-4062-82ff-909650ed6572" ], + "x-ms-client-request-id": [ "109a6f95-1bdd-479e-a0a4-dec1056c90e7" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12057,31 +12057,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "748f0e13-34a0-4141-93e4-a810891d76f1" ], + "x-ms-request-id": [ "c8f88ee8-15f6-4cc5-b07b-f150dd6ba9cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/13d384a1-1769-4ea9-b49b-3b6296c44831" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/35528301-bd46-4fa6-a793-dc514dc58ea3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d06071db-3e1a-4706-87ee-5f2a948671f0" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014331Z:d06071db-3e1a-4706-87ee-5f2a948671f0" ], + "x-ms-correlation-request-id": [ "c81e1f79-19ee-4a20-a245-0a2d5012b763" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234451Z:c81e1f79-19ee-4a20-a245-0a2d5012b763" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3D6831E31104D43B90F819D1137673E Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC4B58855382494D9E6C346BFF0BFFE7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c542b5e4-501e-001a-1d08-550176000000\\nTime:2025-11-14T01:43:31.4586449Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:534b5b1f-201e-003c-15c0-550ca7000000\\nTime:2025-11-14T23:44:51.3952106Z\"}}", "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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsjavanoappinsights8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsjavanoappinsights8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -12096,25 +12096,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231F37E0E5B1\"" ], - "x-ms-request-id": [ "13d89a5b-3b9c-4f81-9e60-a4c01cdda718" ], + "ETag": [ "\"0x8DE23D7CE543116\"" ], + "x-ms-request-id": [ "1d2eeeb9-80b7-4393-95dd-7c7339729907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fad94fe7-5d35-4b7e-98b5-8882f773bc2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/819ac132-f85e-4488-bb03-e2ebfbc3cb3e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "315b3bf3-d248-4820-b73c-f01cea176831" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014332Z:315b3bf3-d248-4820-b73c-f01cea176831" ], + "x-ms-correlation-request-id": [ "437585bc-0fb8-479a-968d-821f1894980e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234452Z:437585bc-0fb8-479a-968d-821f1894980e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1DE2DBEE5044BA38BE131183F22EEBD Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 456A14CF6ECE4C838261C1EEE59AE27E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/blobServices/default/containers/app-package-functionsjavanoappinsightsfqti-0000000\",\"name\":\"app-package-functionsjavanoappinsightsfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/blobServices/default/containers/app-package-functionsjavanoappinsights8wks-0000000\",\"name\":\"app-package-functionsjavanoappinsights8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -12126,7 +12126,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "479" ], - "x-ms-client-request-id": [ "d06c0357-c615-4b6c-ae8e-af43f11f7f21" ], + "x-ms-client-request-id": [ "4ebdc8af-726f-45d9-9cdc-98179576ecf4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12141,36 +12141,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5d83591b-e621-48bc-a0cd-61a14eae96a2", "a1181065-f48d-4951-bc91-68c84cc30e47", "648997b5-bd29-43ab-ac3a-8388d207b6b0" ], + "x-ms-original-request-ids": [ "40f66b7d-c907-4628-b283-0fbf289f5f93", "12b7eb03-ff21-4d13-b78a-2fbc565e9add", "85d7f3c7-a6bc-4ccc-bf8c-12dad4aa27a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "72c06e84-ef1c-4899-b139-45ebc8378389" ], - "x-ms-correlation-request-id": [ "72c06e84-ef1c-4899-b139-45ebc8378389" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014333Z:72c06e84-ef1c-4899-b139-45ebc8378389" ], + "x-ms-request-id": [ "6a7713eb-b4a4-4c87-bb5e-5f55536dba9a" ], + "x-ms-correlation-request-id": [ "6a7713eb-b4a4-4c87-bb5e-5f55536dba9a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234452Z:6a7713eb-b4a4-4c87-bb5e-5f55536dba9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35D029B4F26D4FBD897530E00C974506 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1E35160522E4C9A9E9E8F033A7E098C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "480" ], - "x-ms-client-request-id": [ "8633c96a-1c15-4a1c-8d85-15918014abf1" ], + "x-ms-client-request-id": [ "f24fb9b5-8cc1-4db0-9259-991ed16f9954" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12185,23 +12185,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "557f8770-3088-4c65-99d1-9dab8784bb04" ], + "x-ms-request-id": [ "bd346838-d211-4204-8b69-2e9c71201a6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/34d48a9b-70de-4225-bcb5-7776979c1cfe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/39d8f7c5-1fee-48e2-a46f-da5f309507a9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "eda53bab-fd78-496f-932c-c59ccbfd6ee4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014333Z:eda53bab-fd78-496f-932c-c59ccbfd6ee4" ], + "x-ms-correlation-request-id": [ "df3d4f25-8b72-4cfd-a62a-4e44cbda584d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234453Z:df3d4f25-8b72-4cfd-a62a-4e44cbda584d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18549ADB01D94BB2A4196748F65FFC61 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B195E51004A2441A835C23113B2593FF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"WhYHAYzZgwUAbGtuOlnJjj5Y4eq/iI6/xG47VGFIRig1ZreceeaMaGSkpKydjV/C7a4ouuKEwFLw+ASt1+2ScQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -12213,7 +12213,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "481" ], - "x-ms-client-request-id": [ "e0a56974-4e57-4659-aac2-b99eddf9b596" ], + "x-ms-client-request-id": [ "e5bb2b0e-d16c-4163-83a9-8af9b7cf1ded" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12228,36 +12228,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c20df24d-a898-4a65-8b86-5cd8b964a209", "345c5f0b-a3ad-4d7e-be35-0efe6ab9fe3b", "3f3a4d9e-f88e-4e24-ba2f-06f7fd03eea7" ], + "x-ms-original-request-ids": [ "879b4ac8-3674-4441-adb9-ddae4f4cb570", "5362ffd0-babf-45b7-8348-05db8d0e9d31", "8a09de22-a5b4-49bf-89fe-5cc23d23a759" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "786b8c12-3320-474d-ad15-b2bd816b60b5" ], - "x-ms-correlation-request-id": [ "786b8c12-3320-474d-ad15-b2bd816b60b5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014334Z:786b8c12-3320-474d-ad15-b2bd816b60b5" ], + "x-ms-request-id": [ "058bd0f3-94ae-4b58-83cc-0707bf17f99e" ], + "x-ms-correlation-request-id": [ "058bd0f3-94ae-4b58-83cc-0707bf17f99e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234454Z:058bd0f3-94ae-4b58-83cc-0707bf17f99e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AA23D637231459BB210D43C476C552B Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 29FD1CD5F3B54D6381DA998F63498883 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "19d39951-7d66-4854-a7fa-ef817b602c8d" ], + "x-ms-client-request-id": [ "dd24c2ce-57ae-4590-a65a-a93c00ad284e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12272,31 +12272,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7fc3f340-233c-47c6-b15f-8d32af7a976c" ], + "x-ms-request-id": [ "6ef8e5bb-0aec-4595-958e-bd81a0914453" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/478cdcac-7676-42e3-b9d6-1742d58ec827" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/790247e2-7dfd-46ed-a3ba-0724a2fa5203" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f1783574-ca8e-4037-9d24-b31f694e3795" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014335Z:f1783574-ca8e-4037-9d24-b31f694e3795" ], + "x-ms-correlation-request-id": [ "4bfab5ca-c4d2-41c6-b5ee-01a5099ba4b2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234455Z:4bfab5ca-c4d2-41c6-b5ee-01a5099ba4b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BA6C958364141A28BAEB3BB8AE85868 Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4BB2EB856864CA3A3CF9BD4C410D5B3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:44:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"DL2PKq+SgVkd4RVz94qI7zWFGy/mLxw8RNXy/AX5p8peb3jyfN9ftCHsabFcE39jc+xDETH3MP0G+ASt47RULQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"WhYHAYzZgwUAbGtuOlnJjj5Y4eq/iI6/xG47VGFIRig1ZreceeaMaGSkpKydjV/C7a4ouuKEwFLw+ASt1+2ScQ==\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -12310,39 +12310,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508195466D5\"" ], + "ETag": [ "\"1DC55C0AF4838E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d3e33a6-b07a-44cb-9595-c5203bfc69f6" ], + "x-ms-request-id": [ "afddf437-aeba-4216-bb31-58ea76801000" ], "X-AspNet-Version": [ "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/74d77bca-2dab-4c4f-aaca-733c2b3cac54" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7a7592a6-e6e1-4566-bea8-a063a7d961cf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "36fec1e7-b4bd-47e2-ab3e-fbe332ef4cb1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014359Z:36fec1e7-b4bd-47e2-ab3e-fbe332ef4cb1" ], + "x-ms-correlation-request-id": [ "32ac628c-0ad5-4588-9227-c54b2123df32" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234518Z:32ac628c-0ad5-4588-9227-c54b2123df32" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DACAF2E27BA3462C8EBF748D41EDA71E Ref B: MWH011020806052 Ref C: 2025-11-14T01:43:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:43:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D55E7663DB8046A98A759B770487F177 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:44:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9596" ], + "Content-Length": [ "9589" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:37.56\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Java-NoAppInsights-8wks\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\",\"functions-java-noappinsights-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:44:57.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks\",\"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-8wks\\\\$Functions-Java-NoAppInsights-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-java-noappinsights-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "0fbeeb0b-a105-436d-8e25-6d9bc3fd1bd5" ], + "x-ms-client-request-id": [ "ef91909c-fff1-401b-afa6-80cbdfaf4de4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12356,38 +12356,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550825A664B5\"" ], + "ETag": [ "\"1DC55C0BB7619F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3c13d01-ce5b-4603-aef4-19c09bba3ea2" ], + "x-ms-request-id": [ "1865e138-2fff-463e-8a37-d0e78520b72e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e84546d9-35a5-4f8a-85ab-1fab0b8adce5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014430Z:e84546d9-35a5-4f8a-85ab-1fab0b8adce5" ], + "x-ms-correlation-request-id": [ "83ccc1db-a59a-47ca-8b27-2110365f1f0d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234548Z:83ccc1db-a59a-47ca-8b27-2110365f1f0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F28AD7214814FB5919285FA4943A00C Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBCED02B9A6242AE99E7488944671226 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9578" ], + "Content-Length": [ "9571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Java-NoAppInsights-8wks\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\",\"functions-java-noappinsights-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:45:18.1433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks\",\"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-8wks\\\\$Functions-Java-NoAppInsights-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-java-noappinsights-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "485" ], - "x-ms-client-request-id": [ "173b52fe-d9ce-45c9-8266-2bc1f00a75d5" ], + "x-ms-client-request-id": [ "b747bdf3-4c65-4be8-a69e-2629bdae638a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12402,38 +12402,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550825A664B5\"" ], + "ETag": [ "\"1DC55C0BB7619F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2904a5e0-c58a-474c-86f5-c4e4c79a717c" ], + "x-ms-request-id": [ "70e453a5-5ed1-4567-bb85-ec75ac8282d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "41246ba5-e963-47ac-a27c-c10a0cf225c0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014430Z:41246ba5-e963-47ac-a27c-c10a0cf225c0" ], + "x-ms-correlation-request-id": [ "1796a3a9-2090-46bd-819b-4ca0108438c3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234549Z:1796a3a9-2090-46bd-819b-4ca0108438c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 360EE3508340460ABCA08FBD1D9A056B Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEDFADCD05034B1D9637F6A0D93C59AF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9578" ], + "Content-Length": [ "9571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Java-NoAppInsights-8wks\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\",\"functions-java-noappinsights-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:45:18.1433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks\",\"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-8wks\\\\$Functions-Java-NoAppInsights-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-java-noappinsights-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "ad78b45e-c479-465c-b1ac-8c9962cc533c" ], + "x-ms-client-request-id": [ "88100461-4f1b-4056-8e5b-a858e5a3f40e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12449,36 +12449,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8498566e-ecc2-47de-a73c-848f7aafaa8c" ], + "x-ms-request-id": [ "69c53ebb-9d78-4d90-9cf1-3e3846a39a1b" ], "X-AspNet-Version": [ "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/eb18323d-11fe-409c-809b-ac308057b6d8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/473bce85-c076-4036-aafc-b0f0baac4166" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "619101d8-e630-4b3b-b56d-40559d8059eb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014431Z:619101d8-e630-4b3b-b56d-40559d8059eb" ], + "x-ms-correlation-request-id": [ "64b225d3-39af-4cf1-ac59-39b19ecf3941" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234549Z:64b225d3-39af-4cf1-ac59-39b19ecf3941" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC7304AC721A4B94B702A196DAE395E0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 50FB066FB8754AE7B3B71E8C3AF3613C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "487" ], - "x-ms-client-request-id": [ "29bd5ae0-aab6-4ea0-a967-a35f56918b51" ], + "x-ms-client-request-id": [ "94528938-dfeb-4b6d-b93a-4ffd46f42112" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12494,37 +12494,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "961ac456-143c-47e2-95f1-18ec92f1fc93" ], + "x-ms-request-id": [ "e805f58b-22e3-4d22-b2e2-ec278eeefa86" ], "X-AspNet-Version": [ "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/8b0d5b62-26fe-4072-b92e-d92bf06adeaf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a6e7952c-63c5-4202-9ce3-36f51c5174eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a3ccee3b-5fb2-4559-b680-ee0e3e598172" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014431Z:a3ccee3b-5fb2-4559-b680-ee0e3e598172" ], + "x-ms-correlation-request-id": [ "97688837-cfd6-4d01-a4d0-80d36f8a305f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234550Z:97688837-cfd6-4d01-a4d0-80d36f8a305f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03BABBBFD23148B2B21D878AD69283BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89E077E257DB46E592A14707EAC8594E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "488" ], - "x-ms-client-request-id": [ "a7b88c65-16ed-486f-9e8b-5221002044e6" ], + "x-ms-client-request-id": [ "24e58ea9-035b-4f54-9de8-b79cbe83d0e5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12540,36 +12540,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab0fc6ac-825b-4127-b8e6-5a2e3925616b" ], + "x-ms-request-id": [ "df4b656f-c9a9-4b02-931d-40a404b0f263" ], "X-AspNet-Version": [ "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/0787c554-5d3f-458a-859c-7d7a368de3d3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a3bd3623-c207-473f-8840-9e41018d206a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d3289271-b576-4292-9db8-c195cda98949" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014432Z:d3289271-b576-4292-9db8-c195cda98949" ], + "x-ms-correlation-request-id": [ "996e0e7a-b716-4b62-932c-880f4b9dace9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234551Z:996e0e7a-b716-4b62-932c-880f4b9dace9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13C50E26BAFD42D995D9E5C5A0B338DB Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEDF63541EFA45E99D99ACCB8444D443 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "793fd312-a62c-47b8-90e6-c3911eb314c0" ], + "x-ms-client-request-id": [ "53293159-35d8-480a-a667-edacb4af793c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12585,36 +12585,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e810f0e-5e88-43af-89a9-ead799536615" ], + "x-ms-request-id": [ "89bdd28f-d6b5-4583-a20d-1843869f605a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68b21798-dda5-4d14-bf82-dc4794805a8d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014433Z:68b21798-dda5-4d14-bf82-dc4794805a8d" ], + "x-ms-correlation-request-id": [ "af8ec6fb-fc99-4b7b-adad-15c5a872947f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234551Z:af8ec6fb-fc99-4b7b-adad-15c5a872947f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D73561C3C4E64BE38ABFD9549465E64F Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C6E1A40283F4E96B98CD8B28EDB0A43 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52645,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52645\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:44:18.57\",\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "490" ], - "x-ms-client-request-id": [ "11896830-0ac1-475f-b61c-2b5e6b9edfa4" ], + "x-ms-client-request-id": [ "3042127f-f7e9-4b0b-8450-50a2eeaf1a19" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12629,38 +12629,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550825A664B5\"" ], + "ETag": [ "\"1DC55C0BB7619F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9070170-915c-4df3-b36d-615d77f60455" ], + "x-ms-request-id": [ "a50ca7c7-4b36-4e3a-8db4-4a097a437bbb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "448086ae-9ebc-44ba-a524-b5b03150f92d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014433Z:448086ae-9ebc-44ba-a524-b5b03150f92d" ], + "x-ms-correlation-request-id": [ "1e279b37-3148-4861-b658-a2b579fa23c4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234551Z:1e279b37-3148-4861-b658-a2b579fa23c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3671FF41339B43B6A6395F7B4B7EC256 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7BDACED44D0843A8B89CFDF895F3539D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9578" ], + "Content-Length": [ "9571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Java-NoAppInsights-8wks\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\",\"functions-java-noappinsights-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:45:18.1433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks\",\"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-8wks\\\\$Functions-Java-NoAppInsights-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-java-noappinsights-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "491" ], - "x-ms-client-request-id": [ "5fa2a4cd-d3bf-49ac-8d36-7fb5aa189000" ], + "x-ms-client-request-id": [ "1c12ca42-e544-4ec7-9282-1572f7bbb9e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12676,36 +12676,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb7a5475-daeb-4c21-9089-dfc0fd800148" ], + "x-ms-request-id": [ "62d4ee08-b3eb-44d9-b592-69f086fa44cf" ], "X-AspNet-Version": [ "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/093bddfc-4d27-4f9e-85f9-9ce7e542184d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/927ff808-732c-4e75-9b06-35bcbceaf00e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "45e9f14d-d6e1-4570-ad98-37779522664b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014434Z:45e9f14d-d6e1-4570-ad98-37779522664b" ], + "x-ms-correlation-request-id": [ "b95447a4-6c40-48e1-9063-71d3ea62ac19" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234552Z:b95447a4-6c40-48e1-9063-71d3ea62ac19" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6574797A97D044D483CC4CC057BDC710 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B4383E6754F4A29986334A785B885DC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "a4fb6eed-8bb2-45e7-9560-c2d99310003c" ], + "x-ms-client-request-id": [ "2f9abe4b-dbd9-41e9-a945-658ff5e49bdd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12721,37 +12721,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c06ebc2-5bf9-4140-b270-4087889de2dc" ], + "x-ms-request-id": [ "87ac108f-18d9-4460-baf7-4dbae98c4af3" ], "X-AspNet-Version": [ "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/8e1f7851-e856-4c42-a2c0-410e7305b980" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/62fcb31f-4876-4ad2-a1ee-643e39afb043" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7295d887-d2fa-4cf0-b1ea-693100140bf7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014434Z:7295d887-d2fa-4cf0-b1ea-693100140bf7" ], + "x-ms-correlation-request-id": [ "9f0b8d36-0489-420d-8f63-ba936fa8bb03" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234552Z:9f0b8d36-0489-420d-8f63-ba936fa8bb03" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4648836BDB3E4C77801CDD1931A26D80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 006563E0ECF44C9EAF176E4BA9098981 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "493" ], - "x-ms-client-request-id": [ "d61f25d5-4a63-41fd-a8a6-a05eb45f4901" ], + "x-ms-client-request-id": [ "703c456f-80d3-4fc5-8b18-8456b11af392" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12766,38 +12766,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550825A664B5\"" ], + "ETag": [ "\"1DC55C0BB7619F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "104cc2ac-2a14-463f-a630-958a1292d484" ], + "x-ms-request-id": [ "3f62cc86-d7e2-4e27-a6c3-7384f522ce37" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "16baeae9-735f-4a86-989c-6e4d1eea4c93" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014435Z:16baeae9-735f-4a86-989c-6e4d1eea4c93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bdcc3e94-1a8c-4ef7-8f49-7de53fdaea3b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234553Z:bdcc3e94-1a8c-4ef7-8f49-7de53fdaea3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00FCB61879934D85BADFF30D2328677A Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3ADB6E619144AC3974A5422EA046AA9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9578" ], + "Content-Length": [ "9571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Java-NoAppInsights-fqti\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-fqti.azurewebsites.net\",\"functions-java-noappinsights-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"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-fqti.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-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:43:59.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasafqti.blob.core.windows.net/app-package-functionsjavanoappinsightsfqti-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-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-fqti\\\\$Functions-Java-NoAppInsights-fqti\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"defaultHostName\":\"functions-java-noappinsights-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Java-NoAppInsights-8wks\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-8wks.azurewebsites.net\",\"functions-java-noappinsights-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8wks.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-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:45:18.1433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks\",\"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-8wks\\\\$Functions-Java-NoAppInsights-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-java-noappinsights-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "9a87c98b-e0ab-4d55-9655-4999955099f0" ], + "x-ms-client-request-id": [ "c316b2bf-6d93-4959-8440-dc59fded5afb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12813,36 +12813,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fcf9ee99-f1f6-40ba-a08d-daaf228e6475" ], + "x-ms-request-id": [ "92e852a3-817e-4800-a90a-ddc5256ba6cf" ], "X-AspNet-Version": [ "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/49ab49a3-50c3-4fba-b204-7e77339e67b5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "f231df00-a777-49e3-8ee9-392952b133b4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014435Z:f231df00-a777-49e3-8ee9-392952b133b4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f642b42a-1ee1-49f1-9375-cc4493df7ade" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a0467669-041e-473e-9c3f-014e13a1b223" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234553Z:a0467669-041e-473e-9c3f-014e13a1b223" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5196FCC5B0D940A4AA405AE009033E6D Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF7A1DC553594CC69DF249962B457E14 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:53Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasafqti;AccountKey=WY738Ej7/IDM6tNGhwaKjSWAfaKpGx9X7D66ke1U28nwpEg/5x6OX3e2cJDCH7xKxIZo05MU9V6K+ASt8Qrz7w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;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-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "4d0354f0-c50e-475f-a404-b7007fa3dc43" ], + "x-ms-client-request-id": [ "d5b656bd-70c5-4347-a4fd-f26f5dfb7511" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12858,37 +12858,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eef37b17-1115-4c29-adcc-7dea4444e9bf" ], + "x-ms-request-id": [ "3e076153-81d0-44ad-bb40-6c9e57486ba3" ], "X-AspNet-Version": [ "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/8fa02bf0-5c77-4e29-a39c-b61bc03a7fd7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c2bce496-cff9-4df4-bcb4-d53e952fa302" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014435Z:c2bce496-cff9-4df4-bcb4-d53e952fa302" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f525d3d4-a854-4323-b333-c5c0a6e4d2b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4aa31e99-2216-4490-9c09-d56b9f3c0917" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234554Z:4aa31e99-2216-4490-9c09-d56b9f3c0917" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DED01438FCB848DA97D7446BF23AA05B Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9482825FEF304BBCAF1E96027F3C4952 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti/config/web\",\"name\":\"Functions-Java-NoAppInsights-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/web\",\"name\":\"Functions-Java-NoAppInsights-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "496" ], - "x-ms-client-request-id": [ "3a0db9d0-57f2-4203-b74f-4451d3d47f00" ], + "x-ms-client-request-id": [ "ced7d90b-24e8-450e-bd48-8d732f201c6f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12904,36 +12904,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acb16c3d-619b-419c-82df-c8cbaf3a52ba" ], + "x-ms-request-id": [ "95f6ef28-67f0-42b8-9e9a-90f9f0a85644" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4d8ff5e1-9e6d-4543-aa8e-43b15f3ea651" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014436Z:4d8ff5e1-9e6d-4543-aa8e-43b15f3ea651" ], + "x-ms-correlation-request-id": [ "e2f8a64a-45bd-45ba-882f-57680180dd2a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234554Z:e2f8a64a-45bd-45ba-882f-57680180dd2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA6773667A6B46109887CBF3110331D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A51F0245D6E8470C94D462834F4A43C5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:45:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62041,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:42:58.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52645,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52645\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:44:18.57\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "497" ], - "x-ms-client-request-id": [ "86506459-00ff-4460-8e65-cf8fdd82de5f" ], + "x-ms-client-request-id": [ "4a118e46-162a-4978-a35a-3a667f47f734" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12948,20 +12948,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550825A664B5\"" ], + "ETag": [ "\"1DC55C0BB7619F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46672a0c-be1d-4140-b39e-8eb4afaa2133" ], + "x-ms-request-id": [ "0ceea597-c064-43d1-92cf-e5711de2a436" ], "X-AspNet-Version": [ "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/6b0513a7-bc00-4eaa-bdcb-4970c9593661" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ba93efb1-4cc4-4487-9feb-5e6a1c54e4af" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c04e6951-ff52-4906-a1e5-42ed08a4d77a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014452Z:c04e6951-ff52-4906-a1e5-42ed08a4d77a" ], + "x-ms-correlation-request-id": [ "b3981f8f-a0a5-468b-935e-201f4fb28721" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234613Z:b3981f8f-a0a5-468b-935e-201f4fb28721" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6E1F3BA75C449398971E0C3F452E450 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 539278AE2D9D4A228656FDF0A38D448F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:45:54Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -12975,7 +12975,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-DotNet-WhatIf-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-WhatIf-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12990,18 +12990,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9318d152-3700-42d3-abfd-0a02f559357c" ], + "x-ms-request-id": [ "18a26bec-1758-4591-97bd-20c8a4b9f22b" ], "X-AspNet-Version": [ "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/d8b304c1-0ecf-474c-85db-a6f100cd4c41" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c9a50d07-b885-4979-8379-3da13c342b38" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db906919-adf1-4f32-ad39-8cf3599172b3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014453Z:db906919-adf1-4f32-ad39-8cf3599172b3" ], + "x-ms-correlation-request-id": [ "72990073-3299-4382-a144-1fbd64fcef31" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234614Z:72990073-3299-4382-a144-1fbd64fcef31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 301A3E705EB04B159ED88B0234EF560B Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74B23F94EE0B4085914D5FBC0BDA46A0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13020,7 +13020,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "500" ], - "x-ms-client-request-id": [ "79fc17b0-37b3-41bf-98f0-f7be27da2b3c" ], + "x-ms-client-request-id": [ "86537262-12de-49ff-b052-7b272997faea" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13035,36 +13035,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c803360b-b046-4e21-92c4-6db7c896f113", "93546e9e-a11a-48a7-af9a-8c957989a29a", "971ab1c2-7a8e-440f-8375-9d7f81208812" ], + "x-ms-original-request-ids": [ "c0474b57-65a0-45c3-940f-2d631b5ee963", "85410fc3-7810-41b8-8420-6e8bc2b9317f", "4abe690c-9e1f-4116-b119-c8a4e95030f2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9d7cb484-2643-4423-a5a8-d348ea11f26d" ], - "x-ms-correlation-request-id": [ "9d7cb484-2643-4423-a5a8-d348ea11f26d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014454Z:9d7cb484-2643-4423-a5a8-d348ea11f26d" ], + "x-ms-request-id": [ "8c8a74cc-bc70-4a15-afb8-4d669b98dc96" ], + "x-ms-correlation-request-id": [ "8c8a74cc-bc70-4a15-afb8-4d669b98dc96" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234615Z:8c8a74cc-bc70-4a15-afb8-4d669b98dc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72622530A3F3434F9B7D73EACD8AE6C7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6B32216FDC340E7BE0BBD01DF687D06 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsdotnetwhatiffqti-0000000?api-version=2019-04-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsdotnetwhatif8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/blobServices/default/containers/app-package-functionsdotnetwhatiffqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/blobServices/default/containers/app-package-functionsdotnetwhatif8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "501" ], - "x-ms-client-request-id": [ "3a3007bc-6e5c-4923-985a-fe6bf58a984e" ], + "x-ms-client-request-id": [ "4edcbf3d-db8b-4b1b-bc9c-076231516fa6" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13079,24 +13079,24 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5958d547-194c-4b5c-9b9b-8241e7004d1c" ], + "x-ms-request-id": [ "7ba46b77-e4b0-45b1-adde-8494a6fd5fab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a6a4dc17-f1f0-4501-ad51-b3e5d67466c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b941ecb8-c2a8-4b85-a56e-ac5a0ad63fc2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a7af2a2-83b6-48a4-95ba-e44b763ba367" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014454Z:4a7af2a2-83b6-48a4-95ba-e44b763ba367" ], + "x-ms-correlation-request-id": [ "23f8301a-9a29-4c24-af44-9b38aa56951e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234615Z:23f8301a-9a29-4c24-af44-9b38aa56951e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C90218A04784E6C8D934BD832C5CB16 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3FF6510787A14F7EB64E6EE949D02DB2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095ef44e-601e-0026-0b08-552633000000\\nTime:2025-11-14T01:44:54.4940746Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9b3ccf23-501e-0064-65c0-551663000000\\nTime:2025-11-14T23:46:15.4628177Z\"}}", "isContentBase64": false } }, @@ -13108,7 +13108,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "502" ], - "x-ms-client-request-id": [ "610bd2ee-07b6-48ac-a76a-0fea93b49919" ], + "x-ms-client-request-id": [ "2d6fe907-1543-4d66-9c13-781468584a8c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13123,36 +13123,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a1dc96f2-7276-4b28-8ace-89d407bcb18c", "326bea0c-4465-49d8-8a22-2a3fbd7836c4", "37d7699e-6429-4a43-b002-f207ce267dc1" ], + "x-ms-original-request-ids": [ "fe4c41c1-5905-42cd-abd0-9693a0df6067", "2752947e-6e92-48af-b924-e039083566c4", "d771ebdf-b536-4bd2-a434-bfb058c210ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f0884439-0763-4932-8aae-13f781c4b4fb" ], - "x-ms-correlation-request-id": [ "f0884439-0763-4932-8aae-13f781c4b4fb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014455Z:f0884439-0763-4932-8aae-13f781c4b4fb" ], + "x-ms-request-id": [ "81e4ee37-34e8-4a1d-a7e5-8c6bd06d4536" ], + "x-ms-correlation-request-id": [ "81e4ee37-34e8-4a1d-a7e5-8c6bd06d4536" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234616Z:81e4ee37-34e8-4a1d-a7e5-8c6bd06d4536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 891FBD9622C744829E01B089EE8D9AFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27A3C656CA484089993197CE464AD0DC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01+5": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "2d2357ba-e682-4fde-aad1-86492a43c04a" ], + "x-ms-client-request-id": [ "3242c7a2-5277-4cef-9f45-8cdb417df863" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13167,23 +13167,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "09c190f0-6fcf-423d-b8eb-6f2bdcec94d8" ], + "x-ms-request-id": [ "00a2b26d-d841-4ba8-a308-dbf24f98ccd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a685353e-36cd-4ce4-a8e7-9a245579d40e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ce899403-6c39-454d-bba9-b201c3adecf0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f7cd399e-8009-4b69-9f95-aec1872f26e3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014455Z:f7cd399e-8009-4b69-9f95-aec1872f26e3" ], + "x-ms-correlation-request-id": [ "59dc4f47-ef39-4ed1-bc3b-6f8bc216a555" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234617Z:59dc4f47-ef39-4ed1-bc3b-6f8bc216a555" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1D504D6FE2F40EAACC96BBA6D7AAFD6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 393F5C2B00B44E47B1073AEF46EA53C3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:16Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"y0i20oOJs7E7JvdkmmHWRMRuuOLIYrgc3GHrMUqNt1eI81wtZYq4xvFwe2HXxXZOg+08yyDZSXFu+ASt0twWmw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -13195,7 +13195,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "504" ], - "x-ms-client-request-id": [ "67dedf8d-8f05-4140-ab02-4a5e91aade90" ], + "x-ms-client-request-id": [ "b075aa91-5d7b-4680-a51e-2083d99f9400" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13210,36 +13210,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "179391ea-4b97-4849-8f45-102c98a6551b", "701087b2-30a5-4649-8046-5fbe4a7e3402", "c256af29-830f-4481-a162-10f6ec11d288" ], + "x-ms-original-request-ids": [ "d4a3b915-a8bf-4527-b0cd-5120c29ada1e", "29aeeea6-1acd-4843-b44a-e0c6989de746", "149a0a46-70d3-42b1-9d76-0cd18e88b523" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0c418244-67ea-4e5f-814b-35eb04a1ce0e" ], - "x-ms-correlation-request-id": [ "0c418244-67ea-4e5f-814b-35eb04a1ce0e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014456Z:0c418244-67ea-4e5f-814b-35eb04a1ce0e" ], + "x-ms-request-id": [ "7bae0cb0-16e6-40a7-b809-340be6cd5598" ], + "x-ms-correlation-request-id": [ "7bae0cb0-16e6-40a7-b809-340be6cd5598" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234617Z:7bae0cb0-16e6-40a7-b809-340be6cd5598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B02752CD2C5F4C7F97E6205B96BD1B28 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 297A6ECE9C8D4E2382AE28A09E27D231 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:17Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/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-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "505" ], - "x-ms-client-request-id": [ "7d8e5704-6ed1-4b83-815b-74a7bd82bc6c" ], + "x-ms-client-request-id": [ "7a7b7e49-d104-47a2-87ad-5f34419e66be" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13254,35 +13254,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "70f2f583-d617-4c35-bdb3-917cfda8a058" ], + "x-ms-request-id": [ "cc784a60-045c-4f74-8c6b-49cbde921144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8044a463-8c9f-4e8c-9b53-c2dfeca079b6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/59064c35-56f3-4117-9ecc-6fafc0b08b02" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "068474ae-59ff-4d72-a064-0595c58cb1bf" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014457Z:068474ae-59ff-4d72-a064-0595c58cb1bf" ], + "x-ms-correlation-request-id": [ "af59c30b-ce1a-41af-a736-8b8212b5806e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234618Z:af59c30b-ce1a-41af-a736-8b8212b5806e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3018E18062546298BA8896BC1E7008A Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57BC29AE21004311BD37E855C8C8F031 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"hv4kgujCNI47EuXOuJ8LX8sr6m/2o6CM1yd5Kfi3ogTAVBmcQxjkxA/DVZ1xKYSX0lRXtEzOH9zz+AStcwU06g==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"GHQLE2bbjq1xVvdJiXloHEkakJw8mcmCL20Fg8ujbDIgtpSOetotHLUvs3zBMBMnxPV7auPrFVC3+AStVHtLzQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"y0i20oOJs7E7JvdkmmHWRMRuuOLIYrgc3GHrMUqNt1eI81wtZYq4xvFwe2HXxXZOg+08yyDZSXFu+ASt0twWmw==\",\"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-fqti/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-fqti?api-version=2023-12-01+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-8wks?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "506" ], - "x-ms-client-request-id": [ "e4657011-ac40-4df3-a12b-faff6f3622c2" ], + "x-ms-client-request-id": [ "274485b9-36de-4c73-b0a5-25246d42de58" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13298,74 +13298,29 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "af9c5361-3737-4775-845c-abf0bec42269" ], - "x-ms-correlation-request-id": [ "af9c5361-3737-4775-845c-abf0bec42269" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014457Z:af9c5361-3737-4775-845c-abf0bec42269" ], + "x-ms-request-id": [ "bbf81680-009b-4597-937a-933c616a8dc1" ], + "x-ms-correlation-request-id": [ "bbf81680-009b-4597-937a-933c616a8dc1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234618Z:bbf81680-009b-4597-937a-933c616a8dc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5548DD0A5A6E4F2F944570A86434D387 Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC6B0E76DBB6456EA0DD8B1E434B2EE7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:18Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "242" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-fqti\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-8wks\u0027 under resource group \u0027Functions-Flex-RG-8wks\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/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-Flex-RG-fqti/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "507" ], - "x-ms-client-request-id": [ "b032ecf5-2f6f-4067-bf0a-67f1b1aa6e9f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9991ec51-5213-477c-a82c-a932126e8cc7" ], - "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": [ "40463ab2-e3ce-4e8e-8644-22f67c65f7ca" ], - "x-ms-correlation-request-id": [ "40463ab2-e3ce-4e8e-8644-22f67c65f7ca" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014459Z:40463ab2-e3ce-4e8e-8644-22f67c65f7ca" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B4ECF9C5F4345FEA0FA3AA2AC41DDBB Ref B: MWH011020806052 Ref C: 2025-11-14T01:44:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:44:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1702" ], - "Content-Type": [ "application/json; charset=utf-8" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":6,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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-Cleanup-Test-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Cleanup-Test-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13380,18 +13335,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c26ec5dc-3335-4be5-be83-5b6b20176414" ], + "x-ms-request-id": [ "20f4355f-a889-4074-a1ba-c19533ea74f9" ], "X-AspNet-Version": [ "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/62a4d82a-919f-4ece-99bb-43ba604f41ab" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "5169cf16-555f-44ef-bffd-51277ab6c514" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014501Z:5169cf16-555f-44ef-bffd-51277ab6c514" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bd975ab0-d5ea-4766-aa27-5b5be81ba1ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cdf5b458-0ca9-4f1d-a71b-b613139dbc77" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234619Z:cdf5b458-0ca9-4f1d-a71b-b613139dbc77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61682472762845D7BD113F6F714BFFC7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:00Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 478726F928394E08863E74F451AA888D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13402,10 +13357,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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": { @@ -13421,38 +13376,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0bf4b4da-09c9-46b4-afd8-4c526c37586c" ], + "x-ms-request-id": [ "08e9c6e0-5573-4c3e-a4ea-483b42442a35" ], "X-AspNet-Version": [ "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/7b3588df-4114-4f90-9227-8279c61c5154" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ac94356f-6ea6-492c-9290-2bba592071b0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "40e08ebe-a923-441f-825c-f5799457b1cb" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014508Z:40e08ebe-a923-441f-825c-f5799457b1cb" ], + "x-ms-correlation-request-id": [ "26b5306d-65ac-4f12-a7dd-ec898972351f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234624Z:26b5306d-65ac-4f12-a7dd-ec898972351f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B8DCEA287024DD9B51C2B96CBEE9587 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E776E6B28EF47258B0B014A280D05AA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52545,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52545\",\"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-14T01:45:08.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52646,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52646\",\"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-14T23:46:24.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "511" ], - "x-ms-client-request-id": [ "c1684c4f-ad06-4c6d-b3ad-247e27b70d1c" ], + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "598e47e3-5de5-463a-8542-700e417f0689" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13467,37 +13422,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2509727f-5f1d-4398-ad14-24c559e2f3ef" ], + "x-ms-request-id": [ "cb541f21-1263-4576-a8ba-b40a73c40fb6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c38e5ce7-70c3-4ea1-9549-1791fc50e94b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014538Z:c38e5ce7-70c3-4ea1-9549-1791fc50e94b" ], + "x-ms-correlation-request-id": [ "2cd2502f-aa3b-43d9-8f0d-8a804b48a655" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234655Z:2cd2502f-aa3b-43d9-8f0d-8a804b48a655" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B4AF28951EF42E383B9F620A73D5847 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9135FDA286F242F987F2F0CB8FC23ABB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52545,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52545\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:45:08.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52646,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52646\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:46:24.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+5": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "512" ], - "x-ms-client-request-id": [ "c1684c4f-ad06-4c6d-b3ad-247e27b70d1c" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "598e47e3-5de5-463a-8542-700e417f0689" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13512,36 +13467,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ad2f578-b2c2-4a53-b8a7-ab09516d22d3" ], + "x-ms-request-id": [ "7c80c13d-53f2-46b5-840c-a874a6840e02" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "acac5651-dbe0-4e03-a540-a830370b9bae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014539Z:acac5651-dbe0-4e03-a540-a830370b9bae" ], + "x-ms-correlation-request-id": [ "54299f86-b401-4172-83b4-77920db4004a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234655Z:54299f86-b401-4172-83b4-77920db4004a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0680188BCB7E4C9B8F73D22EF789C961 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 222AE7D30F514CF7B5C6B0C0C1834F16 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52545,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52545\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:45:08.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52646,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52646\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:46:24.5033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "513" ], - "x-ms-client-request-id": [ "3f9a59bf-c131-4c3d-84b2-c51228825c2f" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "ab1adbf7-0d9a-45cb-85c8-307fdbf5479b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13556,36 +13511,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "52cfc3e7-b6f5-4ade-b8f9-0b4ce93f213e", "d214a231-2339-4308-a3c5-a0958fb433da", "62bb97e2-b33e-4e39-bad6-d4c337e574d5" ], + "x-ms-original-request-ids": [ "be570e06-959d-46cb-8c5a-3466a745b722", "b660bab0-f3dc-41be-aedd-5a97ade12890", "d2342c1d-5726-4d96-bf4c-08917d34256f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9c075f30-85d5-464d-bdcc-afd0f0a03045" ], - "x-ms-correlation-request-id": [ "9c075f30-85d5-464d-bdcc-afd0f0a03045" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014540Z:9c075f30-85d5-464d-bdcc-afd0f0a03045" ], + "x-ms-request-id": [ "dd50483f-25bb-4d7b-9657-7b315bc19ee9" ], + "x-ms-correlation-request-id": [ "dd50483f-25bb-4d7b-9657-7b315bc19ee9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234656Z:dd50483f-25bb-4d7b-9657-7b315bc19ee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07FC7BAACA90419384F7088627CC24ED Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4AEDE3523514978876DAD4DBDDBC9D7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:56Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "514" ], - "x-ms-client-request-id": [ "a98ebf1e-8905-4fff-bd67-53a4a66c5b99" ], + "x-ms-unique-id": [ "513" ], + "x-ms-client-request-id": [ "94850859-ad0b-4430-af43-d94a51618e0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13600,31 +13555,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a6d042a1-8e1c-48c9-a2e0-a8e2eea78844" ], + "x-ms-request-id": [ "43b18b67-e89e-4118-af7e-206787cd752f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/38a60874-bba6-489f-88df-d37e9aa1b2dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bccac6a6-585f-47f2-b1f6-b46791584e9b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7fcc2ac2-92e0-4bf1-9265-bf0436d20550" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014541Z:7fcc2ac2-92e0-4bf1-9265-bf0436d20550" ], + "x-ms-correlation-request-id": [ "4449ce9f-a6cc-4d76-b2d3-70bd6657fb55" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234657Z:4449ce9f-a6cc-4d76-b2d3-70bd6657fb55" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B55CA32BDC5E4DA7B9CAC64C81055E80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF277C5E3AFC49109F0442FA45135920 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095f24ec-601e-0026-1108-552633000000\\nTime:2025-11-14T01:45:41.1257975Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:bda19b81-a01e-0071-79c0-550292000000\\nTime:2025-11-14T23:46:57.3664297Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -13639,37 +13594,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231F85230EFF\"" ], - "x-ms-request-id": [ "b28e4b6e-c53b-4c91-84a6-889d8858e290" ], + "ETag": [ "\"0x8DE23D81973ACD6\"" ], + "x-ms-request-id": [ "77c8c473-9af3-4bc3-9cb4-4babd774f1d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/be34798c-db54-458c-b477-e146a810bb46" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5b563809-d9aa-47c6-95ad-8493d1f2f2fd" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "68fa1191-9430-4c14-891a-a9a55d8d4235" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014541Z:68fa1191-9430-4c14-891a-a9a55d8d4235" ], + "x-ms-correlation-request-id": [ "1053009d-1510-4692-8786-2962c48e0588" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234658Z:1053009d-1510-4692-8786-2962c48e0588" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D7310E693CD4830B724E93B296A5B98 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8C58D32C8DC41AFB39A7DA4BAC7FE3D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "452" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000\",\"name\":\"app-package-functionscleanuptestfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-0000000\",\"name\":\"app-package-functionscleanuptest8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "516" ], - "x-ms-client-request-id": [ "d37a3e24-fb1b-45e7-aa9b-4ae0e225fa29" ], + "x-ms-unique-id": [ "515" ], + "x-ms-client-request-id": [ "4f1f3f62-6b78-4b5b-b63b-5a30162bd1a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13684,36 +13639,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c9553ff7-b7a4-4ff8-bffe-201a3e2f183d", "7c7e94f3-86a9-48eb-a376-eba780aabc97", "159563ff-c882-4a6a-884e-c9823d43d64b" ], + "x-ms-original-request-ids": [ "855fabc9-d091-4e38-8047-dd76557ff4c7", "1b89215b-1bb7-4150-a2dd-ec26d32a1716", "87eb8fd7-1bb3-449c-93c4-2d538f5c1a78" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1de2c9a3-102f-443b-bac5-c64e35c990c5" ], - "x-ms-correlation-request-id": [ "1de2c9a3-102f-443b-bac5-c64e35c990c5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014542Z:1de2c9a3-102f-443b-bac5-c64e35c990c5" ], + "x-ms-request-id": [ "d8866242-e621-4358-be28-596243cb9d49" ], + "x-ms-correlation-request-id": [ "d8866242-e621-4358-be28-596243cb9d49" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234659Z:d8866242-e621-4358-be28-596243cb9d49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9131EDBAB4FB4B0CB0FCDE898DDC0D60 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71F371DF9FB54388BA647963AF299CCA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "517" ], - "x-ms-client-request-id": [ "747742b4-29fc-4638-8783-e88085f19e5d" ], + "x-ms-unique-id": [ "516" ], + "x-ms-client-request-id": [ "f3fb4c53-d302-4ae6-a7fc-eb0c3b58e44b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13728,35 +13683,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "46c8e067-8011-4799-816f-c6ce3403b076" ], + "x-ms-request-id": [ "624c72ae-e449-42c4-8f1e-261a215eff2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/015d4683-6b13-4de0-9870-6c1f60220a29" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/29a8b5f0-955f-45a9-b677-62c788697ef4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd24967b-f53f-4949-accb-0508deb0305f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014543Z:bd24967b-f53f-4949-accb-0508deb0305f" ], + "x-ms-correlation-request-id": [ "6fa3b3f1-0a72-4f00-9e89-03ecbf09d5bb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234659Z:6fa3b3f1-0a72-4f00-9e89-03ecbf09d5bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBCE0413303C4E3487BD68A7235659A3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5055DCB49BC44C49A1AF254C68EDD1F0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:46:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/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": [ "518" ], - "x-ms-client-request-id": [ "e5da39c2-497f-4fbe-8201-e3538cc97d40" ], + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "c03730d6-d895-4992-a151-16ef8338fbeb" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13771,36 +13726,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2a2a17ae-219b-4265-99a8-af5fcf74f6f8", "17ebaa1f-b4c3-44b5-998c-02c1d142f080", "80e29e71-46e0-4c66-944a-135af25b6c7a" ], + "x-ms-original-request-ids": [ "e737894c-75e8-4a23-86f8-e8a24eb79449", "d1719b32-0149-4ab7-a312-fe2dc6335dcb", "5418dd7a-60e6-44da-a930-e2e0210f9835" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c368e6a0-444a-4b8d-8a3c-8dd7d36345b7" ], - "x-ms-correlation-request-id": [ "c368e6a0-444a-4b8d-8a3c-8dd7d36345b7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014543Z:c368e6a0-444a-4b8d-8a3c-8dd7d36345b7" ], + "x-ms-request-id": [ "d3e6314a-e92c-409e-aad9-b2dd815136f4" ], + "x-ms-correlation-request-id": [ "d3e6314a-e92c-409e-aad9-b2dd815136f4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234700Z:d3e6314a-e92c-409e-aad9-b2dd815136f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 675A3D7CA9EF42BFA64DD14F7EA9E238 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 737AB56333314E1B829F99494A25018E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:46:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "519" ], - "x-ms-client-request-id": [ "5eda5384-49c5-4f0a-9b86-137e0adbd064" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "e79eafaa-ec62-492f-91af-ab517abb53ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13815,35 +13770,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "88d9363d-bc59-48fb-b20b-ce18bd0d55a8" ], + "x-ms-request-id": [ "5994db4f-b339-42fa-a25f-db10348ea59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8fecd5e7-84c9-4f3a-a065-7f19fbc2143a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a895eba2-fc70-47a3-b681-79673902e9e9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "81a1ec67-c54c-4e87-8011-6044e8e7261a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014544Z:81a1ec67-c54c-4e87-8011-6044e8e7261a" ], + "x-ms-correlation-request-id": [ "53aa8d9c-2bf9-4e4b-adbe-e7deeab1bfc8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234701Z:53aa8d9c-2bf9-4e4b-adbe-e7deeab1bfc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B428F1640B6247648E6A44F105E9E47D Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8E3C9DA7DA643E688C6AF075A38713F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+12": { "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": [ "520" ], - "x-ms-client-request-id": [ "db251778-311f-4309-aa5b-5d61a07e134a" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "68b6c02f-5f8f-4d35-9838-75fcf8d05c0f" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13859,35 +13814,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ "", "" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "e953efb1-9a3e-4d41-a3cc-cd63733f2cd1" ], - "x-ms-correlation-request-id": [ "e953efb1-9a3e-4d41-a3cc-cd63733f2cd1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014545Z:e953efb1-9a3e-4d41-a3cc-cd63733f2cd1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "91ca1aa1-531e-4ddf-a680-fdcde1d11631" ], + "x-ms-correlation-request-id": [ "91ca1aa1-531e-4ddf-a680-fdcde1d11631" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234702Z:91ca1aa1-531e-4ddf-a680-fdcde1d11631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FAAE9B3B2A3415197D03F023D2EB5ED Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F352AB1C38EE40BD904EBB4A6DD8C261 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "23560" ], + "Content-Length": [ "23561" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"0607097e-0000-0300-0000-6916815d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-zq9mby\",\"AppId\":\"577086da-1113-4767-8fd2-5be3162b711a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7\",\"ConnectionString\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\",\"Name\":\"Functions-PowerShell-74-zq9mby\",\"CreationDate\":\"2025-11-14T01:09:45.6834528+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-zq9mby_577086da-1113-4767-8fd2-5be3162b711a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-zq9mby-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607b791-0000-0300-0000-691681ac0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-nvsk38\",\"AppId\":\"6b2a637a-aba1-4db7-9981-515565c4013a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"91220207-0288-4ea6-97e6-e3dfcec0044e\",\"ConnectionString\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\",\"Name\":\"Functions-Node-22-nvsk38\",\"CreationDate\":\"2025-11-14T01:11:04.0715359+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-nvsk38_6b2a637a-aba1-4db7-9981-515565c4013a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-nvsk38-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607d2a1-0000-0300-0000-691681e90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-r0w8sa\",\"AppId\":\"77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"868ce2c0-1023-4398-80d6-d3e35eebb25b\",\"ConnectionString\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Name\":\"Functions-DotNet-8-r0w8sa\",\"CreationDate\":\"2025-11-14T01:12:03.525488+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-r0w8sa_77455f5c-2f64-431c-bd21-50a9fab514e9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-r0w8sa-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607dcb6-0000-0300-0000-6916823c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-wq8ygc\",\"AppId\":\"c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c03b9d8e-8300-4a6d-b792-e0ff245d67ee\",\"ConnectionString\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Name\":\"Functions-Python-312-wq8ygc\",\"CreationDate\":\"2025-11-14T01:13:27.6629314+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-wq8ygc_c4683401-bb3c-41e0-8a2a-2a9d2824c97e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-wq8ygc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607a1ca-0000-0300-0000-691682830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b-new\",\"name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"AppId\":\"c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"ConnectionString\":\"InstrumentationKey=a866cc82-d5d8-4255-9a52-47cf08de5202;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"CreationDate\":\"2025-11-14T01:14:39.0556967+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-1hufk4w38b-new_c1f3521a-f04c-4aef-bcc1-e1cca9013861_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"07075f14-0000-0300-0000-691683930000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"AppId\":\"fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"312a33ec-580c-489c-9e80-b4756c09f157\",\"ConnectionString\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"CreationDate\":\"2025-11-14T01:19:10.9931567+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-12q6pcrzoi_fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-12q6pcrzoi-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803fa6c-0000-0200-0000-691684290000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-fqti\",\"AppId\":\"823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0efc83b9-d2e9-496d-b76a-e87df304b77e\",\"ConnectionString\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Name\":\"Functions-Flex-DotNetIsolated-fqti\",\"CreationDate\":\"2025-11-14T01:21:33.3685541+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-fqti_823ef2bc-8959-4971-9e37-d58eb123f38b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033075-0000-0200-0000-691684ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-fqti\",\"AppId\":\"968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aa497dca-41c0-4f25-ad85-ea184f06d59b\",\"ConnectionString\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Name\":\"Functions-Flex-Node-fqti\",\"CreationDate\":\"2025-11-14T01:23:48.8943199+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-fqti_968cb2e5-19cd-47be-8eca-ca4b54c56198_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033d7f-0000-0200-0000-6916852e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-fqti\",\"AppId\":\"c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a897e4a4-c870-4a15-b6df-76a54fac74ca\",\"ConnectionString\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Name\":\"Functions-Flex-Python-fqti\",\"CreationDate\":\"2025-11-14T01:25:56.8152138+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-fqti_c8d3eeb1-cc4b-4546-ae45-fd80c21d286a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78030586-0000-0200-0000-691685b30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-fqti\",\"AppId\":\"506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5f545946-1221-4899-8409-2baa332ca728\",\"ConnectionString\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Name\":\"Functions-Flex-Java-fqti\",\"CreationDate\":\"2025-11-14T01:28:08.7465952+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-fqti_506250a4-0ecc-4d16-8014-fb7524d4703c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78036d8f-0000-0200-0000-6916863e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-fqti\",\"AppId\":\"f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5e7b4cd9-73cb-403a-af0a-64ff32c02c12\",\"ConnectionString\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Name\":\"Functions-Flex-PowerShell-fqti\",\"CreationDate\":\"2025-11-14T01:30:28.5375832+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-fqti_f22e7b45-3b1f-44aa-bf06-d4dd323abd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78035797-0000-0200-0000-691686c10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-fqti\",\"AppId\":\"14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"143ef9ce-b044-489b-a861-98f08c756b79\",\"ConnectionString\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Name\":\"Functions-Flex-Custom-fqti\",\"CreationDate\":\"2025-11-14T01:32:39.371848+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-fqti_14dddbd1-fcb1-48dc-995c-951171fe2050_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803b09f-0000-0200-0000-691687430000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-fqti\",\"AppId\":\"f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bd21d36f-2dc5-44b2-9972-cf28dac8d726\",\"ConnectionString\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Name\":\"Functions-Python-Flex-Scaling-fqti\",\"CreationDate\":\"2025-11-14T01:34:50.0402919+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-fqti_f5571936-d55e-4e8c-8611-251a7ef7afc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78031fa7-0000-0200-0000-691687c70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-fqti\",\"AppId\":\"269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a1b15bef-4df1-46f5-8ef7-d8e8f302abca\",\"ConnectionString\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Name\":\"Functions-Node-SystemIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:37:01.0199716+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-fqti_269d91da-c89b-4f48-ae9b-b80601d7c805_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780384ae-0000-0200-0000-691688480000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"AppId\":\"4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c59dec64-225e-4f2a-9c2b-65004cec61ca\",\"ConnectionString\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:39:10.2457191+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-fqti_4eae3893-4654-43e2-94cf-9c61db1775ec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780310b6-0000-0200-0000-691688ce0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-fqti\",\"AppId\":\"986f7406-ebeb-4294-ab2d-3752dc766278\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7d557552-614c-4aa8-b52b-bfb83f30b33e\",\"ConnectionString\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"Name\":\"Functions-PS-CustomConfig-fqti\",\"CreationDate\":\"2025-11-14T01:41:24.4271273+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-fqti_986f7406-ebeb-4294-ab2d-3752dc766278_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"2e00aeba-0000-0300-0000-6917b6a60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-1atxo6\",\"AppId\":\"e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"53405245-5093-44e0-a9cc-cd426c74b85c\",\"ConnectionString\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Name\":\"Functions-PowerShell-74-1atxo6\",\"CreationDate\":\"2025-11-14T23:09:20.4769102+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-1atxo6_e667224e-63d9-4b58-bb3e-e4bea5f2998e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-1atxo6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0068c6-0000-0300-0000-6917b6f60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-fh9m0d\",\"AppId\":\"0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"36242a54-f281-419e-b84a-a18b99e16280\",\"ConnectionString\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Name\":\"Functions-Node-22-fh9m0d\",\"CreationDate\":\"2025-11-14T23:10:40.9294639+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-fh9m0d_0c3e3e43-71c6-4f32-8603-6f0551f7cdf7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-fh9m0d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0039cf-0000-0300-0000-6917b7310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-du5asv\",\"AppId\":\"1ec6fdef-6987-470b-8410-eea09542cb04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e62ada86-7580-495a-8077-5b5a93de6f32\",\"ConnectionString\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\",\"Name\":\"Functions-DotNet-8-du5asv\",\"CreationDate\":\"2025-11-14T23:11:41.0752283+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-du5asv_1ec6fdef-6987-470b-8410-eea09542cb04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-du5asv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0083da-0000-0300-0000-6917b7860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-w61tuq\",\"AppId\":\"e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"279763ee-9e4a-474e-a4ce-8ee813ab10e6\",\"ConnectionString\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Name\":\"Functions-Python-312-w61tuq\",\"CreationDate\":\"2025-11-14T23:13:05.5690645+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-w61tuq_e07f516a-6724-4c46-8f4a-555cb3096b98_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-w61tuq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e005fe4-0000-0300-0000-6917b7cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"AppId\":\"7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"ConnectionString\":\"InstrumentationKey=f45b116a-0da0-498b-9bda-9d9ebe6bf3de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"CreationDate\":\"2025-11-14T23:14:15.0740314+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-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2f007d1a-0000-0300-0000-6917b94c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"AppId\":\"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\"ConnectionString\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"CreationDate\":\"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-8wks\",\"AppId\":\"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\"ConnectionString\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Name\":\"Functions-Flex-DotNetIsolated-8wks\",\"CreationDate\":\"2025-11-14T23:22:43.5766283+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-8wks\",\"AppId\":\"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\"ConnectionString\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Name\":\"Functions-Flex-Node-8wks\",\"CreationDate\":\"2025-11-14T23:24:55.9628013+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-8wks\",\"AppId\":\"0fd5bb15-8254-462a-b124-f01de57491fa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6646e0da-7c3a-4442-b697-9e3161408467\",\"ConnectionString\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\",\"Name\":\"Functions-Flex-Python-8wks\",\"CreationDate\":\"2025-11-14T23:27:10.9745115+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-8wks\",\"AppId\":\"a21649a5-21a9-4a06-9682-73121bf51140\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\"ConnectionString\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\",\"Name\":\"Functions-Flex-Java-8wks\",\"CreationDate\":\"2025-11-14T23:29:21.9297403+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-8wks\",\"AppId\":\"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8aeec65a-58b3-4406-be83-a2af16406d60\",\"ConnectionString\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Name\":\"Functions-Flex-PowerShell-8wks\",\"CreationDate\":\"2025-11-14T23:31:32.4922476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-8wks\",\"AppId\":\"67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"246f07f9-7f47-4fe4-b736-28824b450760\",\"ConnectionString\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Name\":\"Functions-Flex-Custom-8wks\",\"CreationDate\":\"2025-11-14T23:33:45.854673+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-8wks\",\"AppId\":\"33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dc1718c9-6151-4735-9017-ed993ce3056c\",\"ConnectionString\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Name\":\"Functions-Python-Flex-Scaling-8wks\",\"CreationDate\":\"2025-11-14T23:36:00.7780637+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-8wks\",\"AppId\":\"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72f873d8-e77f-4cd1-b81b-333b88113567\",\"ConnectionString\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Name\":\"Functions-Node-SystemIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:38:16.9557851+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"AppId\":\"6496531f-759a-4e89-9157-c2dd51765c50\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\"ConnectionString\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:40:27.9512322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-8wks\",\"AppId\":\"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\"ConnectionString\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Name\":\"Functions-PS-CustomConfig-8wks\",\"CreationDate\":\"2025-11-14T23:42:44.0467968+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+13": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "521" ], - "x-ms-client-request-id": [ "513c46ab-9e65-4cd1-a903-b0182cee4410" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "f24d12c3-a3c7-4c20-b797-5e7dabe2864d" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13903,18 +13858,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9d105af-0ecd-4e38-b7c9-796a17802edc" ], + "x-ms-request-id": [ "781a2a91-1fec-4cf8-81af-82304621f446" ], "X-AspNet-Version": [ "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/6031c90b-c0af-4361-944f-58bf4ad88de1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b51465b7-1e5b-4351-a587-32ab32ea9b2d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "64b1c3ed-23ec-4fd5-9d24-f1675920710f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014551Z:64b1c3ed-23ec-4fd5-9d24-f1675920710f" ], + "x-ms-correlation-request-id": [ "c1e2a021-7ff2-4c3b-80c8-14ddf99cba1c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234708Z:c1e2a021-7ff2-4c3b-80c8-14ddf99cba1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5EB0C79E88B54F80B6FC8E69E74EE6B5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 432B2B68A9C54E4E81959DD1B7C8DD4E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:07 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13924,15 +13879,15 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-0000000?api-version=2019-04-01+14": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionscleanuptestfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionscleanuptest8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "522" ], - "x-ms-client-request-id": [ "7f1dce5a-9c10-45f4-a6a1-17121d5f0cb4" ], + "x-ms-unique-id": [ "521" ], + "x-ms-client-request-id": [ "36cbdd56-9282-4910-8636-3be049f5590e" ], "CommandName": [ "Az.Functions.internal\\Remove-AzBlobContainer" ], "FullCommandName": [ "Remove-AzBlobContainer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13947,17 +13902,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a5c69063-095f-4508-ac99-c2ba864ff81a" ], + "x-ms-request-id": [ "1cf3d742-b5c3-4e61-a6d0-c93601a3f9fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2f0c5169-3039-4bfc-909c-de32ef650122" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4c82da8a-3027-4daf-80ea-af04991d7cdb" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "e95206ff-a58d-48c7-9641-baeb45b4ebf1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014551Z:e95206ff-a58d-48c7-9641-baeb45b4ebf1" ], + "x-ms-correlation-request-id": [ "5839c168-c780-4308-b3c9-1baa1bc173e9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234708Z:5839c168-c780-4308-b3c9-1baa1bc173e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F206F618DDE5422A8407D9097CF920F6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55D62844707449D48759FC348274619F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:08 GMT" ] }, "ContentHeaders": { "Content-Type": [ "text/plain; charset=utf-8" ], @@ -13968,15 +13923,15 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Cleanup-Test-fqti?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Cleanup-Test-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Cleanup-Test-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Cleanup-Test-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "523" ], - "x-ms-client-request-id": [ "9fead595-b95d-425d-9ef7-7d1f85a6b059" ], + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "29cfc545-c6ea-405d-894f-5fc00766dc8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -13992,33 +13947,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "8d5bbac2-8a29-48de-b9c3-bf47e95b3196" ], - "x-ms-correlation-request-id": [ "8d5bbac2-8a29-48de-b9c3-bf47e95b3196" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014551Z:8d5bbac2-8a29-48de-b9c3-bf47e95b3196" ], + "x-ms-request-id": [ "6c39cdb4-5e80-4a0d-8a77-29fe7156b0cb" ], + "x-ms-correlation-request-id": [ "6c39cdb4-5e80-4a0d-8a77-29fe7156b0cb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234708Z:6c39cdb4-5e80-4a0d-8a77-29fe7156b0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 347438E224C2420F90DB0CC0B65E9EDA Ref B: MWH011020806052 Ref C: 2025-11-14T01:45:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:45:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99997D6EC53049E58F4906AB2E10100C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "241" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Cleanup-Test-fqti\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Cleanup-Test-8wks\u0027 under resource group \u0027Functions-Flex-RG-8wks\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan and container when Flex Consumption app creation fails (missing App Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "524" ], - "x-ms-client-request-id": [ "230d9661-267b-4411-9f1c-f109d35c78a8" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "eee85f08-07e2-4ecf-9137-95e457388205" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14034,21 +13989,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "9b75154c-3254-4148-b111-7660de58f990" ], - "x-ms-correlation-request-id": [ "9b75154c-3254-4148-b111-7660de58f990" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014602Z:9b75154c-3254-4148-b111-7660de58f990" ], + "x-ms-request-id": [ "886645c3-0ea1-4818-85ef-0efbe6e9594d" ], + "x-ms-correlation-request-id": [ "886645c3-0ea1-4818-85ef-0efbe6e9594d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234719Z:886645c3-0ea1-4818-85ef-0efbe6e9594d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6BC116551A734A2AA9D7FF03C68BB602 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0192C811D8914FF2AAFC949DF76EFB94 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRGfqti-0000\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRG8wks-0000\u0027 under resource group \u0027Functions-Flex-RG-8wks\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -14056,7 +14011,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -14071,18 +14026,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "167a7ceb-bb7a-45cf-a24e-81002db1b507" ], + "x-ms-request-id": [ "ac418b5a-36a8-4fd7-b9a7-e99ba363db00" ], "X-AspNet-Version": [ "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/74eb1b3f-f190-42ea-a52f-6bd79cf70449" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6819ce3f-d744-4364-a303-3cf9ade5090b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3404cbe1-d304-4f8d-ba82-8acdefba1f72" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014603Z:3404cbe1-d304-4f8d-ba82-8acdefba1f72" ], + "x-ms-correlation-request-id": [ "c8690465-e373-4804-818c-103adb3a766e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234720Z:c8690465-e373-4804-818c-103adb3a766e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0CF79FF686443F8BB403B2EEC8EAB6D Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3400284749F4E8DB096A0A3FFEA2349 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:19Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -14093,10 +14048,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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": { @@ -14112,38 +14067,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d626f5b-95c5-40ea-9768-cca8e7224e8b" ], + "x-ms-request-id": [ "90b94656-1d7f-4fb6-9efc-bbbaac01c95b" ], "X-AspNet-Version": [ "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/45eb266e-c653-4520-a856-4f47389c1fa8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4a823a11-c40e-45c1-9221-80b4e8905f0b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9d7d5a8d-080b-4ef9-b3dc-96149fd75676" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014608Z:9d7d5a8d-080b-4ef9-b3dc-96149fd75676" ], + "x-ms-correlation-request-id": [ "4d819b77-f3e7-42b5-b9bd-0bc2a23f1e69" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234725Z:4d819b77-f3e7-42b5-b9bd-0bc2a23f1e69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04E0434E0845466EA9B4FC3C311BE2A5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B768E6EF69543DEA8EE783B15A58A25 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-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-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52647,\"name\":\"ASP-FunctionsFlexRG8wks-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-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52647\",\"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-14T23:47:24.81\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "528" ], - "x-ms-client-request-id": [ "6c299823-8060-438f-b1f0-547ee2b71240" ], + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "e80b3361-4ff5-43d3-9134-5e9f243037da" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14158,37 +14113,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4803cd2a-31ca-42ae-84c0-a8758b48f61a" ], + "x-ms-request-id": [ "2d9806cb-bc51-4314-832c-c981914e820c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7766d844-17c8-4cc4-87cd-fae662a1cce4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014638Z:7766d844-17c8-4cc4-87cd-fae662a1cce4" ], + "x-ms-correlation-request-id": [ "85a2ce2b-4500-45d8-8716-4a5ba12cfdc2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234755Z:85a2ce2b-4500-45d8-8716-4a5ba12cfdc2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 474F7A63FC08473EA6FBF80FC3322AEA Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 750DF77208F641108525A435E429892F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52647,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52647\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:47:24.81\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "6c299823-8060-438f-b1f0-547ee2b71240" ], + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "e80b3361-4ff5-43d3-9134-5e9f243037da" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14203,24 +14158,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "effd927c-afb6-4722-ba58-602b3b5c3376" ], + "x-ms-request-id": [ "fcf0e673-d529-4c06-b18d-31d4a2fd3bab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "18ec81b4-136d-441c-a937-2211950f2ac2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014639Z:18ec81b4-136d-441c-a937-2211950f2ac2" ], + "x-ms-correlation-request-id": [ "425934a4-4847-449a-aa96-9fb55d5ed344" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234756Z:425934a4-4847-449a-aa96-9fb55d5ed344" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 468101883A294EA19D1CA07101A3B232 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9FCC017CC10D44A98B001665909CCDD7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52647,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52647\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:47:24.81\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -14231,8 +14186,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "530" ], - "x-ms-client-request-id": [ "8e5db27f-1933-4d35-8510-cf6ef2590968" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "e2867239-1e5b-4265-bf61-66b1c6e3b007" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14247,36 +14202,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "bf962b4b-12d6-42bc-84aa-d67077bcd87e", "68267722-4dd5-4762-bcf1-65eb1dad1677", "c7cac9cf-d750-4a75-92c7-2886900b655d" ], + "x-ms-original-request-ids": [ "bb74733a-d46f-4d72-9598-cda57ab1386c", "f5435179-b841-4159-b335-abe8872e0509", "666c2f89-7806-4ae4-b812-d59f996fbd66" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "da02e6f4-f433-42cf-b464-45f82cf6a338" ], - "x-ms-correlation-request-id": [ "da02e6f4-f433-42cf-b464-45f82cf6a338" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014640Z:da02e6f4-f433-42cf-b464-45f82cf6a338" ], + "x-ms-request-id": [ "91047fb9-f90e-4e50-9b4c-6344dcec591f" ], + "x-ms-correlation-request-id": [ "91047fb9-f90e-4e50-9b4c-6344dcec591f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234757Z:91047fb9-f90e-4e50-9b4c-6344dcec591f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F79E94AB8A3B47D78371373D0BADAAD2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBEA1C0F1ACA4D1B8BB96D7D9B22EE20 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:56Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsremoveflexplan8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsremoveflexplan8wks-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "531" ], - "x-ms-client-request-id": [ "00124662-c92e-49b0-9b7d-f3870e06c61f" ], + "x-ms-unique-id": [ "530" ], + "x-ms-client-request-id": [ "e57b23fe-f685-41d9-9d14-931981603340" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14291,31 +14246,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "72b7f7a2-29c7-4c4b-b7b3-c84d44140587" ], + "x-ms-request-id": [ "0b20aa10-27aa-4fd4-9008-faecdbcd78ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d4d70acc-c91a-4b2e-a97e-b2d1ab050365" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/347ed2db-3dba-4ae2-bc8e-ddf5e0bf3201" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62fccd63-6068-4b7e-ae6b-b4c67c3c776c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014640Z:62fccd63-6068-4b7e-ae6b-b4c67c3c776c" ], + "x-ms-correlation-request-id": [ "0b3f238b-ddfe-451b-bf38-27bc60373141" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234757Z:0b3f238b-ddfe-451b-bf38-27bc60373141" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D29E054FD1B44FB689EAC710D1586D46 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8C2A37D8D97427083FA22BFF9E5873C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:095f666f-601e-0026-7f08-552633000000\\nTime:2025-11-14T01:46:40.8325468Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:bda20612-a01e-0071-24c1-550292000000\\nTime:2025-11-14T23:47:57.4956510Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsremoveflexplan8wks-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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsremoveflexplan8wks-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -14330,25 +14285,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE231FA8B3E723\"" ], - "x-ms-request-id": [ "a8d14d8f-3c69-4d7b-9548-d5bdefe6a3a2" ], + "ETag": [ "\"0x8DE23D83D61143F\"" ], + "x-ms-request-id": [ "9d26c46e-07aa-4f88-a13d-04a409334e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d1ebe8d0-a573-4ef5-81c0-a99df41d04f4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b3923001-64f8-48e3-bbab-6b6a2d7f3ac0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "fd993c98-17fd-4228-be30-85f3806edaea" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014641Z:fd993c98-17fd-4228-be30-85f3806edaea" ], + "x-ms-correlation-request-id": [ "c35fbb80-b468-41ad-bec8-3b58d832ee37" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234758Z:c35fbb80-b468-41ad-bec8-3b58d832ee37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49B2D36AB0004CAEBE4FF61A5C04976A Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 301BAC93C3BB4EA1A5A50518B2A828D3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/blobServices/default/containers/app-package-functionsremoveflexplanfqti-0000000\",\"name\":\"app-package-functionsremoveflexplanfqti-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/blobServices/default/containers/app-package-functionsremoveflexplan8wks-0000000\",\"name\":\"app-package-functionsremoveflexplan8wks-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -14359,8 +14314,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "db6469b4-95b2-468d-a71a-97ab781e057e" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "50b3108b-9b16-4673-b05e-1240e3f0ce11" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14375,36 +14330,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f068ee9b-b03a-473d-a5e8-f8755a495b56", "cf7ff7bb-4b04-4f4c-89b8-c377ab537f56", "d6adebd8-f8f1-4987-9d37-c6767a324991" ], + "x-ms-original-request-ids": [ "c6a3d370-2df4-45b5-a974-ffc7b169d566", "2e7989d5-6296-4f63-afc1-ab5a30d68572", "c324da5a-564b-499a-98c6-9dc28d71a0e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "635bd468-51d1-4f9d-9341-bb3fcc051b3f" ], - "x-ms-correlation-request-id": [ "635bd468-51d1-4f9d-9341-bb3fcc051b3f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014642Z:635bd468-51d1-4f9d-9341-bb3fcc051b3f" ], + "x-ms-request-id": [ "ac4036d4-de77-4178-94b4-2c1ce8013b40" ], + "x-ms-correlation-request-id": [ "ac4036d4-de77-4178-94b4-2c1ce8013b40" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234759Z:ac4036d4-de77-4178-94b4-2c1ce8013b40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 302B9B5E81124A76B36D01D521198B04 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AC09977B368438DB54B77116C43CF5F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "534" ], - "x-ms-client-request-id": [ "d5d83369-aeab-4c28-a15f-9262fa8ae530" ], + "x-ms-unique-id": [ "533" ], + "x-ms-client-request-id": [ "b6e33e1c-00df-4b3d-b8e6-12851649ecaf" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14419,23 +14374,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ca8b3651-94d1-441d-b8aa-955958922770" ], + "x-ms-request-id": [ "37c9df4f-02e9-41f7-a332-edfbb40e4e1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8468245d-2af0-414b-92af-7c6d100044ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f442f823-16da-4f54-8c6c-0471814fcfec" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "98fb9565-d5ea-48a8-88d1-79c1af6ff300" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014643Z:98fb9565-d5ea-48a8-88d1-79c1af6ff300" ], + "x-ms-correlation-request-id": [ "d8c477a7-03fa-490d-8436-99200499809a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234759Z:d8c477a7-03fa-490d-8436-99200499809a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5FC01A408E1421A9FEAABC963096BEF Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 782A8C96F5434C1BA62F5ED7AAAEECDC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -14446,8 +14401,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "535" ], - "x-ms-client-request-id": [ "254143bd-6815-479d-9cf0-6f31da921ca0" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "45a61d39-c4d3-4d6f-86ad-15b6acfdf5e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14462,36 +14417,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d424fc70-3193-477f-8b52-1e2e5f16a0bb", "14c89ada-2f31-4536-a7de-e4de34b046b1", "01ef3638-99d1-489b-8eac-cd76be0504c0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "8a1444c8-4943-494a-a49c-9d24c039b254" ], - "x-ms-correlation-request-id": [ "8a1444c8-4943-494a-a49c-9d24c039b254" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014644Z:8a1444c8-4943-494a-a49c-9d24c039b254" ], + "x-ms-original-request-ids": [ "a88dbc7a-e408-41da-b85d-f7ed5e1e64f4", "2bb1b492-30e9-4750-849d-20f3818fa0fb", "ddb9fc15-be06-484d-8a34-83c268345885" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "795bca38-eade-4ad4-b0df-062cc7e259cc" ], + "x-ms-correlation-request-id": [ "795bca38-eade-4ad4-b0df-062cc7e259cc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234800Z:795bca38-eade-4ad4-b0df-062cc7e259cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 429A67A86D8743E58A233AD3F2A7BD07 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EFDA2DFF1DE43899A8444E357E8CA19 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:47:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:47:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/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-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "536" ], - "x-ms-client-request-id": [ "240f8381-1733-4423-a9a7-8a8aa6aa3cb6" ], + "x-ms-unique-id": [ "535" ], + "x-ms-client-request-id": [ "b5725d1c-0cc4-44b8-aaa0-7ac1152e1c52" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14506,30 +14461,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "360a4643-33ef-4fc4-b069-9afeb21a5706" ], + "x-ms-request-id": [ "5776b5b7-de8f-40bb-a11b-0aef7ed5aa78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/accdd692-ede8-49ca-98fd-f017d4b0004a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a1b02d16-681a-4066-a96a-a6836cffb97e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c4d56f96-d3a3-45d4-a858-81591494e616" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014644Z:c4d56f96-d3a3-45d4-a858-81591494e616" ], + "x-ms-correlation-request-id": [ "6cb67565-46d7-4128-ab81-b80b33eec8be" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234800Z:6cb67565-46d7-4128-ab81-b80b33eec8be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A6C5A1C10D24CD98C2FFCF1FC4B967B Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B5BED9AE34C441BBCEC959C501B35C8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:48:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:48:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"9dY1uXORhMS1zA9BX7l15o6Df6wrXOSRNFJIsczOl1vPTv8kYswwUdwHdaROToJMXDgmdMPKzv0G+ASt3+xFzw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SDth5/yhcCL54bpcn6Eru9jGd6iLfL6nzN4Y5mObAKVu1eudXCE1cXV87BaQF2vpuWwnH1YJ9h9x+AStVHlLNw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-fqti?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-8wks?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-fqti?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-8wks?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": { @@ -14549,30 +14504,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e4d84f06-a200-499b-ba76-5b87888b8fb2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7c3838a9-13da-4aa7-bf6f-0bab4796c581" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "decc20f5-7a29-47d9-9003-d45588ee1fe7" ], - "x-ms-correlation-request-id": [ "decc20f5-7a29-47d9-9003-d45588ee1fe7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014657Z:decc20f5-7a29-47d9-9003-d45588ee1fe7" ], + "x-ms-request-id": [ "a9f9b53b-72d5-4b8f-a045-5632589f75c0" ], + "x-ms-correlation-request-id": [ "a9f9b53b-72d5-4b8f-a045-5632589f75c0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234814Z:a9f9b53b-72d5-4b8f-a045-5632589f75c0" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9698F783037E4F418607F9361B761706 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:46:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E3457E12B264164806B80714F8A3859 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:48:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:48:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"780305c8-0000-0200-0000-69168a110000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Remove-FlexPlan-fqti\",\r\n \"name\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"AppId\": \"0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e49ed1a3-64f6-4bb2-9926-8c63360b2424\",\r\n \"ConnectionString\": \"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\r\n \"Name\": \"Functions-Remove-FlexPlan-fqti\",\r\n \"CreationDate\": \"2025-11-14T01:46:46.7503128+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-fqti_0823e19a-ea36-42d1-8cc8-def2dda9bd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-fqti-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\": \"\\\"9c03628b-0000-0200-0000-6917bfbe0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Remove-FlexPlan-8wks\",\r\n \"name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"AppId\": \"3b443da0-e327-4130-9731-2a9a6a063cbb\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e\",\r\n \"ConnectionString\": \"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\",\r\n \"Name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:48:03.2101122+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-8wks_3b443da0-e327-4130-9731-2a9a6a063cbb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-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=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -14586,39 +14541,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55089170E56B\"" ], + "ETag": [ "\"1DC55C1273B8495\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02fe5af9-f3ae-402d-9248-60e330ac285a" ], + "x-ms-request-id": [ "638b71f3-d4f6-43a4-be9e-6f82e866f0cd" ], "X-AspNet-Version": [ "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/7e5df653-700f-4a39-a85c-34458691f9b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/24c16e4b-9a03-4f21-a108-0747e24a0eb3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "3081dcd2-12e4-4ea7-8281-0c92a1f0107a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014720Z:3081dcd2-12e4-4ea7-8281-0c92a1f0107a" ], + "x-ms-correlation-request-id": [ "16cd07d2-3ce1-437b-ae40-9cd43b7f608b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234839Z:16cd07d2-3ce1-437b-ae40-9cd43b7f608b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAEF2AF348CF4C61B894E438ED9482E0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:46:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6FA67F4715E487CBD429D0748218D29 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:48:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:48:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9557" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:46:59.48\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Remove-FlexPlan-8wks\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\",\"functions-remove-flexplan-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:48:17.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-8wks\\\\$Functions-Remove-FlexPlan-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "539" ], - "x-ms-client-request-id": [ "7cc26aff-e286-4d95-9e73-8e4e6440c4ca" ], + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "fac73b64-c6bc-45b3-b4ee-73ba1c9993f0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14632,38 +14587,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55089D9620F5\"" ], + "ETag": [ "\"1DC55C1334FF740\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6333a6a6-a541-49ba-99a0-f96578f6ba6c" ], + "x-ms-request-id": [ "cf649487-b8ed-49fe-9442-244f6b75d339" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37e02ddc-016f-4d92-88be-61d0009c37b3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014751Z:37e02ddc-016f-4d92-88be-61d0009c37b3" ], + "x-ms-correlation-request-id": [ "7fd0a6d9-5ae2-45f2-8ea0-c36833b13626" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234910Z:7fd0a6d9-5ae2-45f2-8ea0-c36833b13626" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1EEE30B594464BBAA6D1508DFBE8EBB8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CBDB3B2B2EA41E9A2B017BEE8AD78DA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9534" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:47:20.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Remove-FlexPlan-8wks\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\",\"functions-remove-flexplan-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:48:39.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-8wks\\\\$Functions-Remove-FlexPlan-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "540" ], - "x-ms-client-request-id": [ "febfe43a-70cc-4f51-9435-86dc97af0ed7" ], + "x-ms-unique-id": [ "539" ], + "x-ms-client-request-id": [ "231830f0-6acd-40ee-9ec7-d7811057c6de" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14678,38 +14633,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55089D9620F5\"" ], + "ETag": [ "\"1DC55C1334FF740\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd4eb993-401f-4687-80d6-e569c84d897d" ], + "x-ms-request-id": [ "245c8b4c-8dad-4652-b021-04919b9d9569" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "45ae6a43-eb3b-412a-8c55-b35fcb82d0d6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014751Z:45ae6a43-eb3b-412a-8c55-b35fcb82d0d6" ], + "x-ms-correlation-request-id": [ "2b3b9136-785f-4b55-8ba8-f42357881c61" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234910Z:2b3b9136-785f-4b55-8ba8-f42357881c61" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 534440FEC90F4D9CB32880E64DE0F20E Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7F1F07E921048CA8DF80EE8BEB2B985 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9534" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:47:20.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Remove-FlexPlan-8wks\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\",\"functions-remove-flexplan-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:48:39.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-8wks\\\\$Functions-Remove-FlexPlan-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "2f734280-b602-4cca-9a09-fba233102d2a" ], + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "6488a9d8-2ce2-4da4-a932-c127ed529033" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14725,36 +14680,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f54b708c-3493-407a-8939-108c93395eb5" ], + "x-ms-request-id": [ "8b99fa1e-2774-4de3-a130-471adeb43b1e" ], "X-AspNet-Version": [ "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/4a08fe88-27ef-47f2-a8a6-b63563d7cfdd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e3014e37-3cc7-40c2-8a96-3482e109beb9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5fde79ef-b326-4d68-98b3-d59ba8dfa7e5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014752Z:5fde79ef-b326-4d68-98b3-d59ba8dfa7e5" ], + "x-ms-correlation-request-id": [ "9120a363-4cbf-470d-9bba-27d995b44103" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234911Z:9120a363-4cbf-470d-9bba-27d995b44103" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C04914824964FBDA8DE063157A7F513 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B73BF882924A4CC593CBE41F0DA15D18 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "542" ], - "x-ms-client-request-id": [ "e2323f05-c6ac-47c2-b059-c63b839c1980" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "57020329-6ec2-4808-a2f7-2b990c288dcb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14770,37 +14725,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3cacf771-7392-461c-be79-3a4b5ddaad03" ], + "x-ms-request-id": [ "610f2c3e-053d-4105-ac8d-6fdaa6182a62" ], "X-AspNet-Version": [ "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/a6d08673-f669-4cec-970c-0d5b6a1b0660" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/48242eba-82b3-4299-be36-2b6a46bfef5a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "56422e98-588c-42a7-8a1c-2739c40ab7ee" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014752Z:56422e98-588c-42a7-8a1c-2739c40ab7ee" ], + "x-ms-correlation-request-id": [ "70f09028-d3aa-4eca-bb29-43a86a0368c4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234911Z:70f09028-d3aa-4eca-bb29-43a86a0368c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0430CD450C3E47818D3905AAFFE785B4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2AEF22AEB1D14FBE9E4DE1B4E19E73C8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/web\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "543" ], - "x-ms-client-request-id": [ "188c2d90-3c65-4d6a-a7db-367ec1acb1a1" ], + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "5bd18d24-263d-49f2-8154-efe44f2f8afc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14816,36 +14771,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df6ae4a9-fa98-49e1-a829-2a96625f2854" ], + "x-ms-request-id": [ "6032c3e7-97cd-43e9-bdc7-fe3d5dda1b63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5e7896f0-ad0f-4e96-9609-39da336fc16a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014753Z:5e7896f0-ad0f-4e96-9609-39da336fc16a" ], + "x-ms-correlation-request-id": [ "2ca78a7a-d96d-4ec2-8cb1-04ec6f9f2318" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234911Z:2ca78a7a-d96d-4ec2-8cb1-04ec6f9f2318" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20B507086B3244AC80EB75981965E548 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2292F289551A4B589B23CDBAB891E64C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52647,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52647\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:47:24.81\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "544" ], - "x-ms-client-request-id": [ "0cad6a10-315b-4006-a409-985e2d2017cd" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "d63468bb-a754-482a-9bbc-0f92c87d42b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14860,38 +14815,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55089D9620F5\"" ], + "ETag": [ "\"1DC55C1334FF740\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc09590b-aeee-4b36-b54b-a10c8dc59773" ], + "x-ms-request-id": [ "678fe528-75ce-4f6d-a790-c9afecca34ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7966ca21-524e-4dd3-8f56-018f3068f06c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014753Z:7966ca21-524e-4dd3-8f56-018f3068f06c" ], + "x-ms-correlation-request-id": [ "d663333e-149e-43df-a110-bdb4136ca004" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234912Z:d663333e-149e-43df-a110-bdb4136ca004" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1557DD50E18442149A3435FCF155E73A Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B9B8D9B65884618B1F134EB9F8F774D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9534" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-fqti\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\"],\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-webspace/sites/Functions-Remove-FlexPlan-fqti\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-fqti\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-fqti.azurewebsites.net\",\"functions-remove-flexplan-fqti.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-fqti.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:47:20.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsafqti.blob.core.windows.net/app-package-functionsremoveflexplanfqti-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-fqti\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-fqti\\\\$Functions-Remove-FlexPlan-fqti\",\"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-fqti\",\"defaultHostName\":\"functions-remove-flexplan-fqti.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-8wks\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\"],\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-webspace/sites/Functions-Remove-FlexPlan-8wks\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-8wks\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-8wks.azurewebsites.net\",\"functions-remove-flexplan-8wks.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-8wks.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:48:39.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-8wks\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-8wks\\\\$Functions-Remove-FlexPlan-8wks\",\"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-8wks\",\"defaultHostName\":\"functions-remove-flexplan-8wks.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "545" ], - "x-ms-client-request-id": [ "8e6f0fde-8365-4b4d-981e-822fe2395c00" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "7377b796-6e9c-49f2-b007-796e448fa418" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14907,36 +14862,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46ba8463-d48e-4857-8dd0-57bc3dc31761" ], + "x-ms-request-id": [ "ab56c346-778b-4910-a2b7-5defdbe11566" ], "X-AspNet-Version": [ "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/b333a331-c3c2-4f91-82cf-be234dd051e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/11879a1c-918a-4be6-a3c8-12874c00bbb1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a99bb1e3-3c69-43ba-b962-ea9ba8f4bcfe" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014754Z:a99bb1e3-3c69-43ba-b962-ea9ba8f4bcfe" ], + "x-ms-correlation-request-id": [ "9a04402d-510c-4f2b-84b6-779788dc2575" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234912Z:9a04402d-510c-4f2b-84b6-779788dc2575" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BBE1AED515D41908D18160CCB807A7A Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92EE69522C1C493DA7ED89C119C667C2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsafqti;AccountKey=/5+2PzNQoiDpfHB+w+ivTXn4uFD9I0+t21GL87NgIj0aH7czRIrB49Yx+DII4RZf2c+msE5/GN9d+AStpHSpFg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/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-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "546" ], - "x-ms-client-request-id": [ "ed3f5e90-dc08-4fe9-827e-d3eda974d7aa" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "612eb05c-79f9-4b5f-a282-b46c2488d40c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14952,37 +14907,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4cd9af62-822f-4a25-8b01-b6fcdc8ad1a6" ], + "x-ms-request-id": [ "1ea0bac7-b391-4976-bd56-592faf0044a2" ], "X-AspNet-Version": [ "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/3f0f5c36-7042-4aa5-b4ff-07e40d1f0747" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "5c66133f-65a0-49ac-b895-04f5af3fb603" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014754Z:5c66133f-65a0-49ac-b895-04f5af3fb603" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9674610d-d170-4b6b-ad3c-dd5d15d7d6c5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e34b4ce0-a7cb-488e-927c-bd0ee0fa32e3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234913Z:e34b4ce0-a7cb-488e-927c-bd0ee0fa32e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D19CF9106E64C4B8033D463C874341F Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4F84AC710FE468C87D8B9A5C9520790 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti/config/web\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/web\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "547" ], - "x-ms-client-request-id": [ "6692bba9-e11c-4f98-bc9b-1473acc3e60d" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "eafafa0c-3c92-4d64-a44b-0a5e565ebc5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -14998,36 +14953,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee6d4cb1-3d76-4ca1-992b-16f47362c4fa" ], + "x-ms-request-id": [ "8c5a82c7-ae47-4fc5-80d2-a924d88fd6cb" ], "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": [ "009a9e20-aa43-4bda-81fe-5c1493a72a1f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014755Z:009a9e20-aa43-4bda-81fe-5c1493a72a1f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f2709feb-1887-46a7-9043-88898d8ceeba" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234914Z:f2709feb-1887-46a7-9043-88898d8ceeba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 848D6CFD0AAC473F90512DE0086A3A09 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:47:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBDB147F33DC4E0AA715701AC393607B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000\",\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52546,\"name\":\"ASP-FunctionsFlexRGfqti-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-21ddf32755d116817368701976396696a7290e2d4c579171b1d04bbf9cb06068-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-fqti\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52546\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:46:08.1166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000\",\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52647,\"name\":\"ASP-FunctionsFlexRG8wks-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-134ff443abec396c385985682f419e21ad48727dd6af9b1ea7fd62fc5fd75ab8-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-8wks\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52647\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:47:24.81\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+23": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "548" ], - "x-ms-client-request-id": [ "92503a5a-a667-4d32-ae21-897a153b24b8" ], + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "7aeba3ae-6818-45aa-96e8-306edcd3b92a" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -15042,20 +14997,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55089D9620F5\"" ], + "ETag": [ "\"1DC55C1334FF740\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a58a67c8-732f-4e95-bca4-f65a019c4fc3" ], + "x-ms-request-id": [ "c62e37e2-c384-4ce4-94c4-97ef49cd4c99" ], "X-AspNet-Version": [ "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/cad33bc5-3dc5-4c53-a7bb-2dacaf50a37f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/275f4248-df62-40c0-b77e-9923f1f1457f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "65728050-3c7e-4786-acb3-01c953714f70" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014814Z:65728050-3c7e-4786-acb3-01c953714f70" ], + "x-ms-correlation-request-id": [ "649f6df4-d4b1-462a-a9e7-49a3ffe27aaa" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234934Z:649f6df4-d4b1-462a-a9e7-49a3ffe27aaa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F66BCF428CE47A98A3E951057B66486 Ref B: MWH011020806052 Ref C: 2025-11-14T01:47:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B437C8B5B9824F1A873761BA9DC341BE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -15065,15 +15020,15 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "5303d609-b827-43a7-bcd0-a621326c155d" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "a024b6d2-0e58-4f1b-b30a-b6e72b2804aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -15089,33 +15044,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "f239d91b-d1df-4a58-bcbf-16dec8092f21" ], - "x-ms-correlation-request-id": [ "f239d91b-d1df-4a58-bcbf-16dec8092f21" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014815Z:f239d91b-d1df-4a58-bcbf-16dec8092f21" ], + "x-ms-request-id": [ "6b8e58b5-d278-46a0-b423-390ae1ef78c4" ], + "x-ms-correlation-request-id": [ "6b8e58b5-d278-46a0-b423-390ae1ef78c4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234934Z:6b8e58b5-d278-46a0-b423-390ae1ef78c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FA983FB14FA43EEB6E4E8063EC73B2E Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:14Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DB5A823642540C8A98931D00CA45797 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:34Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "244" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Remove-FlexPlan-fqti\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks\u0027 under resource group \u0027Functions-Flex-RG-8wks\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGfqti-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "550" ], - "x-ms-client-request-id": [ "d601af55-dfd0-4f72-bd3d-2ba969e64f32" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "0068ab0a-e5e7-44ea-81e7-d29967c41dfe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -15131,21 +15086,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "b37c2c52-877c-4c12-a79c-7b43174e0a27" ], - "x-ms-correlation-request-id": [ "b37c2c52-877c-4c12-a79c-7b43174e0a27" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014825Z:b37c2c52-877c-4c12-a79c-7b43174e0a27" ], + "x-ms-request-id": [ "fe728706-e31f-4ce7-b4c2-8b97a676708b" ], + "x-ms-correlation-request-id": [ "fe728706-e31f-4ce7-b4c2-8b97a676708b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234945Z:fe728706-e31f-4ce7-b4c2-8b97a676708b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A49EA5219D2B423A9BFF6A6DE3247EE2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6430F36D16604167BC83DFD80DE4D145 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:45Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRGfqti-0000\u0027 under resource group \u0027Functions-Flex-RG-fqti\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRG8wks-0000\u0027 under resource group \u0027Functions-Flex-RG-8wks\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 94588addaf8a..18bb96a41084 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-pj3v91g7zb\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomImage-fbul4mq5e0\",\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": [ "dcb00985-8bcc-4f58-9317-eaaed24ad26f" ], + "x-ms-request-id": [ "59084c26-67ff-4a65-9f64-82fff1b0f773" ], "X-AspNet-Version": [ "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/6dabd097-4e12-423b-8d5c-f1a999025ffd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/471a80d5-8e25-4d00-b9c9-3e205b314293" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "556f1797-d44b-4c91-ba31-37b612b5f97e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014826Z:556f1797-d44b-4c91-ba31-37b612b5f97e" ], + "x-ms-correlation-request-id": [ "45a868bd-3aa5-4171-87dd-7a710e480e7e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234946Z:45a868bd-3aa5-4171-87dd-7a710e480e7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C5E90CDAF4D4EB49B759852EF719D4F Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 59ABB806BDCF401AB69DB6D7895C6786 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:45Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,8 +47,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "552" ], - "x-ms-client-request-id": [ "c4758364-000b-4849-bf50-16e339f0b0db" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "d8cea9de-1843-407d-af7c-8eb0f09b3e0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,36 +63,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "dd354a62-a95a-48bd-add7-0d23cbf34a34", "acaa97b3-ed40-461e-9f83-bf8377f08431" ], + "x-ms-original-request-ids": [ "53941d7e-6d08-4602-a20d-a3a2cf9b7e02", "9defb33d-3fcf-4069-93ef-b0ca4f1d7451" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "171021d6-b00e-441f-aafe-62e61b29021a" ], - "x-ms-correlation-request-id": [ "171021d6-b00e-441f-aafe-62e61b29021a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014827Z:171021d6-b00e-441f-aafe-62e61b29021a" ], + "x-ms-request-id": [ "dc8e05a4-fce4-4c76-9446-b493670eddac" ], + "x-ms-correlation-request-id": [ "dc8e05a4-fce4-4c76-9446-b493670eddac" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234947Z:dc8e05a4-fce4-4c76-9446-b493670eddac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 725BA7242EC44E7BBC402C3AE6777CB9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7907425424414EE5BBE8181237C53D51 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:46Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "eefdfd47-ab2a-40b9-a997-41248f2bedfb" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "9f00286d-aee9-4099-9dca-4ccabd81dd69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -108,36 +108,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "115ef949-07f2-4647-95e6-19c9fe8c46a8" ], + "x-ms-request-id": [ "346065d7-cb1c-44ec-9411-1ad0692556c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8ff5beeb-6db6-4de9-b611-6a3422d6a694" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014827Z:8ff5beeb-6db6-4de9-b611-6a3422d6a694" ], + "x-ms-correlation-request-id": [ "ce4f4a6d-1ebb-4259-8edc-4895f5400fc1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234947Z:ce4f4a6d-1ebb-4259-8edc-4895f5400fc1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7BA0C0EF9588434FB44DEBC33D0000C2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93949B9781C24250AC502F8137CC1AC8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "e1b3b882-c74b-46a2-9c1c-26811208b3f2" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "f78421c1-486c-4efc-9637-a6de024bd499" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -153,36 +153,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e69c6b6-e6bb-4d74-8a00-07a9dfedf1f3" ], + "x-ms-request-id": [ "4d3b883e-6924-4137-97d5-e9f26c1a3b52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ce495e15-ff11-4549-afcd-3e0319e31f07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014827Z:ce495e15-ff11-4549-afcd-3e0319e31f07" ], + "x-ms-correlation-request-id": [ "efee2b56-b52d-4df1-9241-33b843d69d5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T234948Z:efee2b56-b52d-4df1-9241-33b843d69d5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CF439AF8FA948578C005ADDD44AD0AF Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D661B155A5F4DC39F769E617B45B067 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "06259234-398c-4f52-be81-e90aa3ad8891" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "db113e4f-389f-49eb-9ca8-16d79eab13e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -198,36 +198,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac0315d0-3057-47ed-b41e-1c1b6f6cbd89" ], + "x-ms-request-id": [ "820b2ccc-379c-45d9-a202-96c98990a446" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3fd1d764-f742-45f7-8d62-484d240577f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014827Z:3fd1d764-f742-45f7-8d62-484d240577f8" ], + "x-ms-correlation-request-id": [ "44355051-7b3e-4d06-9adc-4b8ecdcac5bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T234948Z:44355051-7b3e-4d06-9adc-4b8ecdcac5bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BAAF79EAB35C48C09637B988EE180721 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3AD504B82D5E4A37ABBD610D646EB2B4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "556" ], - "x-ms-client-request-id": [ "388ed3fc-664c-43a6-b384-210de7ce91c1" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "2eee6a15-1861-4b29-baf6-3027e38ea748" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -243,36 +243,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e805a785-b900-4fe4-8528-1dbf96ecaacd" ], + "x-ms-request-id": [ "010bf871-2cfb-4e52-b2e1-0cb23c1921ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c11f1c61-51f0-43c7-85ad-20a4eadaadf3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014828Z:c11f1c61-51f0-43c7-85ad-20a4eadaadf3" ], + "x-ms-correlation-request-id": [ "bbd1fe55-597c-4178-96aa-44c1e4ef6637" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T234948Z:bbd1fe55-597c-4178-96aa-44c1e4ef6637" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01AC558B9F9641ADA53BE8DE9909F5EE Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EDBF412C32C4D5D8CB8EDCCB99E16C2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "557" ], - "x-ms-client-request-id": [ "77f12a62-5d5f-4b7e-bec5-2ebeaef109eb" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "85ae6fa9-00d2-4d39-ba78-4c6b813797d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -288,36 +288,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93cd8c83-aa5e-4af5-b9b8-48ed55770eff" ], + "x-ms-request-id": [ "e6287e80-4c7c-48e8-9902-ac37b1886162" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7425eea1-41a9-498b-845a-7c5ab9c5c438" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014828Z:7425eea1-41a9-498b-845a-7c5ab9c5c438" ], + "x-ms-correlation-request-id": [ "f0acdae9-142e-4e84-89ed-d1a1e120e87b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T234948Z:f0acdae9-142e-4e84-89ed-d1a1e120e87b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D66E5D2019B4BC89C7A5DA90E90B3F4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B927B7672F634E3E869A5AC25E5D73EF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "72a95b20-b143-466c-ab56-c1f19e539070" ], + "x-ms-unique-id": [ "557" ], + "x-ms-client-request-id": [ "fbd9c072-a29e-4807-aac4-336a2f948d36" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -333,24 +333,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5b56209-8861-4854-a86a-928ed9e80e4e" ], + "x-ms-request-id": [ "49955553-20ff-43ee-b8e1-2ae748cecfea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8666659d-30e2-447c-86ad-43d876325a30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014829Z:8666659d-30e2-447c-86ad-43d876325a30" ], + "x-ms-correlation-request-id": [ "794c6739-5817-4f53-ad68-3972969c577a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T234949Z:794c6739-5817-4f53-ad68-3972969c577a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D7B3D5A40E649EDBA7BB6C757B3406F Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6C7390722EB4D4DA30EBCFE9F886275 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1690" ], + "Content-Length": [ "1696" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -361,8 +361,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "559" ], - "x-ms-client-request-id": [ "7d6fb6b6-2e2b-4d10-912d-2320e87655f8" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "415f19f5-6a7d-4bad-9b1c-5ff26518ca49" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -377,36 +377,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "dffe3a2e-e7ca-45b6-b06d-8e9a75483cb7", "4db864e8-d954-427a-bb3b-8b535c9c1154", "a124a05f-b292-4b6c-a9f4-ea6bba79f7e6" ], + "x-ms-original-request-ids": [ "204d420d-73a9-4418-9f9c-5c86ba047d9f", "b4de086a-5f07-4633-9f3f-cdfb240c73d7", "40430dbe-affa-49d5-879f-26af9398b3d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "64848fdf-9a91-4f8c-9bdf-69d3d50a7165" ], - "x-ms-correlation-request-id": [ "64848fdf-9a91-4f8c-9bdf-69d3d50a7165" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014830Z:64848fdf-9a91-4f8c-9bdf-69d3d50a7165" ], + "x-ms-request-id": [ "8ac69833-1eae-49cb-86b6-d7038ee75a69" ], + "x-ms-correlation-request-id": [ "8ac69833-1eae-49cb-86b6-d7038ee75a69" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T234950Z:8ac69833-1eae-49cb-86b6-d7038ee75a69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 796762A76F754311B94FEF85429CB1A7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7D20C4A3FAE402D972D787C7B7D218D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "560" ], - "x-ms-client-request-id": [ "96ede311-1227-420a-a9f8-5d5271e86198" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "eed9fef9-ba2a-43f8-bbbf-ed9c1af35575" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -421,30 +421,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "00dff137-c0ac-4159-b848-b4aba2e9b6c1" ], + "x-ms-request-id": [ "e14633a7-16f7-4273-a557-3a331cc930b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8ed4b6a4-fb6f-4ae7-89df-05a119a414e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3647a6dc-dcf1-4052-91bf-a7ee7c905630" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0ae74d0d-e0ab-4a25-8a23-d747914f7219" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014830Z:0ae74d0d-e0ab-4a25-8a23-d747914f7219" ], + "x-ms-correlation-request-id": [ "29936a6c-5719-4e1d-a18d-70b023370416" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T234950Z:29936a6c-5719-4e1d-a18d-70b023370416" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 36D1C9A9344F47079568C35D35B4B41C Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C085F57F7544FB7B169FEE4E8D1EF64 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"sEtmtKq2Gdh8hOZkroP4avhyxoAbql8eZv63ZJShR2qnQUhsqRAS59GPxVZiuWuhFEiy11+eeRNi+AStUvrV4Q==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Insights/components/Functions-CustomImage-pj3v91g7zb?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Insights/components/Functions-CustomImage-fbul4mq5e0?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-jxyp27/providers/Microsoft.Insights/components/Functions-CustomImage-pj3v91g7zb?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Insights/components/Functions-CustomImage-fbul4mq5e0?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -464,30 +464,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/889a302d-73fa-401a-ac78-f87439107202" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c19298d-d923-4cdc-871a-0fb450441073" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "4f4062a8-9b9e-4bea-864d-a03d1624ea70" ], - "x-ms-correlation-request-id": [ "4f4062a8-9b9e-4bea-864d-a03d1624ea70" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014835Z:4f4062a8-9b9e-4bea-864d-a03d1624ea70" ], + "x-ms-request-id": [ "09d65d03-18b4-4156-91a2-1954a716a58c" ], + "x-ms-correlation-request-id": [ "09d65d03-18b4-4156-91a2-1954a716a58c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T234957Z:09d65d03-18b4-4156-91a2-1954a716a58c" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3DA6B973A774BD3B659EDA9D91DA2F9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F91909F8F0D74DBBA14BCF4823C03574 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:49:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"080761f6-0000-0300-0000-69168a730000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-CustomImage-pj3v91g7zb\",\r\n \"name\": \"Functions-CustomImage-pj3v91g7zb\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-pj3v91g7zb\",\r\n \"AppId\": \"1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6bd7b803-b629-43e7-84ea-118a7438aa22\",\r\n \"ConnectionString\": \"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\r\n \"Name\": \"Functions-CustomImage-pj3v91g7zb\",\r\n \"CreationDate\": \"2025-11-14T01:48:31.1219098+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-pj3v91g7zb_1f792c5a-5a52-4eb1-9d5c-f64d8f611bad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-pj3v91g7zb-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\": \"\\\"30003e08-0000-0300-0000-6917c0250000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-CustomImage-fbul4mq5e0\",\r\n \"name\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"AppId\": \"b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dab7d157-c584-47fb-b28a-55b4bfbb1f8c\",\r\n \"ConnectionString\": \"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\r\n \"Name\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"CreationDate\": \"2025-11-14T23:49:51.5267214+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-fbul4mq5e0_b9c165d8-9fe2-4e81-9efb-511bd51fa2d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-fbul4mq5e0-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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-pj3v91g7zb\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"\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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-fbul4mq5e0\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -501,39 +501,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508CBFB0FC0\"" ], + "ETag": [ "\"1DC55C1635D9A00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f7c2ac6-cc60-4846-a9a3-b2bba8a03643" ], + "x-ms-request-id": [ "b8c63274-c72f-4683-bf76-5204359ff625" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46ba0223-f9d3-492d-912c-ea8b4e428ffb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a73812e-5b97-4ef7-b3b6-603d6699f51d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "61d8a37f-c1b2-4e91-842d-cf905f0315b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014858Z:61d8a37f-c1b2-4e91-842d-cf905f0315b0" ], + "x-ms-correlation-request-id": [ "ed346c4f-4823-43f2-82df-141daf1b2b13" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235019Z:ed346c4f-4823-43f2-82df-141daf1b2b13" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EAF7CAEA719E488C8B0190DAB6ACDAC5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:48:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:48:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E36CF52D13244EDE9B77C439C31CF953 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:49:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8508" ], + "Content-Length": [ "8513" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:37.4233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-CustomImage-fbul4mq5e0\",\"repositorySiteName\":\"Functions-CustomImage-fbul4mq5e0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"functions-customimage-fbul4mq5e0.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-fbul4mq5e0.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-fbul4mq5e0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:49:58.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-fbul4mq5e0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-fbul4mq5e0\\\\$Functions-CustomImage-fbul4mq5e0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "563" ], - "x-ms-client-request-id": [ "63ea6cfd-c3c8-49b8-afa7-f5767a3da11e" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "8d485304-bdc6-4cfd-bb72-6437e0140b68" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -547,38 +547,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508D7D99855\"" ], + "ETag": [ "\"1DC55C16F243ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fce8f244-f580-4033-83d2-47024c3005e6" ], + "x-ms-request-id": [ "3f732627-389e-44fc-af79-61d6991bfaf7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "16073d23-14ee-4c22-bfe2-f9e5b82e779e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014929Z:16073d23-14ee-4c22-bfe2-f9e5b82e779e" ], + "x-ms-correlation-request-id": [ "0962fcf6-1c4a-4cf6-b975-5cf5afe24309" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235050Z:0962fcf6-1c4a-4cf6-b975-5cf5afe24309" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E03FEC8E03474493999A5BB73C8A9A5B Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91ECF956C6D64FA7AA4892D0D9E09563 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8520" ], + "Content-Length": [ "8531" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-CustomImage-fbul4mq5e0\",\"repositorySiteName\":\"Functions-CustomImage-fbul4mq5e0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"functions-customimage-fbul4mq5e0.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-fbul4mq5e0.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-fbul4mq5e0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:50:19.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\":\"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-fbul4mq5e0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-fbul4mq5e0\\\\$Functions-CustomImage-fbul4mq5e0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "3420bfe3-73c3-4b42-b964-8535aabc6bbc" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "488b36b4-578a-4c22-a0fb-984a2903152b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -593,38 +593,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508D7D99855\"" ], + "ETag": [ "\"1DC55C16F243ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37def8d8-0ba4-4b7a-a6d7-2e85b572d1e1" ], + "x-ms-request-id": [ "7667321c-4bb5-43ca-a7a1-9e054f3dd58b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7fcacaa0-8202-4f8f-8607-dd4ccd660ca7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014929Z:7fcacaa0-8202-4f8f-8607-dd4ccd660ca7" ], + "x-ms-correlation-request-id": [ "4f20c569-2cec-4637-ad2e-d6b44cec42e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235050Z:4f20c569-2cec-4637-ad2e-d6b44cec42e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34B127D9E5854B16AA882E5FDD2587CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A59306A8FE0043528FAEE441F9C654D8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8520" ], + "Content-Length": [ "8531" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-CustomImage-fbul4mq5e0\",\"repositorySiteName\":\"Functions-CustomImage-fbul4mq5e0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"functions-customimage-fbul4mq5e0.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-fbul4mq5e0.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-fbul4mq5e0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:50:19.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\":\"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-fbul4mq5e0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-fbul4mq5e0\\\\$Functions-CustomImage-fbul4mq5e0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "565" ], - "x-ms-client-request-id": [ "c220111a-9bc7-476b-8fe0-3c654fb0ac49" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "3e509153-9795-4c51-b684-5366c0fdaa78" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -640,36 +640,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b2eab56-4318-4efe-9dcd-7e5f27606bdb" ], + "x-ms-request-id": [ "93ff2773-2814-4208-bd1c-5dccfd3c0ec0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bbc2b2b3-7af4-4eba-9dea-d84a69a6ad5b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c542006-2470-416c-ad54-3bdb92e06600" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c2300cfd-5d0d-424b-bbae-4b83d4cda62c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014929Z:c2300cfd-5d0d-424b-bbae-4b83d4cda62c" ], + "x-ms-correlation-request-id": [ "c0bdae8c-1b88-4afa-9010-bca6382b29c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235050Z:c0bdae8c-1b88-4afa-9010-bca6382b29c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D957CECB4504EDF8144D74066408FCC Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4093747969824B12951CE043C90D75A1 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-pj3v91g7zb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "566" ], - "x-ms-client-request-id": [ "71c64f6b-7aac-4b0b-a047-f21c2c1997b9" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "3535fccd-0bb5-4148-a89a-22b4e9b93177" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -685,37 +685,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71cd0d2f-4e8c-4720-9044-f2f0d45156ca" ], + "x-ms-request-id": [ "261520a3-2d6d-48bc-8e47-024dc868b4d1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0aa49cae-18ca-443a-b925-6e53ced86ce5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f061f5ed-d661-4154-a3db-92fce518c390" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c855042-6d13-4b59-929f-3a5dcc0cb7f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:6c855042-6d13-4b59-929f-3a5dcc0cb7f1" ], + "x-ms-correlation-request-id": [ "5468d743-c563-46d5-ad21-67f918415d4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235050Z:5468d743-c563-46d5-ad21-67f918415d4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC05E49F47BF43F5B99E19B394EB130E Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FABE1A6D2B0D42F6BA6061466A8C1E63 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "70fb3473-6131-492f-951c-6de2d8711e11" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "9e7b0dcd-a84a-4950-95a1-20c15a71d6d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -730,38 +730,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508D7D99855\"" ], + "ETag": [ "\"1DC55C16F243ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "977b7867-3a6c-4eab-a375-5e30dd351eea" ], + "x-ms-request-id": [ "d70a324d-408b-492c-ad15-e78259494c1f" ], "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": [ "360df3c3-a4c9-4008-bbde-088a204f0cf5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:360df3c3-a4c9-4008-bbde-088a204f0cf5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c147d4c5-051a-48d9-a2d1-16cd030de1bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235051Z:c147d4c5-051a-48d9-a2d1-16cd030de1bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A86A1230F8FC4EC3B8412BF30479D5C8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D879D468CF234AB0B46AA74AC826CE01 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8520" ], + "Content-Length": [ "8531" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-CustomImage-fbul4mq5e0\",\"repositorySiteName\":\"Functions-CustomImage-fbul4mq5e0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"functions-customimage-fbul4mq5e0.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-fbul4mq5e0.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-fbul4mq5e0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:50:19.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\":\"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-fbul4mq5e0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-fbul4mq5e0\\\\$Functions-CustomImage-fbul4mq5e0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "a41e6496-9951-494e-ac21-0144266bf3fc" ], + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "a3cf2191-8e45-4d90-8e6a-8d036573f93a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -777,36 +777,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0347cd50-b71b-463d-b499-ad748c0757b7" ], + "x-ms-request-id": [ "028af541-8631-4401-960b-d782ebcd2355" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4fd0b773-0f48-4181-83f9-ee7a5830f4c5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d08b7535-cae2-4cde-b596-bb0f2ff54356" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "42c77ef6-2584-4fc3-b260-665a2ce924ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:42c77ef6-2584-4fc3-b260-665a2ce924ab" ], + "x-ms-correlation-request-id": [ "3ed15226-7743-400a-a690-176d8fc46565" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235051Z:3ed15226-7743-400a-a690-176d8fc46565" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38023701809E48E38BE36C2E9255CADE Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1D4D6FA8BBA4048AD0663F2CFCB9EE4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-pj3v91g7zb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "ce6bf150-ea1f-4c66-b1b1-37cdcd464574" ], + "x-ms-unique-id": [ "568" ], + "x-ms-client-request-id": [ "367454d3-b8d0-4213-a46b-5ffacaa82796" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -822,37 +822,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d53e5bd1-0a87-46b2-bbb3-39868fc660a7" ], + "x-ms-request-id": [ "c5c7e14e-2c7c-48e7-8247-7f80c1733aeb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1745fd06-1e86-41db-a6f7-c86a0454ab8b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/650294c1-6386-4cc0-95aa-ec8dcd11441d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e7017a15-cc5f-4e67-aecb-0285b93ca23b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:e7017a15-cc5f-4e67-aecb-0285b93ca23b" ], + "x-ms-correlation-request-id": [ "790bec83-3731-42d6-b45b-6e15321806b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235051Z:790bec83-3731-42d6-b45b-6e15321806b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27452A2DB0DA42E2B8A0FB30B656C8A1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B129D4A1FEE4C9194CAB67627520E78 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "570" ], - "x-ms-client-request-id": [ "4bcfdbd5-6ded-4d5e-ba59-d41389562d7c" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "6765113b-e0e2-421b-a974-06b197d423a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -867,38 +867,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508D7D99855\"" ], + "ETag": [ "\"1DC55C16F243ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "139a994c-df46-4960-8b6e-91912db8178d" ], + "x-ms-request-id": [ "0a6a4c14-35de-4111-8b68-be3d1dc0abfd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "452b9b3f-aab7-4af3-b924-8a8840bd3781" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014930Z:452b9b3f-aab7-4af3-b924-8a8840bd3781" ], + "x-ms-correlation-request-id": [ "02b65c9a-ad60-468e-81f0-43885401d4fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235051Z:02b65c9a-ad60-468e-81f0-43885401d4fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EA075637D0D4CA5956C06BD8E44A458 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9EA38E653CE480E8758261AE4480FE5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8520" ], + "Content-Length": [ "8531" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-CustomImage-pj3v91g7zb\",\"repositorySiteName\":\"Functions-CustomImage-pj3v91g7zb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"functions-customimage-pj3v91g7zb.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-pj3v91g7zb.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-pj3v91g7zb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:48:58.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-pj3v91g7zb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-CustomImage-pj3v91g7zb\\\\$Functions-CustomImage-pj3v91g7zb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-customimage-pj3v91g7zb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-CustomImage-fbul4mq5e0\",\"repositorySiteName\":\"Functions-CustomImage-fbul4mq5e0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"functions-customimage-fbul4mq5e0.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-fbul4mq5e0.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-fbul4mq5e0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:50:19.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\":\"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-fbul4mq5e0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-fbul4mq5e0\\\\$Functions-CustomImage-fbul4mq5e0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-customimage-fbul4mq5e0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "571" ], - "x-ms-client-request-id": [ "f7de7a4a-c511-4aa8-abf0-fe8c0c778dd2" ], + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "4e15e805-09e8-457e-aedb-5696c4244156" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -914,36 +914,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ec0a473-d623-41ff-ab55-aedf356de915" ], + "x-ms-request-id": [ "ef59ba2a-d7dc-43b7-87ab-b39c99bba86f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc2b8912-6fe9-4085-bc1e-74f438750335" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1c84a4b-f1cd-4b7f-b5f5-3f2ce2ad6557" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7d87c5af-6a3f-41ec-ac7f-fd06b60e126e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014931Z:7d87c5af-6a3f-41ec-ac7f-fd06b60e126e" ], + "x-ms-correlation-request-id": [ "0b32be55-9d99-4e97-a99f-935ddce85253" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235052Z:0b32be55-9d99-4e97-a99f-935ddce85253" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CA36F96A4654163A15C8D8ECD808D91 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1762C79176614AA9B8090E33C3CEB018 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:51Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-pj3v91g7zb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "572" ], - "x-ms-client-request-id": [ "5cfd366a-341e-4a6f-b572-392c300d7cc2" ], + "x-ms-unique-id": [ "571" ], + "x-ms-client-request-id": [ "217e5df3-aa48-4e49-90cb-5f956269e807" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -959,37 +959,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ddf4268-1b0b-49e6-9ffb-9a51ecb082cc" ], + "x-ms-request-id": [ "605a830e-7424-4b1a-9857-afccbc396b6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/befe208d-1386-4164-a5e8-eb656025bc2a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/715f4749-77a0-4337-a061-a39c91a16963" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "61917694-1fa6-4b8c-bdbf-decfc6df32e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014931Z:61917694-1fa6-4b8c-bdbf-decfc6df32e6" ], + "x-ms-correlation-request-id": [ "77977658-c0d3-4d3d-9384-68c9d3025c10" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235052Z:77977658-c0d3-4d3d-9384-68c9d3025c10" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A18F448D1DB4E94BF99F84DDC6E4A97 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83EE50108CFE488E9BEB207E939B9009 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb/config/web\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/config/web\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "573" ], - "x-ms-client-request-id": [ "1172d7d9-256e-496d-a604-7e65912b7afa" ], + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "3fea7861-bd3b-4511-9d2e-2a8ad5234437" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1005,36 +1005,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d43fc96-e973-40c6-95ce-b66870e8d5b7" ], + "x-ms-request-id": [ "2f2f66af-80d6-4c19-828e-c5d96f41fd68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e26e9bf5-14f6-48ae-8a24-961214d5b473" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014931Z:e26e9bf5-14f6-48ae-8a24-961214d5b473" ], + "x-ms-correlation-request-id": [ "a7da01c7-cb58-4ac9-ab94-35b730476c28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235052Z:a7da01c7-cb58-4ac9-ab94-35b730476c28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 167939B593A74BCF889F715969A2BE2C Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FFF1DBE216D4E749B3D15EED44B93B9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-CustomImage-pj3v91g7zb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "574" ], - "x-ms-client-request-id": [ "65e554a0-8333-42a6-8193-7066fa655ef3" ], + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "26b76a3e-e975-4592-a338-857e6ab1b685" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1049,20 +1049,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508D7D99855\"" ], + "ETag": [ "\"1DC55C16F243ACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9cbea595-97ca-4333-976c-1fc25c356fd8" ], + "x-ms-request-id": [ "8b47044d-eb28-446d-a833-5ca2b08cffda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8098cadf-b299-4694-a185-01143630cf65" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5955b5a6-3446-4d74-b782-461f06f16d86" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8ed3f91d-681e-4458-843a-691fde6337a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014938Z:8ed3f91d-681e-4458-843a-691fde6337a8" ], + "x-ms-correlation-request-id": [ "5492c4dc-7ea9-489b-a4ce-d4628382ec33" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235059Z:5492c4dc-7ea9-489b-a4ce-d4628382ec33" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C663229DD7F64C7CBC15606554DB3CCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5DC5CB5C10248CAB561952B7564EC5E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:52Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1076,7 +1076,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1091,18 +1091,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ebb4394a-d1ab-4cd5-9a3f-86488efa1b7f" ], + "x-ms-request-id": [ "683519d3-a7bc-48b1-afdc-243693a9d39c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16a8befa-e3f9-4f64-8a52-4b9432635f04" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1004fdb6-3253-4ee0-bdc1-06ef4c5b7e7c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e9f40b5-3995-4bad-b0f1-df69c9830515" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014939Z:4e9f40b5-3995-4bad-b0f1-df69c9830515" ], + "x-ms-correlation-request-id": [ "bf4feb49-54ea-4c8d-b6f7-0c25160524d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235059Z:bf4feb49-54ea-4c8d-b6f7-0c25160524d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78793274F1AC4E70BBB5CD03DE5AEAFB Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:38Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 633907D46FEF4DA6954A96D26E43C8F9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1120,8 +1120,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "576" ], - "x-ms-client-request-id": [ "d0f87cfe-a53e-4528-89de-38bd7ed156d6" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "0a22d47f-52dc-40a7-8d51-f8c1f5e2f6dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1137,25 +1137,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb05abe1-7452-4d08-80fe-f76050dcd116" ], + "x-ms-request-id": [ "e7a700cd-8f2b-4991-beb9-7b6e82d2cda3" ], "X-AspNet-Version": [ "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/b913f33b-3756-4272-a993-48ed2b78bb44" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7b959b36-70ad-45b5-8507-11ff6ccc1776" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e77e000c-9a63-44f7-a8c6-c965d6ffebb4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014939Z:e77e000c-9a63-44f7-a8c6-c965d6ffebb4" ], + "x-ms-correlation-request-id": [ "7244e56a-1751-4e69-906d-89ad626c31c0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235100Z:7244e56a-1751-4e69-906d-89ad626c31c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48A0B30252F7454285D89D2F44802A01 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 369630FB63E5425F8B3793AA0391B78A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:50:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:50:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1166,8 +1166,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "577" ], - "x-ms-client-request-id": [ "16d990da-262e-4e43-b6e8-eb58b30ff834" ], + "x-ms-unique-id": [ "576" ], + "x-ms-client-request-id": [ "ea4e72cd-fc61-41c1-b32a-76b7518bed01" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1182,36 +1182,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c0604a93-241d-4fdd-9e47-9400300f83c6", "d8b7d09c-e636-49d7-b3f8-3ac2414f4f51", "cee76359-1a22-4437-b81a-ce6224780655" ], + "x-ms-original-request-ids": [ "f85d8847-fac1-4e4e-b489-c747f9f4a4c1", "174732aa-40e8-44fc-aa4c-a25e0d031e4b", "c9010ea2-c5b5-49d9-9826-e1ffbb77d2b9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "387060a4-be71-4447-b8c3-6160f86e7814" ], - "x-ms-correlation-request-id": [ "387060a4-be71-4447-b8c3-6160f86e7814" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014939Z:387060a4-be71-4447-b8c3-6160f86e7814" ], + "x-ms-request-id": [ "5dc90d80-1c1e-4ac5-8651-31f6a8456bf7" ], + "x-ms-correlation-request-id": [ "5dc90d80-1c1e-4ac5-8651-31f6a8456bf7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235100Z:5dc90d80-1c1e-4ac5-8651-31f6a8456bf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 376E94CF9C4A43C09534D55E9B6B36AC Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:39Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7C92D0E60D54E258659C063D71DCE99 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "578" ], - "x-ms-client-request-id": [ "e79794d2-7b95-46a6-bc9b-e59352f6bfb8" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "f435ec25-95f6-46d7-866e-427eaa6542a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1226,23 +1226,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2ac86382-85fe-48a1-88ad-ce1fd7b1fb5c" ], + "x-ms-request-id": [ "96718738-7e04-4a67-ad1d-8d131c2f1340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/61fdf152-d29f-4b8b-91fc-eb1ff119cfc6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/814aab98-748f-4728-bb26-85001f89f07d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3833623c-1461-419e-addb-5420b2e49f4e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014940Z:3833623c-1461-419e-addb-5420b2e49f4e" ], + "x-ms-correlation-request-id": [ "8cd0e466-006b-46ca-84d6-0159eed156ff" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235100Z:8cd0e466-006b-46ca-84d6-0159eed156ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 28F5BA2BC2474E77BCC87D6D8C57D553 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A2B40C073E843118FA3AE2657CAABE3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1250,7 +1250,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1265,18 +1265,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfcb3e68-edbb-4ef1-bb5b-d6dffc7c0b6f" ], + "x-ms-request-id": [ "2dfb749a-b73d-48f7-b78f-0680b224c298" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7abec8c7-ffa3-4445-831b-9c5abef59261" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/814843d5-5179-4a70-8b33-0cccd4d1bba8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84707fe4-9bf7-4619-befb-1e262ecd3bd1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014940Z:84707fe4-9bf7-4619-befb-1e262ecd3bd1" ], + "x-ms-correlation-request-id": [ "1b21c452-eb3e-4168-b68d-f20c28bde508" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235101Z:1b21c452-eb3e-4168-b68d-f20c28bde508" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9C421D98AB24099960F12021C197249 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40CB0D82DC074EC9A5BC75C9B944CEC0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1294,8 +1294,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "580" ], - "x-ms-client-request-id": [ "89ff0d5b-32a4-4fba-8c3d-915a5fe23756" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "e1dbcaf4-72c8-48cd-a516-24f4e440a1f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1311,25 +1311,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7b712ec-7d72-4ed1-8f9e-6a4a85b621e9" ], + "x-ms-request-id": [ "059f6af6-e87e-48c7-92b1-9a9c3b2b1b5e" ], "X-AspNet-Version": [ "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/5e26fdef-1185-49f1-91e4-1841778bc4a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/dcef6dd4-1d15-4a05-8e4f-e961393f1096" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6b9e2ac3-0178-4dc7-a91f-7c3cd7d0d731" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014940Z:6b9e2ac3-0178-4dc7-a91f-7c3cd7d0d731" ], + "x-ms-correlation-request-id": [ "0687719e-b4d9-4aa4-b30b-4ca4affcf3f2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235101Z:0687719e-b4d9-4aa4-b30b-4ca4affcf3f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DC428F7215B45A083A90B6B3859B4CF Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FBB8560401141B9AB823D0C6DADA60E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1340,8 +1340,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "581" ], - "x-ms-client-request-id": [ "bd8d60dc-bad7-4d03-95b9-b87642a2bf22" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "38b4c338-4659-41af-914f-ac57925adc37" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1356,36 +1356,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9baa4937-b059-41f9-a4ff-7206dcff3091", "6f91ed17-f19f-4bf9-8001-5bf63dabc986", "67add413-e509-4ded-a436-d3751e3f4c7c" ], + "x-ms-original-request-ids": [ "c29d0289-6cd9-447d-bb6b-09c44603234c", "e27caac8-9256-46ae-a311-e485b4545b97", "0bb519de-243d-4106-b471-500ed751317b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "57b1bb63-d564-40b9-b494-ae8ccc3735b5" ], - "x-ms-correlation-request-id": [ "57b1bb63-d564-40b9-b494-ae8ccc3735b5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014941Z:57b1bb63-d564-40b9-b494-ae8ccc3735b5" ], + "x-ms-request-id": [ "ea5315c1-fc27-4aed-8095-a8016839bc7b" ], + "x-ms-correlation-request-id": [ "ea5315c1-fc27-4aed-8095-a8016839bc7b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235101Z:ea5315c1-fc27-4aed-8095-a8016839bc7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0805028685764B7B8814A0EE437ABF96 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:40Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FDAF4EF8C7F14093ACBDAA9C57F7468A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "582" ], - "x-ms-client-request-id": [ "bc8237d6-716d-45e4-88b9-ebf8bbef17aa" ], + "x-ms-unique-id": [ "581" ], + "x-ms-client-request-id": [ "859d15c9-d25a-4c09-a93f-ce6c257a79be" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1400,23 +1400,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "487b3172-f578-423f-858c-374efdafbd4a" ], + "x-ms-request-id": [ "c9dac2fd-01f0-4ac6-9280-32703513147b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/42ac4cf5-1338-4079-84d9-633e0a6b6f3a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f5f18250-e35b-4305-b34b-aff592544265" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014941Z:f5f18250-e35b-4305-b34b-aff592544265" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/931384ab-d72b-420c-ae2f-a5cbae5f8e33" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "28bd860b-0e61-468a-a2b1-c28bd06f8d9e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235102Z:28bd860b-0e61-468a-a2b1-c28bd06f8d9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E68EC3F9CD5D4A06A33B6AF2C04D6175 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14B04970A5814882BC975443B63FF296 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1424,7 +1424,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1439,18 +1439,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a43de86-24e9-47f7-a28a-3c0aec9bb2dc" ], + "x-ms-request-id": [ "6479b1af-baae-4416-bc7c-17727f1c2579" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/249a923b-d69c-4b4a-9373-e104a3edf7dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/816cc369-f881-463b-9375-5d4eb808f821" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0b99dec3-3336-46f8-8ec4-a2640ccd3d80" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014941Z:0b99dec3-3336-46f8-8ec4-a2640ccd3d80" ], + "x-ms-correlation-request-id": [ "c1255a52-92d7-49e2-b2bc-5eb4cefb83f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235102Z:c1255a52-92d7-49e2-b2bc-5eb4cefb83f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D9582182AF0E403AA915DCB3ADE54E6B Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:41Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4DE5AAE43AB44228E56A1884FE5ECE2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1468,8 +1468,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "584" ], - "x-ms-client-request-id": [ "e7928908-12f8-4be2-a36c-a713b3183b51" ], + "x-ms-unique-id": [ "583" ], + "x-ms-client-request-id": [ "1fcd25ff-52fb-470a-a9e1-20ebbe3fa14d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1485,25 +1485,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8649e95b-f112-4a43-ad7e-4d4b21a6aed4" ], + "x-ms-request-id": [ "c7610bc4-a2db-4ca6-8e11-9f5a23387c9d" ], "X-AspNet-Version": [ "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/64605f2b-529e-45fc-81df-35cc5f05c67a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c072fb27-304d-4d08-9827-95ea4792a87d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "736c0468-da1e-487f-a992-f0370b580bb8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014942Z:736c0468-da1e-487f-a992-f0370b580bb8" ], + "x-ms-correlation-request-id": [ "dc2bf8e2-d547-46a6-8349-9664c21c6270" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235102Z:dc2bf8e2-d547-46a6-8349-9664c21c6270" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8A51B1ED4AF4433913AA0CBCF553299 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71E5EEFBE4DE448FBBB7AEF31BF110CE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1514,8 +1514,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "585" ], - "x-ms-client-request-id": [ "8289cab6-b93f-4a7e-a345-12169aa503d8" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "a3bab35b-7216-4e73-b663-28febb048adc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1530,36 +1530,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9ad26d7b-9f6d-4d2f-ae4d-72f75190a9a5", "5d8e8008-8ff7-4c8c-bbb1-94262e89464e", "bd2c3f0a-aa58-437f-8f92-f5a8f4606cd5" ], + "x-ms-original-request-ids": [ "2726c708-75a8-4484-85d3-a205f6bbfdec", "a0023e48-4d4d-411d-977b-3d621eec5908", "bd81a938-f4f4-40b3-8f58-6bff8233a5af" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "15c1a31c-afe4-481d-93fb-aa3212b0799b" ], - "x-ms-correlation-request-id": [ "15c1a31c-afe4-481d-93fb-aa3212b0799b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014942Z:15c1a31c-afe4-481d-93fb-aa3212b0799b" ], + "x-ms-request-id": [ "df4ce888-bf62-4120-82d5-e0cee1da549e" ], + "x-ms-correlation-request-id": [ "df4ce888-bf62-4120-82d5-e0cee1da549e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235103Z:df4ce888-bf62-4120-82d5-e0cee1da549e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 848C0E3F345D47D085DC7D23FE458A36 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E488E662C07F4CE29C4DA2BA997C7D14 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "586" ], - "x-ms-client-request-id": [ "3c30d630-26ca-4aab-8ec7-1c706bdc0b9e" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "d3be1442-b31b-4d27-84a8-72349cb6d6f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1574,23 +1574,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5a7c1120-4ff1-4db4-89e4-f6548e959e5e" ], + "x-ms-request-id": [ "0a4552d2-137b-4522-96d0-0c16f2cd744e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ab5f5461-b4b6-4f82-8d15-260bfe75fe84" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ac431a22-d127-45d1-9559-9a28b6219d1c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "215533ba-9879-4664-b3e6-93db909a9adc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014942Z:215533ba-9879-4664-b3e6-93db909a9adc" ], + "x-ms-correlation-request-id": [ "5314a1e3-9b71-4ef3-af59-8620ac5d1afc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235103Z:5314a1e3-9b71-4ef3-af59-8620ac5d1afc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30985CC8BD5144798138203C32789AB6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C95C2B08EED4667B1DE6315DF80521A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1598,7 +1598,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1613,18 +1613,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3df6e1b-003a-4d59-8e28-028d094eb52a" ], + "x-ms-request-id": [ "4648cc68-1320-4a5d-a27e-4f1f95ba7a5b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7867124d-e342-49e9-a85f-4e8f56bc72bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb44395c-6993-4567-b744-3d74fe971222" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "795615ed-ad00-4910-8f58-eb5b90686c8b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014943Z:795615ed-ad00-4910-8f58-eb5b90686c8b" ], + "x-ms-correlation-request-id": [ "903f955e-c399-4c39-8789-b514ce2c7dfa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235103Z:903f955e-c399-4c39-8789-b514ce2c7dfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E992C0E4F7C467A968B535EA00CF93F Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4BB13574F634CD7A77E7491E219F1AF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1642,8 +1642,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "588" ], - "x-ms-client-request-id": [ "9aa008f4-e958-487a-85ef-56a084ae0779" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "04a3000e-96a2-49db-963d-37e79c55df47" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1659,25 +1659,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22d29032-f236-4913-b4f9-2ddacca42596" ], + "x-ms-request-id": [ "d4746c03-f5a6-480a-9672-691b8c2c205b" ], "X-AspNet-Version": [ "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/0871ecf5-f30c-4cc1-8f9d-83784ae839aa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/931ec0da-1359-4a3f-b571-b1ddca96d855" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd379411-c54c-4398-9d98-fa48b10e03ae" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014943Z:bd379411-c54c-4398-9d98-fa48b10e03ae" ], + "x-ms-correlation-request-id": [ "a055c72d-982d-41a9-bdea-25f41a604792" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235103Z:a055c72d-982d-41a9-bdea-25f41a604792" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37D32B5323C84AA8BDA19FAB56145149 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E12F4B8274FE442299384076131E9AC2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1688,8 +1688,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "589" ], - "x-ms-client-request-id": [ "34122b39-f7a0-4beb-b1c7-2da1588db0c3" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "87f56ea8-28f8-4a8f-87e7-1c0e7339fe5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1704,36 +1704,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1065040f-0548-473d-8133-608c3549f204", "020ce864-0d1d-4d85-9996-ca6ae1a3cc87", "cf12d6b1-dfa2-4988-bec3-e6dd7d720db9" ], + "x-ms-original-request-ids": [ "1ad507f2-8e1f-40b1-9b83-5a979a71c084", "7742f5ee-d31f-4b29-9192-1c9dae3f6306", "cac5a91c-5d4a-474b-8c1e-2d43ad9f4bf7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e75be8bd-6a85-4285-8a85-2a659efd339b" ], - "x-ms-correlation-request-id": [ "e75be8bd-6a85-4285-8a85-2a659efd339b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014943Z:e75be8bd-6a85-4285-8a85-2a659efd339b" ], + "x-ms-request-id": [ "3f213a18-c15a-445a-84d6-98fa7be36299" ], + "x-ms-correlation-request-id": [ "3f213a18-c15a-445a-84d6-98fa7be36299" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235104Z:3f213a18-c15a-445a-84d6-98fa7be36299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F1A9E796787483980B447EAD9E4F426 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D77ABA72E79444C4BC182B31CEE1DD7F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:03Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "590" ], - "x-ms-client-request-id": [ "bdc5ea49-fd91-4ac1-b0af-7493d90a286f" ], + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "8bfa4976-61f3-417c-a656-65ee45fe1b6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1748,23 +1748,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bd38673a-1d0d-48ae-8f22-42568c8341e2" ], + "x-ms-request-id": [ "0a1599b2-31c7-476e-b823-537a6d315e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0dc45d40-e4f7-4996-af6e-47c66a6e8c2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f853c466-c93b-4cfa-8427-a2c6eaa4837d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c5abb913-f17f-47a8-ad37-8c4e13b5c3f3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014943Z:c5abb913-f17f-47a8-ad37-8c4e13b5c3f3" ], + "x-ms-correlation-request-id": [ "8de95ba4-57f5-45df-a669-7c2df8fdcbea" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235104Z:8de95ba4-57f5-45df-a669-7c2df8fdcbea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96A3A3EA5D804656BEECBAC7A9851089 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D82803EE5DFD4037BA9C4E2A6864F772 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, @@ -1772,7 +1772,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1787,18 +1787,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "feb1dac0-8221-451a-a6fe-a565396c76f4" ], + "x-ms-request-id": [ "38481a27-9b85-48a9-afbd-feac6614a674" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc0969da-3b1b-48b1-830e-bf652a902b1c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1ec0b86d-6819-4e72-8d61-ca6fb6ea2e7e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3c7f4246-231a-432c-8fa8-35f06e1f750c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014944Z:3c7f4246-231a-432c-8fa8-35f06e1f750c" ], + "x-ms-correlation-request-id": [ "305d5146-23cc-4d66-ae77-9327cb1dcb45" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235104Z:305d5146-23cc-4d66-ae77-9327cb1dcb45" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB33495964B841928AB187FA8B4153AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F1B9C50CB5545D3A590A6AFD342F95A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1816,8 +1816,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "592" ], - "x-ms-client-request-id": [ "9b9a7488-c5b6-4d3f-a3f1-50da5054cd2e" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "f3826eb5-45c6-4732-88c2-0ff6fba5b9a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1833,25 +1833,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b7106d4-66e5-4c1b-be34-75c7b5ba22cc" ], + "x-ms-request-id": [ "f1579dbf-c2f5-4f8b-94c3-99b9a94fc20b" ], "X-AspNet-Version": [ "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/8de0299d-c83f-44da-bb6b-76f8a197be8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/dbd81109-165e-4a81-a345-c84f5d627375" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0749303d-30b4-4b7d-91dc-4b7f4bcf15b6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014944Z:0749303d-30b4-4b7d-91dc-4b7f4bcf15b6" ], + "x-ms-correlation-request-id": [ "8459050c-321b-4ba8-9ae5-65d9960a2f9b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235104Z:8459050c-321b-4ba8-9ae5-65d9960a2f9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74AC357F42D34B6FBD7FF8586D9FFEC5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C7B744701314A1AAFC4388117FA0725 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1862,8 +1862,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "593" ], - "x-ms-client-request-id": [ "c4d33b0a-3f68-4555-8239-a65a07e1d800" ], + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "5d83015a-39db-4bd0-8a64-4421cd731dc5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1878,36 +1878,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d94f2406-e124-4857-89cb-50d626e03b6f", "7e034e86-c5ec-4034-8b12-cab6e98cd2a7", "45eae587-57f3-43b3-9c33-f3b6cd26d48e" ], + "x-ms-original-request-ids": [ "5e6caf4e-f170-49a8-9294-02feb5cabfb8", "7c4e1910-86f8-48fa-ad47-e2bbff86e9e4", "060d7295-f76f-4dc8-ba90-9003e5750035" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6ab98680-3410-4cce-8064-bd562fdf0f11" ], - "x-ms-correlation-request-id": [ "6ab98680-3410-4cce-8064-bd562fdf0f11" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014945Z:6ab98680-3410-4cce-8064-bd562fdf0f11" ], + "x-ms-request-id": [ "779d90e5-53eb-4ca9-9503-cd1ca6101fc8" ], + "x-ms-correlation-request-id": [ "779d90e5-53eb-4ca9-9503-cd1ca6101fc8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235105Z:779d90e5-53eb-4ca9-9503-cd1ca6101fc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 51473D8AD70C4A118B3AA6B9C2880B31 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C0BAF0874794ED385338713496230A3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:04Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "594" ], - "x-ms-client-request-id": [ "209cea5b-f566-4be9-9404-71a33046021b" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "c7f32df2-8cf1-4eb0-9cbb-8cd90d9084fd" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1922,31 +1922,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "286cfd45-55eb-4458-a566-866d54bedf65" ], + "x-ms-request-id": [ "5288f1c2-0cb7-463c-96a4-d27250644025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/efec2879-d966-4dbb-8c32-33481c57359c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9d3b52a-830e-458d-a64e-f04f862364cb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "48249cc9-3050-436f-a4be-794fb74de67d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014945Z:48249cc9-3050-436f-a4be-794fb74de67d" ], + "x-ms-correlation-request-id": [ "7e1990b1-2bed-43e9-a938-b29e3b75f29a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235105Z:7e1990b1-2bed-43e9-a938-b29e3b75f29a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8A3F7A2D4644D12AEE71A03E17C4933 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF69A8175F8E4827B57BC2F4B0B54BB4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:05Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1961,18 +1961,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8779954-3814-4d43-98fb-d8bf1fdc841f" ], + "x-ms-request-id": [ "c3fad6f1-b80a-4f01-a418-ebc24dd52fca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/670a85b5-5533-41d6-8ac3-8433d13e25db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c14b07b-20b9-453b-87e2-971914e39c37" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93912fb4-5c14-4871-bdf1-92a142e8cbe1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014945Z:93912fb4-5c14-4871-bdf1-92a142e8cbe1" ], + "x-ms-correlation-request-id": [ "66c76975-3727-40ed-ba1b-f9437d1a4bea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235105Z:66c76975-3727-40ed-ba1b-f9437d1a4bea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0985FDAC7A4A424896FCBF3D55657220 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F56C0F1C9AA45CC87042A240DF2E968 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:05Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1983,11 +1983,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2002,18 +2002,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9e959ec-727e-4f6c-8bf1-0525ddc2efce" ], + "x-ms-request-id": [ "0444ad26-5128-4e8d-a403-d95a39a46148" ], "X-AspNet-Version": [ "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/4a842513-0629-4e95-a453-ff53e3750305" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "810e18e5-eaa0-44a6-bb9a-ad3929f03fc0" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014946Z:810e18e5-eaa0-44a6-bb9a-ad3929f03fc0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e3334f59-c03b-4042-85b2-9c726bdba91e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "00518fd4-3035-4951-8158-06d66d9adb42" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235106Z:00518fd4-3035-4951-8158-06d66d9adb42" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9E3B701692D474F80F3567DB0135986 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31B06776372A4FFCA3CD475D504AF43C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2028,7 +2028,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2043,18 +2043,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b43c6a8-7c40-46fe-83ce-e97b23ea00ca" ], + "x-ms-request-id": [ "b47137c9-491e-49a2-a417-23898c422b10" ], "X-AspNet-Version": [ "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/756e3c80-ab97-460f-a8e9-6ed01823771f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/682695ec-f0a4-4e83-aa8d-499a797eaf7a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc0974c9-633c-4ccc-9e15-52e4066912b2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014946Z:dc0974c9-633c-4ccc-9e15-52e4066912b2" ], + "x-ms-correlation-request-id": [ "7e8533b0-b4b4-4bf7-9348-51d698358335" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235106Z:7e8533b0-b4b4-4bf7-9348-51d698358335" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37778793525A4A9CB0625F50C71443DE Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4624E138767A4E1D9922669CB3599A8B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2069,7 +2069,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-nds0y973f2\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-kbt35oepnm\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2084,18 +2084,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4acc9c03-9904-4271-9ea8-322fccab5d6e" ], + "x-ms-request-id": [ "f2721ac0-12f0-4ea0-9680-cb1ab978f664" ], "X-AspNet-Version": [ "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/515f647d-3bc3-42e8-9c23-9bdd4afc10c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/dc69bf9b-f281-4efb-a567-c11ff5cfcdae" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b8f0821-a48c-441d-8abd-3f6cdde5be79" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014947Z:9b8f0821-a48c-441d-8abd-3f6cdde5be79" ], + "x-ms-correlation-request-id": [ "0ada3310-61b9-4b07-9a78-39630718258f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235106Z:0ada3310-61b9-4b07-9a78-39630718258f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0ED72D29815C4891BBEE417379234125 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB2277781492446892AE08F8136A29D5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:06Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2113,8 +2113,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "599" ], - "x-ms-client-request-id": [ "7af6bfdf-21f9-4ba7-a952-5359426335d1" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "418abc61-b66c-4bad-84b2-7405921343cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2129,36 +2129,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "bb0a3c11-d712-4d39-bfd7-4dba0d1be54b", "67a72d41-4948-4aa0-907f-b2c062bfd31e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "5734b757-e580-4788-bd12-509984ba5d8f" ], - "x-ms-correlation-request-id": [ "5734b757-e580-4788-bd12-509984ba5d8f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014948Z:5734b757-e580-4788-bd12-509984ba5d8f" ], + "x-ms-original-request-ids": [ "ea4a08be-5f33-4991-a5ea-25e7a66cd82c", "ad43b8ee-455f-46da-8d7a-bffd87733963" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "13fd1148-48fb-4281-8381-78446075bfd4" ], + "x-ms-correlation-request-id": [ "13fd1148-48fb-4281-8381-78446075bfd4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235107Z:13fd1148-48fb-4281-8381-78446075bfd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79C32818406C491E86226A2C27210ADB Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:47Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25C7374AD3334F2EBA9B9B3E5C8BA369 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "600" ], - "x-ms-client-request-id": [ "53f9fa50-cdf6-4ca1-9ac8-263e112d8f77" ], + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "7db1cf27-b92b-4a97-a148-250facefc2d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2174,36 +2174,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adaf5f2f-d1b2-4739-9f30-f83e1833582d" ], + "x-ms-request-id": [ "ffdbf5ee-5874-4005-903b-8efafe023235" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25d1fd3d-1247-4a6a-a10c-86525a56c5f8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014948Z:25d1fd3d-1247-4a6a-a10c-86525a56c5f8" ], + "x-ms-correlation-request-id": [ "2b561e29-1c16-49ea-ae44-8347f51daf0b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235107Z:2b561e29-1c16-49ea-ae44-8347f51daf0b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDB5252644194D5E8817D4B4601C8D4A Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B4337D0DAE048A0AEC227E00EEADB24 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "601" ], - "x-ms-client-request-id": [ "c205d1d2-f4db-4e69-8472-41a8dd4160a8" ], + "x-ms-unique-id": [ "600" ], + "x-ms-client-request-id": [ "65c6a11f-54d7-447e-9250-ed5ca1fbd026" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2219,36 +2219,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd8c7b39-7cfe-4e38-a2b0-c2200dcb4177" ], + "x-ms-request-id": [ "f1c20c31-2e9b-4a91-bfd6-5da0dfd0d99c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7bd8c03f-5cad-4ea5-b936-addf3036b633" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014948Z:7bd8c03f-5cad-4ea5-b936-addf3036b633" ], + "x-ms-correlation-request-id": [ "acac983c-f4f1-4167-bc52-e043633edf55" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235108Z:acac983c-f4f1-4167-bc52-e043633edf55" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D65542F253ED49B18C6366A04DF5ED81 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D67C589FFD24FA9A5420E2494564B9D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "602" ], - "x-ms-client-request-id": [ "36ee2999-f6d8-49cd-9c39-0d9f0dccb192" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "1740ab90-7833-4e7e-91a2-ccad746d0580" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2264,36 +2264,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e1f3fb6-3445-42cb-8e0d-39f88c7063a3" ], + "x-ms-request-id": [ "25d6d1ef-6f1c-45b2-8057-3540236b1243" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "43a2f453-4627-4b13-b27b-2c42b087b6ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014948Z:43a2f453-4627-4b13-b27b-2c42b087b6ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bc7aa8c1-665f-4760-8f65-c906042d0c53" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235108Z:bc7aa8c1-665f-4760-8f65-c906042d0c53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0E62ACCE7554D8E816E317A2188F945 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2359106A726B490586B81F67C82535AC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "603" ], - "x-ms-client-request-id": [ "4e961f5d-db16-4e6a-9649-b06762bd7167" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "f930c2aa-10ba-4d9a-ac85-16d08a2cae0e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2309,36 +2309,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f59c3f78-0dff-4144-9486-1a45c799f291" ], + "x-ms-request-id": [ "badd52af-330b-438e-815e-c94ba22d09a6" ], "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": [ "f9954c18-fb83-447e-9cb1-9a3eb0a99901" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014948Z:f9954c18-fb83-447e-9cb1-9a3eb0a99901" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cc0327ce-430c-4cc2-a11b-5350bbad7eb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235108Z:cc0327ce-430c-4cc2-a11b-5350bbad7eb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3223B3C3064C4F6293B765F2DD36BD25 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:48Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8A3BDA824A64D088FECD9CEB2F09ED2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "604" ], - "x-ms-client-request-id": [ "6bedf783-8e1c-463a-8c14-926bf3e82eb5" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "2bd10506-5f25-4739-b771-60d4f2a76aaf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2354,36 +2354,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f6e10be-e089-47a4-8a96-69da37ba2c81" ], + "x-ms-request-id": [ "a45157f4-04dd-4bba-adbc-ca7b3dc869f9" ], "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": [ "4083cf64-4377-4308-8b99-04315860cb8f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014949Z:4083cf64-4377-4308-8b99-04315860cb8f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "80d620c0-5b8c-4a6c-a661-9f2bfe15d760" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235108Z:80d620c0-5b8c-4a6c-a661-9f2bfe15d760" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A15990AA053148AF98002114D9CC3484 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:49Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A25BE7733AA94C79B31D223D23C81F0F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "605" ], - "x-ms-client-request-id": [ "9cf5d7cb-bdd4-4af9-a694-a80bd52c4600" ], + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "894cc62a-5ac4-4a4e-a5bc-0db59e66708d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2399,24 +2399,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee054714-fe24-4ed0-895a-f1c172f73356" ], + "x-ms-request-id": [ "100b8032-b232-4f4f-9b62-02f12d63d9cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "65652381-c9f4-4010-b825-fbeb38bbae80" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014950Z:65652381-c9f4-4010-b825-fbeb38bbae80" ], + "x-ms-correlation-request-id": [ "a13cae8e-d575-4ce9-b0f0-bc08aafe96ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235109Z:a13cae8e-d575-4ce9-b0f0-bc08aafe96ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6C2C903B8F741AB86036B0128394472 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:49Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB998138415542B4B2F4B941FB1CFCCA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1690" ], + "Content-Length": [ "1696" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -2427,8 +2427,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "606" ], - "x-ms-client-request-id": [ "76992e95-c529-44cd-a75b-5ac1cedfd462" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "7fae49b1-320d-48fd-a33c-c22917a2335a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2443,36 +2443,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "abaf668d-8104-4d25-a681-56282d95be39", "b7af8f51-3c1e-4de3-a1d3-7c7ac07bacff", "0739aea7-c303-4984-9d13-635fc2c826f1" ], + "x-ms-original-request-ids": [ "de8a2153-9c5b-4c10-b8f4-4f5ee91bd9ff", "6def7abd-7dbe-46f5-83a9-20f49f716cdd", "dbdc4061-c35c-40be-a56b-eda451f9a56d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "830821f6-f3dc-4f30-90e2-c5db8e1499c8" ], - "x-ms-correlation-request-id": [ "830821f6-f3dc-4f30-90e2-c5db8e1499c8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T014950Z:830821f6-f3dc-4f30-90e2-c5db8e1499c8" ], + "x-ms-request-id": [ "03ad1a4a-ca8a-48ed-85e5-13afc0dc177a" ], + "x-ms-correlation-request-id": [ "03ad1a4a-ca8a-48ed-85e5-13afc0dc177a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T235110Z:03ad1a4a-ca8a-48ed-85e5-13afc0dc177a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19ECBD2F75714D87BA69815E8CC751BA Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB715ED133CB480CA8809C720C4DF7FE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "607" ], - "x-ms-client-request-id": [ "74e1fab1-adf8-43d9-809c-c6f05c6f3c45" ], + "x-ms-unique-id": [ "606" ], + "x-ms-client-request-id": [ "7439b86f-6915-45bc-89eb-859849cd3972" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2487,30 +2487,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a27d7ae5-30cb-4a76-8da2-caba3ce71e65" ], + "x-ms-request-id": [ "f34e9fec-9fe1-4197-abed-9ac61a6c28c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4947cb5e-404b-4ca1-8205-a1a0b5dd05b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6348dd27-7db9-42f1-848e-f6dc024b0e9f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3526a544-fc8e-4b2e-84cb-a53d71d01fb2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T014951Z:3526a544-fc8e-4b2e-84cb-a53d71d01fb2" ], + "x-ms-correlation-request-id": [ "c9e50c61-e7d0-4107-8fe8-59cb6993a1e9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235110Z:c9e50c61-e7d0-4107-8fe8-59cb6993a1e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4BF1AB722AC435BA9FB7EE0D10450A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BB567FFC9154FC19FDE7685DB4F9B2B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"sEtmtKq2Gdh8hOZkroP4avhyxoAbql8eZv63ZJShR2qnQUhsqRAS59GPxVZiuWuhFEiy11+eeRNi+AStUvrV4Q==\",\"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-jxyp27/providers/Microsoft.Insights/components/Functions-Python-nds0y973f2?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Insights/components/Functions-Python-kbt35oepnm?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-jxyp27/providers/Microsoft.Insights/components/Functions-Python-nds0y973f2?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Insights/components/Functions-Python-kbt35oepnm?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2530,30 +2530,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80796e49-fe06-4f97-940c-e0d0e44a2276" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "990d2fad-f321-4149-85dc-4d4039460de3" ], - "x-ms-correlation-request-id": [ "990d2fad-f321-4149-85dc-4d4039460de3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T014957Z:990d2fad-f321-4149-85dc-4d4039460de3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e9deab2d-6350-428e-892d-2669fa155e52" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "6dbc71d0-2c36-4ce8-9ad4-485488bc3257" ], + "x-ms-correlation-request-id": [ "6dbc71d0-2c36-4ce8-9ad4-485488bc3257" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235131Z:6dbc71d0-2c36-4ce8-9ad4-485488bc3257" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 721F50598CEE4F059DB6BD703AFBC81F Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:49:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E0334B70BE44F138F6EE149E79A8092 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1633" ], + "Content-Length": [ "1634" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"09076a0d-0000-0300-0000-69168ac50000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Python-nds0y973f2\",\r\n \"name\": \"Functions-Python-nds0y973f2\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-nds0y973f2\",\r\n \"AppId\": \"283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"340c93e1-8d5d-4ae5-a29c-2e1ff98c031b\",\r\n \"ConnectionString\": \"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\r\n \"Name\": \"Functions-Python-nds0y973f2\",\r\n \"CreationDate\": \"2025-11-14T01:49:51.846514+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-nds0y973f2_283f8cdb-2bf3-4fd5-9d19-55f6363e54ed_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-nds0y973f2-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\": \"\\\"30003e14-0000-0300-0000-6917c0830000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Python-kbt35oepnm\",\r\n \"name\": \"Functions-Python-kbt35oepnm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-kbt35oepnm\",\r\n \"AppId\": \"cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9a08513b-9f3a-4de1-9110-97f554e1b81f\",\r\n \"ConnectionString\": \"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\r\n \"Name\": \"Functions-Python-kbt35oepnm\",\r\n \"CreationDate\": \"2025-11-14T23:51:11.7052492+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-kbt35oepnm_cd104da8-da7e-46c9-88dc-c16ff0b911e3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-kbt35oepnm-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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-nds0y973f2\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"\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-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-kbt35oepnm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2567,39 +2567,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5508FCF842A0\"" ], + "ETag": [ "\"1DC55C19B403E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6fb83877-43f8-4836-989a-22d18eb259c5" ], + "x-ms-request-id": [ "fdd934f1-f11c-46d2-b596-be4bff8cf23a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/274f067e-88bb-4217-a9d2-9239e4484714" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/62f2ec39-c883-4613-957c-de45f7d1bd81" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "06b02778-3394-49aa-8e1d-32ac4716fa80" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015020Z:06b02778-3394-49aa-8e1d-32ac4716fa80" ], + "x-ms-correlation-request-id": [ "cc0b6e58-96b1-4258-8bec-d118436934f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235153Z:cc0b6e58-96b1-4258-8bec-d118436934f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E4DD20EDF9744C48AC831E6821FE3CA Ref B: MWH011020806052 Ref C: 2025-11-14T01:49:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE4396DC03B64DDC968C5D2877204C66 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:51:31Z" ], + "Date": [ "Fri, 14 Nov 2025 23:51:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8385" ], + "Content-Length": [ "8397" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:49:59.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-kbt35oepnm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Python-kbt35oepnm\",\"repositorySiteName\":\"Functions-Python-kbt35oepnm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\",\"functions-python-kbt35oepnm.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-kbt35oepnm.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-kbt35oepnm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:51:32.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-kbt35oepnm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-kbt35oepnm\\\\$Functions-Python-kbt35oepnm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-python-kbt35oepnm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "610" ], - "x-ms-client-request-id": [ "18f34034-9ea7-4b47-8cc1-4db4c109ca7f" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "7db0da83-ea1a-45c2-83a6-830556241d23" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2613,38 +2613,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550908BAD1C0\"" ], + "ETag": [ "\"1DC55C1A6BEA535\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "568edde8-409f-4c4b-b14a-8f716a7eb9fa" ], + "x-ms-request-id": [ "7b69a652-29fe-4563-92a9-a9b2afd71b74" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ec0c0f3d-36d4-49f7-ba0f-6ee5143cb31f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015051Z:ec0c0f3d-36d4-49f7-ba0f-6ee5143cb31f" ], + "x-ms-correlation-request-id": [ "9de9cf53-8d3e-4bed-a89e-f98177c5f8ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235223Z:9de9cf53-8d3e-4bed-a89e-f98177c5f8ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5C7DA85738A4E0FA9C9630D92A3B24D Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:50Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 099C72A785CD4F50A8666FAC40DEC775 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8371" ], + "Content-Length": [ "8387" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-kbt35oepnm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Python-kbt35oepnm\",\"repositorySiteName\":\"Functions-Python-kbt35oepnm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\",\"functions-python-kbt35oepnm.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-kbt35oepnm.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-kbt35oepnm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:51:52.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-kbt35oepnm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-kbt35oepnm\\\\$Functions-Python-kbt35oepnm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-python-kbt35oepnm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "611" ], - "x-ms-client-request-id": [ "5465bea5-220b-4393-bdb3-7301bd935e18" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "1050b989-8008-460a-ade6-c90cc5a7aaa4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2659,38 +2659,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550908BAD1C0\"" ], + "ETag": [ "\"1DC55C1A6BEA535\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9bf2361-be4f-4177-bb26-ead9144d7f5b" ], + "x-ms-request-id": [ "8a3dec89-7fea-4417-b3dd-643ad35daf20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1cd7a19-51cd-48dc-9d95-7966180c6bad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015051Z:c1cd7a19-51cd-48dc-9d95-7966180c6bad" ], + "x-ms-correlation-request-id": [ "9645dcfc-4173-463c-ba02-b5a2ff9c625a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235223Z:9645dcfc-4173-463c-ba02-b5a2ff9c625a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17BF987F3403410E931BCE09D7AB3B09 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C087AD37CE2E48809E153AFD6013DFAF Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8371" ], + "Content-Length": [ "8387" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-kbt35oepnm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Python-kbt35oepnm\",\"repositorySiteName\":\"Functions-Python-kbt35oepnm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\",\"functions-python-kbt35oepnm.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-kbt35oepnm.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-kbt35oepnm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:51:52.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-kbt35oepnm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-kbt35oepnm\\\\$Functions-Python-kbt35oepnm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-python-kbt35oepnm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "612" ], - "x-ms-client-request-id": [ "6db51902-4013-4e14-9bd5-03b9f6928ec9" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "581bd007-951d-4274-b1a8-34e2c5f630a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2706,36 +2706,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb820908-d728-4368-b0e1-c212cfe9076c" ], + "x-ms-request-id": [ "81b32f13-d416-4064-b9d9-a8369a43e8d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/196c8049-2844-472c-a9c4-d32334839df4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bef0c4f1-d957-4bdd-bef2-f79e8068afb3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7a878067-62af-4e8e-8ad4-f60e913c4a6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015051Z:7a878067-62af-4e8e-8ad4-f60e913c4a6f" ], + "x-ms-correlation-request-id": [ "fee93aff-da1d-4a1b-8082-eb22083ce2c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235224Z:fee93aff-da1d-4a1b-8082-eb22083ce2c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE1C5256B80343AC95212F1185691AB7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A35BBD929AA4ABBAB60622216FF1092 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "613" ], - "x-ms-client-request-id": [ "614b6fd4-b5cb-40bf-b8b3-c836e086a12f" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "10a9b260-aa88-4312-abfc-761c63d7d298" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2751,37 +2751,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eada4cd9-026c-42f3-ae11-40430f55efc5" ], + "x-ms-request-id": [ "8ee844cc-319d-42a9-a5bf-3ab0de9985c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2a5980b-d4c1-4e20-a94d-585e16ef1763" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/81736fed-8194-47f2-acd9-2f57f4f5f9c2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8563102a-ecbe-4524-a522-1ff6ff99d9bc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015052Z:8563102a-ecbe-4524-a522-1ff6ff99d9bc" ], + "x-ms-correlation-request-id": [ "450d8c3b-55cd-4d4a-9db9-a2d974207a6a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235224Z:450d8c3b-55cd-4d4a-9db9-a2d974207a6a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A28C4946AEA4B46B1BB1323F0D7DEFB Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9B6BD01FDBF4B61A842AA93FA294F64 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "614" ], - "x-ms-client-request-id": [ "d0214168-7377-4d0b-9d4a-5d18ac4f2d4f" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "800f4043-4115-4ca8-8034-bd709d229008" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2797,36 +2797,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c08302a-2d84-4f6e-92b9-978c2176819d" ], + "x-ms-request-id": [ "ebd36e79-9b73-41d1-b988-ba0260acda13" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/708ebd4d-abe2-406f-a7a1-14c0599163aa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fad44294-3496-4bf1-b0ba-5df99a49df2a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6f8157e0-7672-41de-a8bd-1352e6545369" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015052Z:6f8157e0-7672-41de-a8bd-1352e6545369" ], + "x-ms-correlation-request-id": [ "3864be7a-9db5-444b-9f01-03291d030a40" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235224Z:3864be7a-9db5-444b-9f01-03291d030a40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69DF9798F3034E3EB18243F7C56DF777 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F37A246352BB4FEE972AF7D50B93FB76 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?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-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "615" ], - "x-ms-client-request-id": [ "9b5538c0-dd92-429a-9745-be1e600253fd" ], + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "d68a0541-1343-4e3c-a567-934b7b3a8e62" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2841,38 +2841,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550908BAD1C0\"" ], + "ETag": [ "\"1DC55C1A6BEA535\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0dd08125-c034-49c5-9987-64f37d37b07a" ], + "x-ms-request-id": [ "31f8e1bc-4f2b-4d15-ade8-1f6c39469f4b" ], "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": [ "ff2f98dd-46c7-49bc-b7dc-70332910b27c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015052Z:ff2f98dd-46c7-49bc-b7dc-70332910b27c" ], + "x-ms-correlation-request-id": [ "64d278b3-d568-4a91-b94c-afb9cdd0fdf5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235224Z:64d278b3-d568-4a91-b94c-afb9cdd0fdf5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 897CFAE5B2424894925FDAFA7C14216C Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23F8FEB480D3415BADCA7D3DA6B0C1EE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8371" ], + "Content-Length": [ "8387" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-kbt35oepnm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Python-kbt35oepnm\",\"repositorySiteName\":\"Functions-Python-kbt35oepnm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\",\"functions-python-kbt35oepnm.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-kbt35oepnm.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-kbt35oepnm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:51:52.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-kbt35oepnm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-kbt35oepnm\\\\$Functions-Python-kbt35oepnm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-python-kbt35oepnm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "616" ], - "x-ms-client-request-id": [ "68931ea2-ff55-4a01-997d-92a526701c8b" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "f6c0cb0e-3077-44d8-a511-ac86438e22cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2888,36 +2888,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0a4b4c3c-353a-40e0-91d9-cc5402724b40" ], + "x-ms-request-id": [ "7a643f7e-f6a4-4fb2-8f09-56d7a76b40b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/62cccddd-54e3-41da-8ad7-c9c8aeacf234" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a7ad2e3-cd97-415e-b124-5ad50ed0e525" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0f9442e8-6f56-4db7-ac8f-e8c5d369cbea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:0f9442e8-6f56-4db7-ac8f-e8c5d369cbea" ], + "x-ms-correlation-request-id": [ "4eeb5228-e7eb-418a-a977-dd26aeaccc43" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235225Z:4eeb5228-e7eb-418a-a977-dd26aeaccc43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78F9DD41D55044468D836A104E67B087 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:52Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E97420246F942CB90435776522A8091 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "617" ], - "x-ms-client-request-id": [ "1109b194-1f3c-43fc-a754-dcf92fa56f6a" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "9e0bbf21-24f5-464f-a895-3eb930b0aac8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2933,37 +2933,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d22cb63-73d7-40de-add5-d8e63436eee0" ], + "x-ms-request-id": [ "b90d995a-354b-4044-86e1-8e8b0190adb4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7e2edf7-fc1b-4719-b822-c34b022abc36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/53683292-cd76-4703-984f-c7806309eda4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a88e2255-05b6-44e5-8288-c241cfec352f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:a88e2255-05b6-44e5-8288-c241cfec352f" ], + "x-ms-correlation-request-id": [ "a792fa2a-52e2-4d83-81e3-5a5c2bf14cc8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235225Z:a792fa2a-52e2-4d83-81e3-5a5c2bf14cc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 364BF5F333E940DBA1F1C0707179E7BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6E527BF5F90456DA1B73A361D40AFFE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "f06443ab-4b27-4f1d-a316-0c474eab9cc4" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "7a36bd65-bb71-4f5b-9de3-6f140dd48aee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2978,38 +2978,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550908BAD1C0\"" ], + "ETag": [ "\"1DC55C1A6BEA535\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "077b66e5-2c92-469e-ae4c-8cb488975114" ], + "x-ms-request-id": [ "27317da4-3d72-4aa2-a17f-1c309b3c909b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3d01714b-a4c7-4e85-9d81-e6c2fdefc644" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:3d01714b-a4c7-4e85-9d81-e6c2fdefc644" ], + "x-ms-correlation-request-id": [ "63902bbb-1cc7-427d-be1a-14bc2964aacf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235225Z:63902bbb-1cc7-427d-be1a-14bc2964aacf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE7B20E988424BA59C35CEECC35D727E Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD97565A40EB44E6913F34D80C8C3344 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8371" ], + "Content-Length": [ "8387" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-nds0y973f2\",\"state\":\"Running\",\"hostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Python-nds0y973f2\",\"repositorySiteName\":\"Functions-Python-nds0y973f2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-nds0y973f2.azurewebsites.net\",\"functions-python-nds0y973f2.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-nds0y973f2.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-nds0y973f2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:50:20.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\":\"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-nds0y973f2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Python-nds0y973f2\\\\$Functions-Python-nds0y973f2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-python-nds0y973f2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-kbt35oepnm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Python-kbt35oepnm\",\"repositorySiteName\":\"Functions-Python-kbt35oepnm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-kbt35oepnm.azurewebsites.net\",\"functions-python-kbt35oepnm.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-kbt35oepnm.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-kbt35oepnm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:51:52.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-kbt35oepnm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-kbt35oepnm\\\\$Functions-Python-kbt35oepnm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-python-kbt35oepnm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "ad80b5bd-201a-4ed3-9b11-a35ef9966fbd" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "7d8b3a0e-e745-4805-872c-da1c8e5780a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3025,36 +3025,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "801a6f7e-30fc-4d81-b873-246035f05cbc" ], + "x-ms-request-id": [ "078551df-03d1-4331-9b76-7da3726057b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8709324f-b9f3-4b29-8004-1312313bd28b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/482c64c3-57d4-404d-90fd-4d207ea8d410" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5483cd83-c6bd-40a9-b48e-231a722f6051" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015053Z:5483cd83-c6bd-40a9-b48e-231a722f6051" ], + "x-ms-correlation-request-id": [ "2496ea5d-c055-4611-ba07-2c1c202a1480" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235226Z:2496ea5d-c055-4611-ba07-2c1c202a1480" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6C717536E514BE4AE409BB62836A44E Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:53Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AEE7739048F24E1CB45FC771373B48E4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:25Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-nds0y973f2\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", "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-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "620" ], - "x-ms-client-request-id": [ "23079d1d-52cb-4a77-af43-0dfbd906b354" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "014c46fd-4198-458e-8175-e609ce2e5699" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3070,37 +3070,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53214f01-575c-4451-b20d-6367eb48cc85" ], + "x-ms-request-id": [ "7e76a941-1bff-45d2-96e2-20553de60321" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c666825-dc76-4d6f-9b61-58c030771fbf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f5444209-126f-47a6-be89-53be76c4abc7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015054Z:f5444209-126f-47a6-be89-53be76c4abc7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b92798b7-6605-45d5-8019-a7d77c39435a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b448b0c4-5cb7-4325-ad44-6ffa18bec71e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235226Z:b448b0c4-5cb7-4325-ad44-6ffa18bec71e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 719FBE879D9D4AA9A1A4EED2C3C54026 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AF39A3428A5484881421FED44A69258 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2/config/web\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/config/web\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "621" ], - "x-ms-client-request-id": [ "ae34e350-1987-4826-a989-a9a1302d30ac" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "897fd379-0fce-4853-b2cd-22f860f0882e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3116,36 +3116,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38498653-c52a-489d-b279-00fe77bb3424" ], + "x-ms-request-id": [ "48ff0dc4-8c5f-48b9-ac7c-c5dbf7782b88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dbd5a185-b9e5-4c7a-b1d1-5707b2f1aea1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015054Z:dbd5a185-b9e5-4c7a-b1d1-5707b2f1aea1" ], + "x-ms-correlation-request-id": [ "f641b29d-39fa-4d2e-a248-f289070de465" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235226Z:f641b29d-39fa-4d2e-a248-f289070de465" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0AC0D068DCA45AE8F981F691F6539E0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:50:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C767329C37A2493A8168801A32A8589F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Python-nds0y973f2?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "622" ], - "x-ms-client-request-id": [ "0c8fe4b3-8e41-4935-8566-9e61a2ad296b" ], + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "c3337e26-9e32-4164-9ba1-b6cece2e4b9d" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3160,20 +3160,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550908BAD1C0\"" ], + "ETag": [ "\"1DC55C1A6BEA535\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1bb5c59c-68b5-416a-ab61-03a2ca122a80" ], + "x-ms-request-id": [ "f1838ef6-de7a-4762-9813-c4a5bf43750b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ecdda596-b3c5-4492-9293-e4986aee2885" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ca5e229-d2e3-4405-9430-a5d420dd57af" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "ba1d2205-4e48-492d-a367-9f5a818266b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015102Z:ba1d2205-4e48-492d-a367-9f5a818266b6" ], + "x-ms-correlation-request-id": [ "1904fbc3-4b1b-4a53-93a2-33642a397a64" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235235Z:1904fbc3-4b1b-4a53-93a2-33642a397a64" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10365CA72D52433B899B7EF68DC82B38 Ref B: MWH011020806052 Ref C: 2025-11-14T01:50:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9696484243B04EC88DAC48A0C034A1BD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:26Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3187,7 +3187,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-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3202,18 +3202,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af01f2c4-ae87-4738-9cf6-76d09ef4ce43" ], + "x-ms-request-id": [ "edce71b8-8f30-4e4c-8235-850c6dbac0cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b9f447d-ec4d-47dd-b357-fbb148e49255" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b86bc378-04f3-4d76-af4b-2f735eca2e3c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2242bccc-f7ab-4983-8ec5-8aa4e8f98880" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015102Z:2242bccc-f7ab-4983-8ec5-8aa4e8f98880" ], + "x-ms-correlation-request-id": [ "ca1d2c19-37c4-4cfc-893d-3eef7b7f2c25" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235236Z:ca1d2c19-37c4-4cfc-893d-3eef7b7f2c25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE5BF94A17B3498EA412CAEE72CE579D Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8E21950BAF946B8A87A34A29551625B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3231,8 +3231,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "624" ], - "x-ms-client-request-id": [ "cf191944-d362-4e12-90b7-a60d272b0b23" ], + "x-ms-unique-id": [ "623" ], + "x-ms-client-request-id": [ "eb543a45-abba-4b09-a783-5a3c7d44bb5b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3248,25 +3248,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ccb6efd-63e5-4402-89e0-8aa66e5ce371" ], + "x-ms-request-id": [ "e2cc2b9c-9c12-45d6-8469-0461b1a151b9" ], "X-AspNet-Version": [ "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/e9f9f313-9edb-4bc5-aa5b-742381d82517" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/908aa1fc-b41f-433f-9d4b-4f642104df29" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "69da40a5-dbfb-4745-ae91-58df11651c83" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015103Z:69da40a5-dbfb-4745-ae91-58df11651c83" ], + "x-ms-correlation-request-id": [ "66ec254c-06c8-46e8-b29e-4271ad092b62" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235236Z:66ec254c-06c8-46e8-b29e-4271ad092b62" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A7EA4EBC695473D8F206E235519C5E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:02Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE3A74F7FB654A7E9FCBC74525CE3836 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36852" ], + "Content-Length": [ "36864" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -3277,8 +3277,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "625" ], - "x-ms-client-request-id": [ "b0b65752-cee4-4bd0-8ba3-33077eac258f" ], + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "dbc5b339-f781-4f9b-8a0c-bb6ecd7a5b8f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3293,36 +3293,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2e92c990-b0f0-4e05-bc07-34ccf36633b5", "667acbfb-3c17-4796-859e-7e0e904476da", "04d233c7-686c-44e7-9925-c369fa61a3dd" ], + "x-ms-original-request-ids": [ "00656223-b6f0-478f-a734-d03e193d9c99", "ca8a1ac8-57fb-421c-94c4-b633c4d40010", "2f174e35-f693-49a8-9945-7c89e812d706" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "47551027-5d6d-498a-b236-4630377d4950" ], - "x-ms-correlation-request-id": [ "47551027-5d6d-498a-b236-4630377d4950" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015103Z:47551027-5d6d-498a-b236-4630377d4950" ], + "x-ms-request-id": [ "19c031aa-bb1e-4be7-a6f1-8e3ecf9fc701" ], + "x-ms-correlation-request-id": [ "19c031aa-bb1e-4be7-a6f1-8e3ecf9fc701" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235236Z:19c031aa-bb1e-4be7-a6f1-8e3ecf9fc701" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CDABAEAFB94B485DA533BE4F65555A3B Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A22E528D0DB4EE2A60AFB71324250D2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "626" ], - "x-ms-client-request-id": [ "56b34b65-cd89-4cfe-a73b-5b63a527a377" ], + "x-ms-unique-id": [ "625" ], + "x-ms-client-request-id": [ "e13d3585-7515-41c8-be10-c237faed29b6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3337,30 +3337,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a4d7b3a8-11e7-4f10-bce2-0cfab03c1e84" ], + "x-ms-request-id": [ "45fa9164-a115-4c0f-acdc-f815244bc457" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2c3636b9-f144-465a-8372-07d2a3cddb75" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f2a9ead8-5d4a-4d30-97d2-316b79101464" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d6c4dd57-b76b-4c30-b674-cc89291c6f56" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015103Z:d6c4dd57-b76b-4c30-b674-cc89291c6f56" ], + "x-ms-correlation-request-id": [ "78a113c9-a4d3-4b7f-8614-569f31d0b3df" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235237Z:78a113c9-a4d3-4b7f-8614-569f31d0b3df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14D61847F6A245089B8DCC91A3A2B90A Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A132B9A155144D380C9E41073F2A240 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-si2zeg/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?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-9wrjxu/providers/Microsoft.Insights/components/Functions-PowerShellTest-0d6xycl2n4?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-si2zeg/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Insights/components/Functions-PowerShellTest-0d6xycl2n4?api-version=2015-05-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -3380,30 +3380,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/288a85b7-25b9-4e16-b897-8d4577f3438e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "8470cf66-85e5-4729-bca8-d9d64f2a24b3" ], - "x-ms-correlation-request-id": [ "8470cf66-85e5-4729-bca8-d9d64f2a24b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015107Z:8470cf66-85e5-4729-bca8-d9d64f2a24b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f0cfb8b-cd95-4169-b9e8-cc132d0b5c34" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "8ec52a38-ecb3-48db-acf7-e61e77b378aa" ], + "x-ms-correlation-request-id": [ "8ec52a38-ecb3-48db-acf7-e61e77b378aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235244Z:8ec52a38-ecb3-48db-acf7-e61e77b378aa" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96BFDC5F683D4B90B40AC1F9C9BDDF1F Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:03Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ADBA3F5F762C4AA488291C1195F05D0F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:52:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0907c61f-0000-0300-0000-69168b0b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"AppId\": \"744366ec-3e02-4658-a275-248f2af753fc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f24655db-a8fa-483b-8beb-f2513e70e623\",\r\n \"ConnectionString\": \"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\r\n \"Name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"CreationDate\": \"2025-11-14T01:51:04.2627991+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-1hufk4w38b_744366ec-3e02-4658-a275-248f2af753fc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-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\": \"\\\"30001b1d-0000-0300-0000-6917c0cc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"983a9748-76c5-4f91-bee1-5844312f2f2b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"14318ae2-abd9-4e03-a2f0-b97dee371cc7\",\r\n \"ConnectionString\": \"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:52:37.7229979+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-0d6xycl2n4_983a9748-76c5-4f91-bee1-5844312f2f2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\"\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}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\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 \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -3417,39 +3417,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509260F292B\"" ], + "ETag": [ "\"1DC55C1C6E5BEAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a002714d-0e88-4cfc-85da-69cf0e71c3d4" ], + "x-ms-request-id": [ "510d005f-c64e-41fc-b632-2342fed21a7b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e044969-c16d-4f73-b7c0-3102c7f21e3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb5c5419-ed34-4e7f-b722-855ecbdfed79" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "4fff4107-f8b8-4b25-bf98-cfc5dca9029b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015150Z:4fff4107-f8b8-4b25-bf98-cfc5dca9029b" ], + "x-ms-correlation-request-id": [ "a85b33e6-dc2c-4a60-b39a-b0a45b04a4e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235327Z:a85b33e6-dc2c-4a60-b39a-b0a45b04a4e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76CC882D5B6F48B298DCFFCC8C2FAF51 Ref B: MWH011020806052 Ref C: 2025-11-14T01:51:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:51:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8485B4A036FB44B0AA15FEE26821186C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:52:44Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8941" ], + "Content-Length": [ "8893" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:09.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:52:46.1066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "629" ], - "x-ms-client-request-id": [ "f5a689a8-9392-4002-805e-81eacda95382" ], + "x-ms-unique-id": [ "628" ], + "x-ms-client-request-id": [ "b6eee4dd-e374-4d05-a05d-40681f84c72f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3463,38 +3463,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55093E22B1C0\"" ], + "ETag": [ "\"1DC55C1DF112F0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4d60151-98ca-43fd-8df5-959284d9b925" ], + "x-ms-request-id": [ "2bc16062-e3e6-4d0f-8470-b1dc9c5a3e27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dfee51d1-2c9b-4770-8364-59b95b37263a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015220Z:dfee51d1-2c9b-4770-8364-59b95b37263a" ], + "x-ms-correlation-request-id": [ "008ec21e-5e1a-4f67-8867-acd48d7fe678" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235357Z:008ec21e-5e1a-4f67-8867-acd48d7fe678" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 25A72F14AB324748B7695BCB89D2AAEA Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F342B5A53617470582362CF2BEBF82A3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:53:57Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8918" ], + "Content-Length": [ "8870" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:53:27.3766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "630" ], - "x-ms-client-request-id": [ "05ad91f1-1f75-4297-b6ff-aa178bf93940" ], + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "7af90329-bb72-45a4-a07f-f371f7283f34" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3509,38 +3509,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55093E22B1C0\"" ], + "ETag": [ "\"1DC55C1DF112F0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac3378e7-7ee1-4d4f-9038-a70834b2effb" ], + "x-ms-request-id": [ "89752edd-0bc0-49a4-a74e-da9f8c52b390" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88564335-836d-4d41-99b8-f05372418410" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:88564335-836d-4d41-99b8-f05372418410" ], + "x-ms-correlation-request-id": [ "519fad1f-6fdf-423e-82cb-e9e8243f254c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235358Z:519fad1f-6fdf-423e-82cb-e9e8243f254c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 481DC298650349488F5D0158989EE6B4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:20Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 353B6AC90E0F4CCEBB8404281783C58E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:53:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8918" ], + "Content-Length": [ "8870" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:53:27.3766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "631" ], - "x-ms-client-request-id": [ "0363ef6d-d2b5-4668-8d88-217af9eeb776" ], + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "f7ad1418-90a9-4db9-8098-7a29a0ba1e2d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3556,36 +3556,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a63d32b-e3b6-48c2-b7cd-87fc1d15cd60" ], + "x-ms-request-id": [ "74dc73a1-810b-4415-8cbf-3a0141e789aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc51b96a-e9af-411b-893e-fee728253135" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51f204fe-5d6a-450a-93d0-b0babfabed03" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7ab7fb98-fb8e-4ba0-b22f-ca8607a11544" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:7ab7fb98-fb8e-4ba0-b22f-ca8607a11544" ], + "x-ms-correlation-request-id": [ "94167a8b-45b7-46a3-a2b8-11d234ff370c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235358Z:94167a8b-45b7-46a3-a2b8-11d234ff370c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 956455185AED468FA93E15F932699194 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CC81FFD314743AD9382C29F87107AED Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:53:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "632" ], - "x-ms-client-request-id": [ "f86c8b59-ceb1-46a3-bfe5-cc37330bd78b" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "77df1a98-9668-4730-b7e6-30bfac796889" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3601,37 +3601,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d53becb5-4600-4926-ae61-82776c1c64ed" ], + "x-ms-request-id": [ "7a5dc845-bff3-410a-9b3d-aa2e3cf277b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cdc79686-e4a6-4689-812c-1a9a077c3386" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "a4a7dd1b-e5b4-4b3c-9922-d7a4ae398593" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:a4a7dd1b-e5b4-4b3c-9922-d7a4ae398593" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c76548ac-ee91-45ae-a195-bbbcdd7ebc54" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c8fa4617-1c22-4f52-bc3a-387f632d2658" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235359Z:c8fa4617-1c22-4f52-bc3a-387f632d2658" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D380CA1386934FF3AA64A958F9DD4D18 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0DEC3734AE1C4EE2B9C8C4E12E2B1418 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:53:58Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "633" ], - "x-ms-client-request-id": [ "20ab9883-8d10-4c85-a9f1-3716f7261e14" ], + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "3d3fc3ee-b830-4491-bbe7-4c3f4ac3e503" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3647,36 +3647,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "984917b0-11c9-4f08-9eb3-0504fefb0074" ], + "x-ms-request-id": [ "f7be4835-2d2e-46e6-91aa-fdcd15b1f7e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/106094d0-bd5e-4284-8774-58925e2c40f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da1ca394-7959-472e-93d4-9ad7805cc198" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c4958568-d23b-4904-80e7-a8f55b7b3fdb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015221Z:c4958568-d23b-4904-80e7-a8f55b7b3fdb" ], + "x-ms-correlation-request-id": [ "81387a77-8a47-4e01-9172-0d23715c759d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235359Z:81387a77-8a47-4e01-9172-0d23715c759d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13D21DE0980D4F3884B9E69540E2664D Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 105FB3A8EE8B4611A64CA72175F03BCC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:53:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "634" ], - "x-ms-client-request-id": [ "c1eccda3-4641-4437-89ea-5eb5c9bf315a" ], + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "b3fda361-ffa5-4c2b-b9ed-5e6e96fb9480" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3691,38 +3691,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55093E22B1C0\"" ], + "ETag": [ "\"1DC55C1DF112F0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e6e2245-c490-4886-a0dd-b36069c5eb1d" ], + "x-ms-request-id": [ "e588d2fb-6aa7-4c2f-8d76-0e6498c39cfc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c2176ccf-7a85-4e7c-bd46-04d945bbf9b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015222Z:c2176ccf-7a85-4e7c-bd46-04d945bbf9b3" ], + "x-ms-correlation-request-id": [ "d6f67df7-622a-4d0b-80b8-fc9ffe08e11a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235359Z:d6f67df7-622a-4d0b-80b8-fc9ffe08e11a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C20040258DFF4A6DA3C1C87870CC4E44 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:21Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA22FEF800A9429AAAF7EA8B4DED2226 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:53:59Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8918" ], + "Content-Length": [ "8870" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:53:27.3766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "635" ], - "x-ms-client-request-id": [ "fbf8cb5a-c9b1-474a-b958-d5e18d07cad6" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "2c5de6bf-515d-4635-8763-e94b31233e1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3738,36 +3738,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c47b24e-388e-4ea8-9002-c50f53778a98" ], + "x-ms-request-id": [ "bee04850-e134-4db9-9275-3697d03b7788" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2888ed65-00cb-433f-84fa-557031ffd436" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b0d757eb-366f-40af-b554-842c96eafc97" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f1a13fbf-86a7-42e1-9e84-6fdb0d2c0539" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015222Z:f1a13fbf-86a7-42e1-9e84-6fdb0d2c0539" ], + "x-ms-correlation-request-id": [ "837ad8c0-8317-49da-95a3-da6c90d9bcf3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235400Z:837ad8c0-8317-49da-95a3-da6c90d9bcf3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59812FA70AA24D30953760E1BD8B5206 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA97E7399B40416E9048873C021961FB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "636" ], - "x-ms-client-request-id": [ "66d97b4f-4500-4876-85ca-cdd78ac9b23a" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "0de0e16d-0b47-47bc-809a-7c5f20e6711a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3783,37 +3783,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efabda4a-7191-42b6-aa89-e2cf238e94a7" ], + "x-ms-request-id": [ "9a8cf392-0693-4fc1-af25-c44214899bfb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0feb1c76-ce8c-4ee5-831b-035a76e1d183" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fefa542b-bfd8-4ac2-9be8-c2ae93d69085" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015222Z:fefa542b-bfd8-4ac2-9be8-c2ae93d69085" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51a0a674-7d57-4ce8-b520-166a62c774cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9ad7285b-e49f-4958-92cf-890e5632f37c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235400Z:9ad7285b-e49f-4958-92cf-890e5632f37c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A32DDB5BCEF04F6FB3AF50355920DBFC Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E21CC23BE8BE41A5AD84E0A45417CCBB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:53:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "637" ], - "x-ms-client-request-id": [ "fbf09b1d-0a6f-4d42-9370-00211f26684e" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "42f6a0f3-1f99-408a-8a6b-192b6d230a5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3828,38 +3828,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55093E22B1C0\"" ], + "ETag": [ "\"1DC55C1DF112F0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0b543fa-711e-4422-ad95-35bfdbffef6e" ], + "x-ms-request-id": [ "528f4bbf-ac45-49ef-871f-221659fbbe17" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3bae5a95-c564-4021-961c-8eb04e4474cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:3bae5a95-c564-4021-961c-8eb04e4474cf" ], + "x-ms-correlation-request-id": [ "344c9a0b-6b78-42e9-b4c7-d6be45d36ecd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235400Z:344c9a0b-6b78-42e9-b4c7-d6be45d36ecd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91AC17B620604ECFBC97B00424DC75FC Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:22Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C44BB0204CA7474CAE2486A0355ACEDC Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8918" ], + "Content-Length": [ "8870" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:51:49.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:53:27.3766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "638" ], - "x-ms-client-request-id": [ "b84b9774-b606-4206-b2e4-372d857f10db" ], + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "ad0dc64e-f888-4218-b8f5-22ccd050601f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3875,36 +3875,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f58da032-bcc2-46ee-a749-8d85a351fc17" ], + "x-ms-request-id": [ "d38c37bc-9626-43ad-8ddd-d3f2bdaaf841" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5cab0b0-cfee-4cbf-95f5-ce04ecd63ef0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/42ae35f7-7e42-4ee2-bc09-a7d3de703904" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1dd5d56b-50ae-4c1f-a19a-65cd5636625e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:1dd5d56b-50ae-4c1f-a19a-65cd5636625e" ], + "x-ms-correlation-request-id": [ "f98bf885-8054-476b-9720-672cb3c0e676" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235401Z:f98bf885-8054-476b-9720-672cb3c0e676" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35729D0757D14BC5891722B7FCD2C0A6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3D81CA3EF5941CE8DFAD0E09AF94D88 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:00Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "639" ], - "x-ms-client-request-id": [ "75d3f2be-a651-4013-9032-8c40ae156416" ], + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "24efb7dc-99fe-48a6-a516-c14f67914253" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3920,37 +3920,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a87a5a1-1d1d-4741-8c85-7042017cd374" ], + "x-ms-request-id": [ "f83a3385-7a3d-4d9e-9ec5-232213bf51f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8223fc4a-31d2-4249-8030-0328f0e199bd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "55bfc34c-9882-4fe1-a646-0d691b3d2183" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:55bfc34c-9882-4fe1-a646-0d691b3d2183" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ca3b003-ab91-4403-bfa3-e479bfd26a55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1a09678d-6001-49c8-8e4f-c65d8b675cbd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235401Z:1a09678d-6001-49c8-8e4f-c65d8b675cbd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5A274D92F0A4B60AD347E1B8F66E8B7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E0BC9C91BC24209BDE5E94732D5D6A8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"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-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "640" ], - "x-ms-client-request-id": [ "8530cdf1-19ed-4111-9708-d320f5ab1845" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "d5efa1ca-c4c3-48e9-b23e-d142232471b7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3966,36 +3966,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "166bb97b-a8be-4d15-a32d-4934b9fb2a1d" ], + "x-ms-request-id": [ "973e581c-e956-4021-a8ab-4232f7a56c21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f67cbabc-ff32-405d-9cb4-5f486f613356" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015223Z:f67cbabc-ff32-405d-9cb4-5f486f613356" ], + "x-ms-correlation-request-id": [ "0e0b20a3-f86c-45f2-8378-5546b38c6b01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235402Z:0e0b20a3-f86c-45f2-8378-5546b38c6b01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CA3D4D798E04A20A3ACDA302D4F4516 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E8AA857D61649BB929C6794735925C7 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:01Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "641" ], - "x-ms-client-request-id": [ "60325658-5ec4-43a4-a557-1c3f471f6865" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "bd6d8c7c-d154-4354-b790-79ac27a408a8" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4010,20 +4010,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55093E22B1C0\"" ], + "ETag": [ "\"1DC55C1DF112F0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd8aa2f4-d832-4b7f-9292-bc9a5851e4df" ], + "x-ms-request-id": [ "1b9e20e3-a314-4761-b1b1-ce5f5cdf53ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a1f99ca-57ce-4f81-b891-74bcb1a68578" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ecde81fa-f86c-4ade-9f7f-eef34ab94a51" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "88e947ce-f2c8-4fc8-be08-c28a0066f64d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015232Z:88e947ce-f2c8-4fc8-be08-c28a0066f64d" ], + "x-ms-correlation-request-id": [ "f0e61ed8-0cd0-42bf-a1f5-8dad48395159" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235411Z:f0e61ed8-0cd0-42bf-a1f5-8dad48395159" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1060BF889A48419D87DE4F5862CB2ABD Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:24Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47CD7122616F48A5A61E28B51C3B4A93 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:02Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:10 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4037,7 +4037,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-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -4052,18 +4052,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3061911a-b7b9-4360-bbdf-d408ffa060c0" ], + "x-ms-request-id": [ "cce4c8e4-9796-4ee6-ba65-01a803000385" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/462d67fe-1fa7-4227-a630-46d340ca9be2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b11b9a5e-b292-42be-9896-f01c4f6ba73e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c983a154-1b5f-4779-b43c-f7175bec4d3f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015232Z:c983a154-1b5f-4779-b43c-f7175bec4d3f" ], + "x-ms-correlation-request-id": [ "59418e84-a4ca-4119-89a7-12767f3fa558" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235411Z:59418e84-a4ca-4119-89a7-12767f3fa558" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8661423CF9F42CAAAEBDB74E0E4CDCD Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43F7C8E488AF4B2C83F389E482733414 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -4081,8 +4081,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "643" ], - "x-ms-client-request-id": [ "ba7bd8e4-6bac-40e5-8ca8-387bab66916b" ], + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "2ee977b7-1724-4910-af44-6b63bc740ba4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4097,36 +4097,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "cb338292-d182-4b10-9a2e-04dd5c81b9f6", "9ab113af-d986-48ac-be8a-65bb38146905" ], + "x-ms-original-request-ids": [ "cc82fd87-f98a-44ab-b6bd-0dd922f4db3d", "68212fc0-9230-4129-85c3-bc18183cb54b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3a47d3c0-d9e1-4e26-b918-81462d389a58" ], - "x-ms-correlation-request-id": [ "3a47d3c0-d9e1-4e26-b918-81462d389a58" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015233Z:3a47d3c0-d9e1-4e26-b918-81462d389a58" ], + "x-ms-request-id": [ "fc0e91a9-8cc6-428d-85f9-8b43a5b5367e" ], + "x-ms-correlation-request-id": [ "fc0e91a9-8cc6-428d-85f9-8b43a5b5367e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235412Z:fc0e91a9-8cc6-428d-85f9-8b43a5b5367e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF1EC9B3C7F247A58A4B1C7339E1DF47 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1878034F58E341BAA4EFEAC65A929051 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "644" ], - "x-ms-client-request-id": [ "dfabc7ea-fa12-41fe-8473-a7ff9ff41c48" ], + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "e3f006b2-4bfb-4268-ba69-ce8ecb4d376f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4142,36 +4142,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9115f90-f9ab-4bae-89f9-6d4aeaf797e2" ], + "x-ms-request-id": [ "de1a4a1e-cd75-466d-b36c-99bdfac46231" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f712ec01-5420-4087-8f21-c923ea79f38c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015233Z:f712ec01-5420-4087-8f21-c923ea79f38c" ], + "x-ms-correlation-request-id": [ "77117035-eef4-4e57-b40a-0213cb416cdc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235412Z:77117035-eef4-4e57-b40a-0213cb416cdc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C374DC1B5D642F3A7B332768AD648CE Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FDE9AF6497A54CA88A2E8143452D4D91 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "645" ], - "x-ms-client-request-id": [ "c4ad3888-7094-4628-ac7b-a3eb572ceff0" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "0d99a7d5-ff27-4562-9885-b9c1ef4222ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4187,36 +4187,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a4d5e08-5c8b-443c-9829-2134a9489e94" ], + "x-ms-request-id": [ "97a89c64-848e-4238-99f8-994f17db872c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7954fb74-3b70-4efe-bca0-5018039ab16d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015233Z:7954fb74-3b70-4efe-bca0-5018039ab16d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "68b69c92-d2af-4b55-9384-561410783915" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235412Z:68b69c92-d2af-4b55-9384-561410783915" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83D2C05733744A9FACCFD147C668A36C Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:33Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7804329DC974784865DD2CACAF74F33 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "646" ], - "x-ms-client-request-id": [ "2b942f9e-cd93-42a6-b395-3551bc06da12" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "0fc2f3c6-edb4-4f19-b5ca-6a1b07101787" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4232,36 +4232,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "888ec1e2-a53f-4da7-9e4a-b69165979e6b" ], + "x-ms-request-id": [ "ab271f1c-5c00-4062-a110-196868655fda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "facadcff-cae4-42b8-a760-4ade9862fd9e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015234Z:facadcff-cae4-42b8-a760-4ade9862fd9e" ], + "x-ms-correlation-request-id": [ "0d198fa6-5727-4b4c-81aa-329f040099e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235412Z:0d198fa6-5727-4b4c-81aa-329f040099e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 704EAD2E367143098C74AA2DB8B6208D Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37162FE6B39B424BB2CA9DC8F8948650 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:12Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "647" ], - "x-ms-client-request-id": [ "b7716581-d07b-4049-95fa-4a97f543b413" ], + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "2d9a5d64-8a3d-4ac3-9280-41d491d3a3c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4277,36 +4277,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa4b88c8-e0b5-44dc-b8cd-c26931951ba9" ], + "x-ms-request-id": [ "8d350a2d-3246-4c25-8bfd-03549c9fd1c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e33cdf6f-3395-410d-aa4d-875308c6e201" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015234Z:e33cdf6f-3395-410d-aa4d-875308c6e201" ], + "x-ms-correlation-request-id": [ "230eda07-f3ca-4e0f-be76-69cb085661be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235413Z:230eda07-f3ca-4e0f-be76-69cb085661be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F7BB0B5A8A6428786A949F08267AE58 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B40B403D9074FBF9AB3503EA442C904 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "648" ], - "x-ms-client-request-id": [ "633e1b2f-5f72-4981-95fe-1d969fc92874" ], + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "e7f6db19-6446-458b-ae14-3037fb90f98f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4322,36 +4322,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2399ba7b-2d83-4eb2-933c-e169b9b9947a" ], + "x-ms-request-id": [ "a574c869-4e4f-4192-842f-f182ffcc65ee" ], "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": [ "f009e153-31bb-4390-b2d0-1e34ef15ee22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015234Z:f009e153-31bb-4390-b2d0-1e34ef15ee22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "466a0b7a-15f2-4d1d-97f8-f5a8f3828c1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235413Z:466a0b7a-15f2-4d1d-97f8-f5a8f3828c1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F211C4FE4AB4A95A3E0FB983F7BB127 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D2B213AC3FF429B9C1986A1729FAF81 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "649" ], - "x-ms-client-request-id": [ "b6528614-65fc-4502-94cc-db19fb288dca" ], + "x-ms-unique-id": [ "648" ], + "x-ms-client-request-id": [ "b6d3deec-1c45-40f3-bb35-f8663b7a5e49" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4367,24 +4367,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a85f09b6-31e4-4d85-b916-9c518d725cf7" ], + "x-ms-request-id": [ "e61436e0-9b6b-46e6-aa03-8d61b080d444" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93dbfba0-ed82-48dc-976b-a8a095c1deb4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015235Z:93dbfba0-ed82-48dc-976b-a8a095c1deb4" ], + "x-ms-correlation-request-id": [ "40176bc5-edbd-4016-ace9-b018783bb6bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235414Z:40176bc5-edbd-4016-ace9-b018783bb6bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F82D541057248DCA13F782B71456CF5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 267BF093485144DD80FB87A33092BF8B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:13Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1696" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":9,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -4395,8 +4395,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "650" ], - "x-ms-client-request-id": [ "ef30cc08-f890-421b-a129-f71f9e0c7d28" ], + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "eda9d146-ef46-4b04-a3a4-4e6bc128b4cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4411,36 +4411,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "43f6a423-b6a6-414e-b37b-2f9285626be1", "b356fe58-4a17-4eaa-b4fe-b58970bd187e", "ef1104c0-cdd3-4736-b0bc-9c6d5504deaa" ], + "x-ms-original-request-ids": [ "76871707-ce8f-48bb-b7d5-cab8a638a6ae", "d5f22bc3-90c4-466e-8614-d123e2dd9b34", "694b30e0-b0ed-4342-84d3-85b31a88978a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "09997ceb-0c59-418d-ba88-46ff1e87d8a2" ], - "x-ms-correlation-request-id": [ "09997ceb-0c59-418d-ba88-46ff1e87d8a2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T015236Z:09997ceb-0c59-418d-ba88-46ff1e87d8a2" ], + "x-ms-request-id": [ "610d3281-8b81-4a1a-a7bf-8a1109407751" ], + "x-ms-correlation-request-id": [ "610d3281-8b81-4a1a-a7bf-8a1109407751" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T235415Z:610d3281-8b81-4a1a-a7bf-8a1109407751" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5397741854C4FF69E449F11E227FEC7 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14844427B1EF4E028ADA6C7769748126 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:14Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "651" ], - "x-ms-client-request-id": [ "0365b611-93cd-412a-afe2-d60afab39948" ], + "x-ms-unique-id": [ "650" ], + "x-ms-client-request-id": [ "c6ec7d16-dde7-454c-99fe-018f17641ee0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4455,30 +4455,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2273dbc8-a63f-406d-9a9d-e9eae8fa9388" ], + "x-ms-request-id": [ "ab42c74c-b332-447a-9efb-df5f928c425d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9eb5a26-e0fa-4692-84c9-e81c3768d257" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e1bb352f-b97d-4350-a1c9-162400e98560" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc0bf661-5a27-4a12-8ce4-45ebd115ea57" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015236Z:dc0bf661-5a27-4a12-8ce4-45ebd115ea57" ], + "x-ms-correlation-request-id": [ "e3dd3702-126b-40e0-aac8-f175b8e5fb7b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235415Z:e3dd3702-126b-40e0-aac8-f175b8e5fb7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1132F5E83F4C464AA969EDF2A72AA3AA Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C7FD82D681E4761936FC99FF53B2F1B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-PowerShellTest-0d6xycl2n4?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -4498,30 +4498,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d71c5e30-320e-4e12-9de8-55abbb9f27b1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "3c523810-6ec0-4320-8e50-23949a6b5335" ], - "x-ms-correlation-request-id": [ "3c523810-6ec0-4320-8e50-23949a6b5335" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015242Z:3c523810-6ec0-4320-8e50-23949a6b5335" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb23abeb-257b-4b22-ab08-3f36d2c584e1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "bc80134d-de5e-4091-b6fb-f31d4f6a8752" ], + "x-ms-correlation-request-id": [ "bc80134d-de5e-4091-b6fb-f31d4f6a8752" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235422Z:bc80134d-de5e-4091-b6fb-f31d4f6a8752" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 578A6C86A8DB4C89A9D2BB9B05A99FB2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:52:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E835BCC3E8074538A167FD658216FA0A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:15Z" ], + "Date": [ "Fri, 14 Nov 2025 23:54:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0907dd3a-0000-0300-0000-69168b6a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"AppId\": \"f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0f0b38e-158d-4cae-9767-5abe5d3b54f8\",\r\n \"ConnectionString\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"CreationDate\": \"2025-11-14T01:52:36.9752274+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-1hufk4w38b_f5dda4ed-baee-401a-9b17-14d8809b3c0b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-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\": \"\\\"30007228-0000-0300-0000-6917c12e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\r\n \"ConnectionString\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"\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-ry1xpa/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"\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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4535,39 +4535,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55095EC6EA75\"" ], + "ETag": [ "\"1DC55C20187D0CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b941f09-648d-4646-9cd4-8afd3d3056c8" ], + "x-ms-request-id": [ "1a84c292-f3c2-4a9d-a5b7-0abd7145a4c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8eb624a-2884-4e28-80f4-c8af75a77625" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70337113-4f35-4b1c-85e4-14fdd3c2818a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "38ba433a-fe53-4209-92a2-04fdd9be6c1f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015324Z:38ba433a-fe53-4209-92a2-04fdd9be6c1f" ], + "x-ms-correlation-request-id": [ "21875fd0-333d-47ca-a829-49da76939a23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235504Z:21875fd0-333d-47ca-a829-49da76939a23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 488301E151AC45D39824ED51CD2B78B2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:52:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21269A591A6A44EA914DF31E1DC60AE3 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:54:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8839" ], + "Content-Length": [ "8828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:52:44.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:54:24.77\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "654" ], - "x-ms-client-request-id": [ "7593e443-26ec-43ac-900a-0445bce6819d" ], + "x-ms-unique-id": [ "653" ], + "x-ms-client-request-id": [ "2b2c0188-97eb-42d7-8abc-25ab7c166d72" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4581,38 +4581,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509761FC895\"" ], + "ETag": [ "\"1DC55C218CA4DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0a2c8cf-4d9f-42bc-abff-e0dc9c70c7d4" ], + "x-ms-request-id": [ "4917e1ea-1b9b-4663-8eb2-553f17cc93a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66146698-2eef-4486-8705-4a5339243b15" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015354Z:66146698-2eef-4486-8705-4a5339243b15" ], + "x-ms-correlation-request-id": [ "02d047dc-09eb-4f4a-a3cd-8888ccbcfd88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235534Z:02d047dc-09eb-4f4a-a3cd-8888ccbcfd88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB520C6935FE4430AEC55A163D746E45 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95A80163A94847569196E9B2AB87CFD2 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:34Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8802" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:55:04.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "675a98f5-a826-480f-9efd-d21f198b6609" ], + "x-ms-unique-id": [ "654" ], + "x-ms-client-request-id": [ "7e130561-91d2-4efb-ba22-7f08e1620a17" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4627,38 +4627,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509761FC895\"" ], + "ETag": [ "\"1DC55C218CA4DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "845f104e-a1df-455e-813f-1fbb013d267b" ], + "x-ms-request-id": [ "f33f768a-8888-4185-9a82-f0d8227f7e0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d5861414-dfd9-4081-9cb3-d24d41021cc8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015354Z:d5861414-dfd9-4081-9cb3-d24d41021cc8" ], + "x-ms-correlation-request-id": [ "fc69afa9-9667-410f-aa5c-4b2ecdfae621" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235535Z:fc69afa9-9667-410f-aa5c-4b2ecdfae621" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B40CECBE2F14DDE9675634375A65901 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACF7C88BDA1E4E41A202A5A81B01045A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:34Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8802" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:55:04.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+15": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "656" ], - "x-ms-client-request-id": [ "cae483f2-639e-4bd0-b46b-8d0fffde350f" ], + "x-ms-unique-id": [ "655" ], + "x-ms-client-request-id": [ "14e07df9-9e26-4871-b9d5-340f97007eea" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4674,36 +4674,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da625acc-81bb-4e84-b808-f9c6a8c6b064" ], + "x-ms-request-id": [ "67438b79-116c-4517-8c02-c8e3b75eddc4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09c4fd53-726e-47f8-b894-0776ad898053" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9785077-c221-4022-ba70-d8f53cd8d1da" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c8a6820c-2ba8-47b3-a4f8-4ff49d187000" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015355Z:c8a6820c-2ba8-47b3-a4f8-4ff49d187000" ], + "x-ms-correlation-request-id": [ "05ab9d7d-12d7-429e-ad86-cc23bd3ceb5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235535Z:05ab9d7d-12d7-429e-ad86-cc23bd3ceb5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AF9FD41344D40CAB24A380037E75172 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79E8409015F24CE2A5A30D60D3F42E65 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "657" ], - "x-ms-client-request-id": [ "bc831eeb-b6cd-45f6-b712-2b34e60ff660" ], + "x-ms-unique-id": [ "656" ], + "x-ms-client-request-id": [ "5f4b0c55-e898-4e03-bf33-b760ce990799" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4719,37 +4719,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "795f930d-74a7-462f-978f-98485b4a8b66" ], + "x-ms-request-id": [ "c9fa5069-ac34-46fd-b82a-27ce5a024f7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5340b286-d566-476a-b9e3-04c7fbcbc040" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/078bf430-e6f1-4f20-aa5b-d3e86d32fe20" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5f5b37a5-6e08-48b6-83f8-8212deeef168" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015355Z:5f5b37a5-6e08-48b6-83f8-8212deeef168" ], + "x-ms-correlation-request-id": [ "ff2b671b-c13e-4da4-b4b2-b65b63f66bd6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235535Z:ff2b671b-c13e-4da4-b4b2-b65b63f66bd6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9B1931E145F42F28DEE8B5FAEE2EF42 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7665EAA34994F66B42DCF5030FA078D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69464,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":70500,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "658" ], - "x-ms-client-request-id": [ "c8f79ec2-05fa-4a52-9319-f7612f7f8aed" ], + "x-ms-unique-id": [ "657" ], + "x-ms-client-request-id": [ "e0548b81-7e88-4827-b087-a543946a42e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4764,38 +4764,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509761FC895\"" ], + "ETag": [ "\"1DC55C218CA4DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee481af5-72b7-40f1-afe2-24cdbab6ab24" ], + "x-ms-request-id": [ "73afe999-27ac-49e8-9d1b-6d9f7425baf3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8b1549fe-01bb-49a7-871f-6be4096f0637" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015355Z:8b1549fe-01bb-49a7-871f-6be4096f0637" ], + "x-ms-correlation-request-id": [ "7c09b54e-1f5b-4c44-abb7-469f899560b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235535Z:7c09b54e-1f5b-4c44-abb7-469f899560b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D570A544EE9047408D7D3B09A56DDD9F Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A138B4FFCB7E4C20BFB4AFA0AE1C68DE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8802" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:55:04.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+18": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "659" ], - "x-ms-client-request-id": [ "de195182-531d-4c69-ab13-281aab55a69d" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "1b326655-37ca-44a2-966f-3236328ff4a5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4811,36 +4811,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b09a02b7-e9b0-49bd-9e0b-59a32f62d658" ], + "x-ms-request-id": [ "617d45aa-1d74-4f23-942e-d8e70c050444" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b81bef2e-416f-44be-8cbf-cdcbf1ce1354" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc8ce8fd-b373-47d3-8643-47a8b108088e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "276abe4f-fb10-4af5-874a-c7405a3cda4c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015356Z:276abe4f-fb10-4af5-874a-c7405a3cda4c" ], + "x-ms-correlation-request-id": [ "029a5557-afa4-4f2a-99f8-a363b24d6853" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235536Z:029a5557-afa4-4f2a-99f8-a363b24d6853" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD12539F4CFB497D8236326108EAD256 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 059A9C78575B4F979EBA1F6EAA0B3EB5 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "660" ], - "x-ms-client-request-id": [ "b3091914-fe66-4810-a444-9285c59e38fd" ], + "x-ms-unique-id": [ "659" ], + "x-ms-client-request-id": [ "11da3601-af4d-4539-b784-3e6375a512ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4856,37 +4856,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3d4b1df-e533-4921-a2fa-bd83556d7aa9" ], + "x-ms-request-id": [ "b5d615ee-5971-44c6-9aa3-1f0ffa79b38b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f028681a-7057-4010-84e3-2431170613da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df6e89fc-a51d-4026-93f9-81126be10f0b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "de1f9658-20c2-444f-a214-29bf6e398e74" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015356Z:de1f9658-20c2-444f-a214-29bf6e398e74" ], + "x-ms-correlation-request-id": [ "c006f11d-273f-47e4-bb15-5fb988f8b104" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235536Z:c006f11d-273f-47e4-bb15-5fb988f8b104" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 496D14B909844890AA32E7D54773397E Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 816CF6493746449D977F385B243CC84A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69464,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":70500,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+20": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "661" ], - "x-ms-client-request-id": [ "09defbd3-f8d9-4ee6-a9ac-5ba32ba465ee" ], + "x-ms-unique-id": [ "660" ], + "x-ms-client-request-id": [ "129b2a35-759b-4501-9f6b-2924cffb0e59" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4901,38 +4901,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509761FC895\"" ], + "ETag": [ "\"1DC55C218CA4DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af4b1caf-be4b-4694-9197-c03ddbea9324" ], + "x-ms-request-id": [ "6c3fa79a-e65a-48ce-b35b-f9e2bb646c2b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eb303d72-e83e-4641-b8cb-7af79c19d897" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015356Z:eb303d72-e83e-4641-b8cb-7af79c19d897" ], + "x-ms-correlation-request-id": [ "c8e6dc09-3688-4a97-acba-19291bd329fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235536Z:c8e6dc09-3688-4a97-acba-19291bd329fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1AA1F99FF804827B4BDD9DF978B0B1D Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E4DA9A5BDAD7425EBCB3C0DBE309733D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:36Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8802" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:53:23.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:55:04.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+21": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "662" ], - "x-ms-client-request-id": [ "25e2b076-ccb7-4dc6-aeaa-077766e3909a" ], + "x-ms-unique-id": [ "661" ], + "x-ms-client-request-id": [ "da316750-70cd-4778-ab63-1555674adadd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4948,36 +4948,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c82a36c-5843-47e8-9f19-7fcbf39a7f86" ], + "x-ms-request-id": [ "3f050ea5-975e-46dd-8aa3-dbccfadf4b41" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d0f2fea-3ba4-4f95-895a-95cc4d3849a3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/168e0d99-7975-48b1-9280-44c5f489724b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ee85f67c-8462-430c-ab47-8fa2cf825c20" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015357Z:ee85f67c-8462-430c-ab47-8fa2cf825c20" ], + "x-ms-correlation-request-id": [ "d2659b4f-8004-40ce-8937-7feebb9dfbb8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235537Z:d2659b4f-8004-40ce-8937-7feebb9dfbb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB327D3BEC434A2EBD0E61180546CB80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABF359F2D6E64B1B9D44FC8CD852E5DA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "663" ], - "x-ms-client-request-id": [ "c3bd4c6b-7fd5-4f08-9ebd-f63d0d506e86" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "9848dac4-6f50-4a60-82d4-af18c58bff0b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4993,37 +4993,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b76fa35-8c6b-4037-add4-0194ddd13527" ], + "x-ms-request-id": [ "6f3f7c62-5eb4-4e17-9811-e530547a6e31" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8eee37c9-5935-437a-a400-c1096117d57f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bfd7b03c-80c3-47bc-90aa-070ae4457ef8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015357Z:bfd7b03c-80c3-47bc-90aa-070ae4457ef8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2b0022b-1b23-40b5-b5df-59b3732befcd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8e07d44d-9a48-4d88-a56b-106edc4fb35b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235537Z:8e07d44d-9a48-4d88-a56b-106edc4fb35b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6173353BC1E432DAFC139FD01424B82 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3D69B79E6574A9E82DA58177589A0D0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69464,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":70500,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+23": { + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "573dab45-260c-429f-8328-17e162816b08" ], + "x-ms-unique-id": [ "663" ], + "x-ms-client-request-id": [ "0f243c10-d806-4d6c-a2d7-3f78f61153c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5039,36 +5039,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9eabd97f-8861-4acf-a55e-f47b2aec1a4b" ], + "x-ms-request-id": [ "62f964c0-afe4-4937-a602-352224831f43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6785e98a-8412-4593-9f68-9b028f5ff458" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015357Z:6785e98a-8412-4593-9f68-9b028f5ff458" ], + "x-ms-correlation-request-id": [ "e04713a3-b1b7-4cf2-88b7-b4e482470e74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235538Z:e04713a3-b1b7-4cf2-88b7-b4e482470e74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B77E00E290B409095392A0880544A74 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:53:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D15B6AF60571407C9A91E53BF162C93D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "665" ], - "x-ms-client-request-id": [ "aa85e04e-b6a0-4bc3-8101-f10c120ef142" ], + "x-ms-unique-id": [ "664" ], + "x-ms-client-request-id": [ "2177deee-3737-41bd-8d99-64518e3fb1ae" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5083,20 +5083,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509761FC895\"" ], + "ETag": [ "\"1DC55C218CA4DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a128643-9e27-429c-8b2c-05ada12d4855" ], + "x-ms-request-id": [ "efde8bb4-7e59-4b74-b49d-76687c2f00cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ce09977-0343-43f2-aa6e-23fa417e2b1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e8713781-6be8-4666-9892-cf84287b5116" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8cc05431-709e-4455-a303-4d6aa9f6df4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015406Z:8cc05431-709e-4455-a303-4d6aa9f6df4f" ], + "x-ms-correlation-request-id": [ "5f42d8ee-979f-4e32-bb81-f82b6f43360b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235546Z:5f42d8ee-979f-4e32-bb81-f82b6f43360b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13A3C677945C435EA2E818D2A44D5927 Ref B: MWH011020806052 Ref C: 2025-11-14T01:53:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C4C4F2290B04B65844924A80E1585F4 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5110,7 +5110,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-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5125,18 +5125,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25f1ef86-8cb4-464d-8fd7-4fa0d4c5b0e2" ], + "x-ms-request-id": [ "313d986c-d5bb-479d-848c-d6b0ee53d0f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12eb4343-2914-4c19-b2d3-e68b1eafebf2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65a4120d-382f-48b5-bd60-91f05a1a5b3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0ee72b0-07ac-4983-9792-d1dc248d4a79" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015406Z:c0ee72b0-07ac-4983-9792-d1dc248d4a79" ], + "x-ms-correlation-request-id": [ "dcb3505c-d332-4ffd-a9d6-8d9aa0ffa317" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235546Z:dcb3505c-d332-4ffd-a9d6-8d9aa0ffa317" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C448DD45715048DC88EC59852385C483 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E51E7705826E4F11B498978CCAED728F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:46Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5154,8 +5154,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "667" ], - "x-ms-client-request-id": [ "e9c68534-a5cf-4b24-aea3-2a94a4e27ac1" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "63b72546-d77f-410b-9a78-d3709b431c3f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5170,36 +5170,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "01477006-54ef-4f49-b990-22056a5f2bef", "b607ab97-2289-40fe-ba04-1c19e410b2aa" ], + "x-ms-original-request-ids": [ "3ccf9f0e-50cc-433d-8010-b070de5f46b1", "e83ae37a-101d-4e81-83ca-cc2dcde9f541" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "536be6f7-f11f-415e-b3ed-5c17dd1e97df" ], - "x-ms-correlation-request-id": [ "536be6f7-f11f-415e-b3ed-5c17dd1e97df" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015407Z:536be6f7-f11f-415e-b3ed-5c17dd1e97df" ], + "x-ms-request-id": [ "c7b9a1ec-c551-43e2-8b56-05b298d336b8" ], + "x-ms-correlation-request-id": [ "c7b9a1ec-c551-43e2-8b56-05b298d336b8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235547Z:c7b9a1ec-c551-43e2-8b56-05b298d336b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E0A4878BD4445DFB242657B3A78401E Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:06Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9D18039470147AD832F998B8FB49F6A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:46Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "668" ], - "x-ms-client-request-id": [ "16b26ff2-1a9d-46ae-b530-14eead18790f" ], + "x-ms-unique-id": [ "667" ], + "x-ms-client-request-id": [ "ddfbdb09-b785-4678-8928-dcad8017fe3a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5215,36 +5215,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a16fa5b5-2587-4201-b0b7-9f260216408a" ], + "x-ms-request-id": [ "d004ffba-5426-4e3e-a108-6d88098a03d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3831b861-1aa5-42f7-8c09-e599f37e2ac3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015407Z:3831b861-1aa5-42f7-8c09-e599f37e2ac3" ], + "x-ms-correlation-request-id": [ "79118862-4a01-4473-84eb-eaff2ac1d199" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235547Z:79118862-4a01-4473-84eb-eaff2ac1d199" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F8D4489BA62427E82BBC5A3A71EFFC9 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA4682F7B0AF42F598A5B6B89CB5911F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "669" ], - "x-ms-client-request-id": [ "db7d5052-c11d-4978-a3bd-836c1b7fcb81" ], + "x-ms-unique-id": [ "668" ], + "x-ms-client-request-id": [ "0c860b61-8cef-4e26-987c-0341a258d420" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5260,36 +5260,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bf5912c-931d-43f7-97a0-3f0804462fb2" ], + "x-ms-request-id": [ "02036a2b-f549-443f-9d91-5ca9c1155481" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c1145ca-34ae-43a0-85b9-4a6c3edbb3b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015407Z:2c1145ca-34ae-43a0-85b9-4a6c3edbb3b1" ], + "x-ms-correlation-request-id": [ "69ce2f74-87e2-48df-af74-0e67bd3a45bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235547Z:69ce2f74-87e2-48df-af74-0e67bd3a45bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5E0E2D652CD4DBF91A995E98A572A10 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:07Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A54053B739DE43A4A6D67615E13EFEAD Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "670" ], - "x-ms-client-request-id": [ "90fe28f8-7791-4938-af3e-ef919c083f9b" ], + "x-ms-unique-id": [ "669" ], + "x-ms-client-request-id": [ "4dcdb7e7-38e6-4f8a-a48c-083c0111c6e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5305,36 +5305,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee24ed13-d6bc-4d50-b6ae-c984bdd1d7bd" ], + "x-ms-request-id": [ "64058c94-7654-4452-9960-6086345aae30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ea3a5f0c-37d2-4be7-8c73-70f6771311e8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015408Z:ea3a5f0c-37d2-4be7-8c73-70f6771311e8" ], + "x-ms-correlation-request-id": [ "ab4935d7-4017-4b3e-b08c-02109eabe634" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235548Z:ab4935d7-4017-4b3e-b08c-02109eabe634" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2881C87E48E7418D85FF021F593DBDA0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B8CF27484B44DD182C613058ED11A58 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:47Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "671" ], - "x-ms-client-request-id": [ "bed9f274-c747-4b6c-a229-f0d51c44145a" ], + "x-ms-unique-id": [ "670" ], + "x-ms-client-request-id": [ "333fdf53-dbcb-4815-be98-d1ea5b4a9b73" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5350,36 +5350,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad79c30f-3f97-4e2c-a371-9826e4c65d00" ], + "x-ms-request-id": [ "3eaa2e0b-e0d6-48aa-89fc-b617d9ccec4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "52dce625-be17-4fcc-bd07-3893fae18773" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015408Z:52dce625-be17-4fcc-bd07-3893fae18773" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c426fcd9-7f6a-461c-98c9-eb4ee2a46f97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235548Z:c426fcd9-7f6a-461c-98c9-eb4ee2a46f97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5652854FBB8411380E9E0987B9587B4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E970C1260EB94151A8E700799F7F885F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "672" ], - "x-ms-client-request-id": [ "945662c9-14b5-4c47-87d6-7bb43a6061b1" ], + "x-ms-unique-id": [ "671" ], + "x-ms-client-request-id": [ "9587ffe6-493e-4af1-89e6-acab252b5737" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5395,36 +5395,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3e2a537-f5d6-4331-8b41-c2b529b69e2a" ], + "x-ms-request-id": [ "e6bd60c6-0476-42a0-9a86-c8edccbb424c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0edbf15e-aa2f-4efa-aa37-0b1e77ff8066" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015408Z:0edbf15e-aa2f-4efa-aa37-0b1e77ff8066" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "37edd324-d023-44d8-a1a6-fc6d8d0ae883" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235548Z:37edd324-d023-44d8-a1a6-fc6d8d0ae883" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AD9CB5CFCB44BB687634081BDEC393C Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:08Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D77CED215F8B4906BCC09B74596A4BE6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "673" ], - "x-ms-client-request-id": [ "db66f0e8-c1b7-492b-97e7-34a24acb270b" ], + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "c48b4367-748f-4c93-ade1-8df1bc5a354d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5440,24 +5440,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63f3d5dd-b49b-401e-904e-5a6de70ae9f2" ], + "x-ms-request-id": [ "5415c445-f121-4701-8764-1d2c2a40a08c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d29b790f-2ff9-481f-a9c8-a0a1e56614ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015409Z:d29b790f-2ff9-481f-a9c8-a0a1e56614ee" ], + "x-ms-correlation-request-id": [ "d94d74da-4f3a-44f3-ada9-950b08df1647" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235549Z:d94d74da-4f3a-44f3-ada9-950b08df1647" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD8B1CDBFB5E436CA287BA008E0700F8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93A2E5CBA4C2489CA8016CD670C67065 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:48Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -5468,8 +5468,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "674" ], - "x-ms-client-request-id": [ "ade2c25a-bb8d-4300-9ec7-ee74f1023c8f" ], + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "bd254a13-fc15-4e8c-baab-282f6a561df0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5484,36 +5484,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f23d019a-db35-4ca0-af7b-ad7028b74b64", "4ecb5398-586e-4916-8333-522aeaf52253", "291c4ef4-d336-4ef3-a991-b03a7782d054" ], + "x-ms-original-request-ids": [ "26d4522b-36b3-4b35-9a39-956534656829", "3fd517b4-9365-4b6a-b797-6aa8b869abc3", "fa338e02-0a43-49cd-8143-8c3b6a89be0d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ace24f6b-6e7d-492f-b0be-78237f769c25" ], - "x-ms-correlation-request-id": [ "ace24f6b-6e7d-492f-b0be-78237f769c25" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T015410Z:ace24f6b-6e7d-492f-b0be-78237f769c25" ], + "x-ms-request-id": [ "51c25c3d-651d-4d0d-b501-aca83798df7b" ], + "x-ms-correlation-request-id": [ "51c25c3d-651d-4d0d-b501-aca83798df7b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T235550Z:51c25c3d-651d-4d0d-b501-aca83798df7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B10A27612444A9CB02C4FF496BBFB92 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:09Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E32B21074C9343D78D26A735AF2CBB96 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:49Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+10": { + "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-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "675" ], - "x-ms-client-request-id": [ "ca4c1aa5-e44b-4ccc-b134-0c4ce1116291" ], + "x-ms-unique-id": [ "674" ], + "x-ms-client-request-id": [ "660764f9-e465-476a-ae2c-803bdccebc4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5528,30 +5528,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "68e8775c-849b-4732-8035-c33ca9e0951a" ], + "x-ms-request-id": [ "147e92eb-95cf-4a7c-82d4-101aced49696" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ba832afc-d8d8-41b6-8794-18cf78b6577c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8c90c159-9ea4-4850-9d85-d32d01c1f3d3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ee8cd5ba-833b-4fe5-84a0-f836ead809bc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015410Z:ee8cd5ba-833b-4fe5-84a0-f836ead809bc" ], + "x-ms-correlation-request-id": [ "55932d24-6b6c-4c5c-9bc6-020acbd897e6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235550Z:55932d24-6b6c-4c5c-9bc6-020acbd897e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 427A05424C7945928DD1EAE751D6ADD6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA51BE66C4AF456B82405121F1026522 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Insights/components/Functions-PowerShellTest-1hufk4w38b?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-PowerShellTest-0d6xycl2n4?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -5571,30 +5571,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/31c13172-cd44-48b7-801d-6c335b71d54a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "36816ed8-77b1-4410-af29-4317ff547b14" ], - "x-ms-correlation-request-id": [ "36816ed8-77b1-4410-af29-4317ff547b14" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015415Z:36816ed8-77b1-4410-af29-4317ff547b14" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4bc0848b-aa2a-4c28-b397-58f8b6e04aaa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "fb260597-fb34-46b1-a188-d2c8d85569ba" ], + "x-ms-correlation-request-id": [ "fb260597-fb34-46b1-a188-d2c8d85569ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235555Z:fb260597-fb34-46b1-a188-d2c8d85569ba" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E3087E8C2714473A4871864DA62E313 Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:10Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC55581818A84014BDFA40D215B20E9A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:50Z" ], + "Date": [ "Fri, 14 Nov 2025 23:55:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"09076952-0000-0300-0000-69168bc30000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\r\n \"name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"AppId\": \"f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0f0b38e-158d-4cae-9767-5abe5d3b54f8\",\r\n \"ConnectionString\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\r\n \"Name\": \"Functions-PowerShellTest-1hufk4w38b\",\r\n \"CreationDate\": \"2025-11-14T01:52:36.9752274+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-1hufk4w38b_f5dda4ed-baee-401a-9b17-14d8809b3c0b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-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\": \"\\\"30009033-0000-0300-0000-6917c1870000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\r\n \"ConnectionString\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+12": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\"\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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5608,39 +5608,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509A895DFD5\"" ], + "ETag": [ "\"1DC55C246591AD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f00dd944-30b2-4178-9134-17b57ba425e8" ], + "x-ms-request-id": [ "6bb02c53-23ce-422e-9705-5290c6d0f317" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d0fc34ac-3020-42ef-a762-fbf15f0bd054" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58a6f0fc-9bbe-46b2-a8c1-7b65ddd9995d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "68834cef-24de-48f1-ab27-53cf70713cb0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015458Z:68834cef-24de-48f1-ab27-53cf70713cb0" ], + "x-ms-correlation-request-id": [ "8806dcc1-7ffd-40e2-bd25-249e5191cfcf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235637Z:8806dcc1-7ffd-40e2-bd25-249e5191cfcf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87B576DA9BFA4EA18653D34CADF80DEB Ref B: MWH011020806052 Ref C: 2025-11-14T01:54:16Z" ], - "Date": [ "Fri, 14 Nov 2025 01:54:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAB26776E4A44203A83151E8AD93A4DA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:55:55Z" ], + "Date": [ "Fri, 14 Nov 2025 23:56:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8642" ], + "Content-Length": [ "8631" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:18.59\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:55:57.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"8b4aece8-4567-4066-8dbf-db03ecd7629c\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "678" ], - "x-ms-client-request-id": [ "27f782ad-36d9-4b53-8310-610bfae5b8e4" ], + "x-ms-unique-id": [ "677" ], + "x-ms-client-request-id": [ "a0fcbf23-dfad-4b0d-b2aa-f67b38846ad3" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5654,38 +5654,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509AE5658F5\"" ], + "ETag": [ "\"1DC55C250536D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ef271d3-647e-4142-a3b4-ac320da142f0" ], + "x-ms-request-id": [ "7220775a-09a8-4466-9163-2aa14e4e59f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "59902b05-07f9-4cfa-8a12-aa0825a6fc87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015528Z:59902b05-07f9-4cfa-8a12-aa0825a6fc87" ], + "x-ms-correlation-request-id": [ "642dd052-bd70-4037-b67e-f635854be9db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235708Z:642dd052-bd70-4037-b67e-f635854be9db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D906FAC537B84F3B8F0A7FDEC0F7B30F Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 714FE06D330046D0A8F98A483ED07847 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:07Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:56:37.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"8b4aece8-4567-4066-8dbf-db03ecd7629c\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "679" ], - "x-ms-client-request-id": [ "5ed01101-c546-4fd9-aa0b-10ee8f00e0d7" ], + "x-ms-unique-id": [ "678" ], + "x-ms-client-request-id": [ "3a5ab2c2-5154-4adc-9c8e-6652ddf0166c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5700,38 +5700,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509AE5658F5\"" ], + "ETag": [ "\"1DC55C250536D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95e41fd8-e91d-4601-a187-c63666858e87" ], + "x-ms-request-id": [ "690a2981-c1a8-4817-801e-51d1b6f48eb3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ffabc92f-9d93-41ce-9ab4-e1fac224b3e8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015529Z:ffabc92f-9d93-41ce-9ab4-e1fac224b3e8" ], + "x-ms-correlation-request-id": [ "832aae9f-1c48-476b-b745-5ad711b02295" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235708Z:832aae9f-1c48-476b-b745-5ad711b02295" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31DEFA4226C24D35A6649DE5307BC7E5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:28Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38E343D64C65445E9C4EBB02381E7CEA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:56:37.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"8b4aece8-4567-4066-8dbf-db03ecd7629c\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "680" ], - "x-ms-client-request-id": [ "133442b8-0316-468d-a235-8a87d98d709b" ], + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "2ed5a008-c69a-4a43-95f2-4a65057df2ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5747,36 +5747,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0e62839-f4c0-4d3f-bf33-5e61d896c8d4" ], + "x-ms-request-id": [ "37f1493d-dd76-4f31-9d91-57defc38d508" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de124583-6981-488b-8ea5-b990dc1173ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8dee2af-2306-4e09-af04-e6ff32cd1f40" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b3fa0da4-9c95-4034-8a58-6f1f86e1f01e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015529Z:b3fa0da4-9c95-4034-8a58-6f1f86e1f01e" ], + "x-ms-correlation-request-id": [ "22d5cdb4-f544-42da-bbac-69b09e66a983" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235708Z:22d5cdb4-f544-42da-bbac-69b09e66a983" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8CAD3D639A145CCBCB6C7A792CEDCF2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A18CE7F9F7D6489D8C61D7F67FF1375E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "681" ], - "x-ms-client-request-id": [ "5a6b43a2-6c96-4c9a-b196-24cc7b1ad973" ], + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "73fdd879-7c1d-4b63-bf3f-a978259191b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5792,37 +5792,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84acbce0-ad29-40d5-8eb0-3fbc11f20003" ], + "x-ms-request-id": [ "7ac0c33f-2b03-4e8a-9d79-547ad93b72d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b9a756a-d55b-413e-8550-6fb3e8ad7bc1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de8f842d-e1f6-4432-aee6-05bf0fc8a94a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "838b5f8d-97cd-4d09-8a85-c79695c603f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015529Z:838b5f8d-97cd-4d09-8a85-c79695c603f6" ], + "x-ms-correlation-request-id": [ "dc0b852d-2260-464a-ba7b-00e6f0d31d31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235709Z:dc0b852d-2260-464a-ba7b-00e6f0d31d31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 988C104AD71047428FE0C3884111231C Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B761FAC3A78549308064026A7AF63BE9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:08Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69466,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":70501,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "39effd06-dbdc-4995-a076-94d1d3dc01c6" ], + "x-ms-unique-id": [ "681" ], + "x-ms-client-request-id": [ "060ffb98-bf2d-420a-b7de-cb395af8fbbb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5838,36 +5838,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "663353df-2731-4f12-b7be-3d8f2f58734a" ], + "x-ms-request-id": [ "e277e526-e593-4b5c-8a83-521d0e069a82" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7aa1f0dd-fb4b-479e-a2c5-762c44d8e6be" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d40a05e-269e-48c6-a331-22d4089dbd4d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cffa2265-b4da-41bc-800e-94b00cb2434e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:cffa2265-b4da-41bc-800e-94b00cb2434e" ], + "x-ms-correlation-request-id": [ "f4813de2-3487-4959-8d4b-b75fdb205ea9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235709Z:f4813de2-3487-4959-8d4b-b75fdb205ea9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7305580134F4873B0B6A5F7D1477E95 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:29Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 30A34AE1444746C5A589BC7D1CC6F414 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "683" ], - "x-ms-client-request-id": [ "4069fd28-d52e-4539-aace-9340300a62db" ], + "x-ms-unique-id": [ "682" ], + "x-ms-client-request-id": [ "8b60bfc9-06b1-4ae0-bc3d-8354442a1b65" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5882,38 +5882,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509AE5658F5\"" ], + "ETag": [ "\"1DC55C250536D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f8e3d00-63bf-4b51-8770-10767cb4abb7" ], + "x-ms-request-id": [ "cfd11926-4ebe-49dc-9ae8-397fd3a174c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "773257cb-f6cb-45ff-aba9-64115e18a078" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:773257cb-f6cb-45ff-aba9-64115e18a078" ], + "x-ms-correlation-request-id": [ "149768ac-9aaf-4682-bdc2-d2e03170ecce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235709Z:149768ac-9aaf-4682-bdc2-d2e03170ecce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D2759078F7384D9CA75FC0DA6BD08614 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC29B91CFA5740ADA50172C8B0863DD0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:56:37.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"8b4aece8-4567-4066-8dbf-db03ecd7629c\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+19": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "684" ], - "x-ms-client-request-id": [ "eea0054f-ceaf-4885-adae-80551b1e1a65" ], + "x-ms-unique-id": [ "683" ], + "x-ms-client-request-id": [ "a160c302-ef98-404b-b8c2-5758e052fa7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5929,36 +5929,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cff7c9e4-87d9-464a-ae5c-d128c37da5d5" ], + "x-ms-request-id": [ "5854dc41-6da4-4dc4-90b5-cfed8f28e290" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/194d209e-cb17-4877-bbe1-f103f35c5139" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8549012e-e126-42aa-805e-44f0796d4004" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "aa68ef32-f5bd-421c-a91d-aeda59f588d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:aa68ef32-f5bd-421c-a91d-aeda59f588d1" ], + "x-ms-correlation-request-id": [ "b6dab9b7-00a4-44bd-ad23-90f739636f18" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235709Z:b6dab9b7-00a4-44bd-ad23-90f739636f18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D9E5FE05C494989B67387B42BA29710 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52E3B35EC61A42339BBF9BD8611B27C8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:09Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "685" ], - "x-ms-client-request-id": [ "d4a4b065-b46b-4db4-84aa-af16124aada0" ], + "x-ms-unique-id": [ "684" ], + "x-ms-client-request-id": [ "45cf5130-cf4b-45d5-bfc4-756a29267f4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5974,37 +5974,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db5cb869-3835-4f66-ba7e-43d133d00135" ], + "x-ms-request-id": [ "a49c6687-f6b6-4c98-bb4d-d54a6af2e877" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c32a26f-54d1-414d-a62a-ed2c32c28620" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1c62e91-96e7-475e-8ee4-372992cad5dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5014eb3b-2e58-41d3-8a81-3eafe9982cda" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015530Z:5014eb3b-2e58-41d3-8a81-3eafe9982cda" ], + "x-ms-correlation-request-id": [ "e8e1bab6-fb83-4de6-ab98-17e91d841af6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235710Z:e8e1bab6-fb83-4de6-ab98-17e91d841af6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 769C57615E3E409BA8D851C1DC1CA7D3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:30Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5BDC073576DB45BA9A1090331AFB8F14 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69466,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":70501,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+21": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "686" ], - "x-ms-client-request-id": [ "2e2fb76c-b087-4d56-aff2-8d8bdda02c82" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "44faa105-afa0-4963-95ee-55d5d073d3e9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6019,38 +6019,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509AE5658F5\"" ], + "ETag": [ "\"1DC55C250536D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3aea1bed-24fc-450d-a4c6-c517c9735e34" ], + "x-ms-request-id": [ "1ec14a9d-ed1a-4acc-978f-e0cc3dc581c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7847699b-991e-4be3-bb5d-0a9cd79e62af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015531Z:7847699b-991e-4be3-bb5d-0a9cd79e62af" ], + "x-ms-correlation-request-id": [ "c34b6176-a5c5-40ce-aa63-837c73c0ffa1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235710Z:c34b6176-a5c5-40ce-aa63-837c73c0ffa1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 035F5DC709FB4E5FBA4E29436C0472B3 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D806EBAF71546B59659BDAAA7E08D21 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:54:58.2233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"aeffc3c6-1606-42a2-b930-23fb1ac1eabb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:56:37.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"8b4aece8-4567-4066-8dbf-db03ecd7629c\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+22": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "687" ], - "x-ms-client-request-id": [ "0acd529d-7e9a-4b12-80d7-f2222b10aa8e" ], + "x-ms-unique-id": [ "686" ], + "x-ms-client-request-id": [ "07e0b511-cc28-4868-8233-16a648821610" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6066,36 +6066,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40ddd446-75dd-4a7e-8a3c-d6b0c81552bf" ], + "x-ms-request-id": [ "e7b390e1-49af-4a8d-abde-d81b3dd2cef5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f1c7e38-eb5a-4815-8e25-12ca4c6eff3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a1e2b80-0771-4e51-bd0b-1bb9f2f2991e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0784b01a-a512-4999-9889-15f4fbc9fed7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015531Z:0784b01a-a512-4999-9889-15f4fbc9fed7" ], + "x-ms-correlation-request-id": [ "66475a90-e51f-4203-a8af-9e4996fff029" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235710Z:66475a90-e51f-4203-a8af-9e4996fff029" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD91BE16EC8748C2B4549D02F17519E4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5C3DD2848CC40878CDCD5DBB606C64D Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "688" ], - "x-ms-client-request-id": [ "f7126c1f-e766-4c1a-869d-aafa25b99014" ], + "x-ms-unique-id": [ "687" ], + "x-ms-client-request-id": [ "a4a7d6a6-07f0-4911-968c-1a5afe7922a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6111,37 +6111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e672b465-739f-43f1-b5da-df2b3d0ac2df" ], + "x-ms-request-id": [ "a78c87db-cc83-4911-ae64-3f0eabf4015c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b42753e9-2903-440b-81fe-11b3b79fb892" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87925be7-c100-4df8-870a-9fd52ffa9ebd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a306826-38da-4775-8e62-95ac75aefd84" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015531Z:4a306826-38da-4775-8e62-95ac75aefd84" ], + "x-ms-correlation-request-id": [ "95e4699c-7a67-4945-9af7-733305c7baa6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235710Z:95e4699c-7a67-4945-9af7-733305c7baa6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8B4EF41193B4AEA99FB7ED69C4E261A Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6A39C75F11F467B96F6F8A196CF7C60 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:10Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69466,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":70501,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+24": { + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "689" ], - "x-ms-client-request-id": [ "2b30d997-3e29-4592-a96a-26bf0230b261" ], + "x-ms-unique-id": [ "688" ], + "x-ms-client-request-id": [ "dfd377f8-dbab-4616-b333-e7794dd8bade" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6157,36 +6157,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c33c92e-532b-4e35-8a54-c1dbdb0e6d8a" ], + "x-ms-request-id": [ "0896d681-1f7f-4155-8194-bbcf39165eee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5492e8a1-c3b1-4346-b421-ab9fcba2b10e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015532Z:5492e8a1-c3b1-4346-b421-ab9fcba2b10e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b37b299e-7bb2-46f0-92c9-aa7397462245" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235711Z:b37b299e-7bb2-46f0-92c9-aa7397462245" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB9935F66DD4405C86181A669AFB057D Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B330C16CAFD34876BCF5FF013A0519BA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { + "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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "690" ], - "x-ms-client-request-id": [ "77317979-c1bb-4f4e-add2-b0dd67ce6845" ], + "x-ms-unique-id": [ "689" ], + "x-ms-client-request-id": [ "123da78c-2b85-42e9-bc63-ee3a60da6b72" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6201,20 +6201,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509AE5658F5\"" ], + "ETag": [ "\"1DC55C250536D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0557b005-7c2e-4bb1-8557-116b966ea620" ], + "x-ms-request-id": [ "6a040598-a7cd-46bb-9e4f-1997b0a3977e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5f32f9a-d344-4ff3-b463-5ea60af2cb39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c66a0e67-9951-4a83-8a5e-7d5deecad85f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "007bc29a-511a-49d3-b69d-7d8ca9df0ed8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015544Z:007bc29a-511a-49d3-b69d-7d8ca9df0ed8" ], + "x-ms-correlation-request-id": [ "b8c4991c-7114-439d-aef0-0b2391e437d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235721Z:b8c4991c-7114-439d-aef0-0b2391e437d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D807C283EA554A64A573AE9D522070D6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:32Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 521524714D764F7D88E3FE646A69A629 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:11Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6228,7 +6228,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-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -6243,18 +6243,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb40b7f5-c035-4e92-9254-66bce35e216c" ], + "x-ms-request-id": [ "77db56d7-0dbc-434f-98dc-c2b1f686e0d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd337057-e712-4bd2-b646-404f55fd8e7f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d149f80-b824-4413-9281-5ce098e5b35b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a3451f7d-5f7b-4140-8070-3af1543c54c9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015544Z:a3451f7d-5f7b-4140-8070-3af1543c54c9" ], + "x-ms-correlation-request-id": [ "ff3d5820-f805-46e3-a8c7-800c42e27606" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235721Z:ff3d5820-f805-46e3-a8c7-800c42e27606" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F231B156BD6488886F3BB15E4EBE356 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53364D78D99C4B869EB6D2AB5ED1EE71 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6269,7 +6269,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-ah7tpo8wyj\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -6284,18 +6284,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02e9e9a4-9faf-4c15-8588-92e89ac24695" ], + "x-ms-request-id": [ "8b80fa26-5e40-4c79-b8f7-0cb0da976946" ], "X-AspNet-Version": [ "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/69f43560-f90b-4cd6-99e0-61e91bb5b029" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6800a816-edbf-4759-ba15-940c76a3e1a5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d42f49b3-ddbb-47a6-87df-d520027edb17" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015545Z:d42f49b3-ddbb-47a6-87df-d520027edb17" ], + "x-ms-correlation-request-id": [ "2b8e8d3e-c0a8-4392-bda1-eb24541c0b37" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235722Z:2b8e8d3e-c0a8-4392-bda1-eb24541c0b37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9AC90C838226410AB6F09FFBEBF8C4D5 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CECE2BC0A9DE4E93874D95F68A030C59 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6313,8 +6313,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "693" ], - "x-ms-client-request-id": [ "a15a7d70-5c07-4296-8cc9-9191e1ae65ff" ], + "x-ms-unique-id": [ "692" ], + "x-ms-client-request-id": [ "c0dc0bab-4161-4cd8-99f3-43b4910dc874" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6330,25 +6330,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a3af466-e4d3-4495-93dc-e3e2c7240878" ], + "x-ms-request-id": [ "2e2d8ded-5a32-4d84-870a-89a883e5f76b" ], "X-AspNet-Version": [ "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/4648ec38-fe7e-4b1e-8817-accf9a42481a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cc385bda-120d-4046-879e-972aa9a158c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b71de377-79d1-497e-bca2-4890d4d0148d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015545Z:b71de377-79d1-497e-bca2-4890d4d0148d" ], + "x-ms-correlation-request-id": [ "101d8e4b-6354-4462-bd17-a0e0fc739a5e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235722Z:101d8e4b-6354-4462-bd17-a0e0fc739a5e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B0B5936A7D6449D8DD8538289C28C0E Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 567ED61871944683BC9768792FB68AD9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37704" ], + "Content-Length": [ "37716" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -6359,8 +6359,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "694" ], - "x-ms-client-request-id": [ "1093ab30-68e8-434c-9590-84b057e08cfe" ], + "x-ms-unique-id": [ "693" ], + "x-ms-client-request-id": [ "e2e33039-a1a2-4e44-98c0-109577fc20a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6375,36 +6375,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7c392abc-d329-4dd7-9eac-ba78501d61e9", "b6b10aef-50a2-45a5-8c00-f8d2277a0492", "a6948e83-8bfa-4155-83e4-03ef2efb0490" ], + "x-ms-original-request-ids": [ "ebc2f694-2245-4ada-bf35-8551a2b445f0", "43edabf0-2149-4aaf-9668-005d3538f149", "8ebe911a-415f-4ee3-ad62-fed2ec8d00c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f29d43b2-1f65-4e8e-9c67-8fca020c190b" ], - "x-ms-correlation-request-id": [ "f29d43b2-1f65-4e8e-9c67-8fca020c190b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015545Z:f29d43b2-1f65-4e8e-9c67-8fca020c190b" ], + "x-ms-request-id": [ "20b4d0e6-cfa1-44b8-b606-e5638a1aa522" ], + "x-ms-correlation-request-id": [ "20b4d0e6-cfa1-44b8-b606-e5638a1aa522" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235723Z:20b4d0e6-cfa1-44b8-b606-e5638a1aa522" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFCEA8D5765B424FB64E0A5A398BB072 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C72914E6998E4925AB239C5B8CA64392 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "695" ], - "x-ms-client-request-id": [ "94846ad9-44f3-457c-a045-35630cd44a7b" ], + "x-ms-unique-id": [ "694" ], + "x-ms-client-request-id": [ "d06daa46-1534-4b32-8b35-20a8b7a14f48" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6419,30 +6419,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "14875600-96d9-4b8f-94a8-dbca38f52a54" ], + "x-ms-request-id": [ "7ed10938-858a-4090-8580-ca4bfa58228e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9f2a8b63-4303-41a3-a57e-d806f80e970e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/acb93922-0df8-4c28-ba40-40aad4b85ddf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a85cc66d-596a-4f07-8e3b-7533ffc00d9e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015546Z:a85cc66d-596a-4f07-8e3b-7533ffc00d9e" ], + "x-ms-correlation-request-id": [ "032ea425-e40d-475c-a3df-d0518e9d903c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235723Z:032ea425-e40d-475c-a3df-d0518e9d903c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 031262621C4F47E598C3CE8B5C899C3B Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6216ADD1857045E19960E1E78324AE1B Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"sEtmtKq2Gdh8hOZkroP4avhyxoAbql8eZv63ZJShR2qnQUhsqRAS59GPxVZiuWuhFEiy11+eeRNi+AStUvrV4Q==\",\"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-le3f9v/providers/Microsoft.Insights/components/Functions-DotNet-ah7tpo8wyj?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-myf9na/providers/Microsoft.Insights/components/Functions-DotNet-k691hsj4cf?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-le3f9v/providers/Microsoft.Insights/components/Functions-DotNet-ah7tpo8wyj?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Insights/components/Functions-DotNet-k691hsj4cf?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -6462,30 +6462,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02cd4f41-9f67-423a-bea8-27ff116b7802" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d332cc3c-13fa-409f-90dc-9ca015a64b8e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "3187f075-1f05-4d51-95f7-3f276427d91f" ], - "x-ms-correlation-request-id": [ "3187f075-1f05-4d51-95f7-3f276427d91f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015551Z:3187f075-1f05-4d51-95f7-3f276427d91f" ], + "x-ms-request-id": [ "2af393e0-2d6a-4a1d-b4e9-1977c7f3e61a" ], + "x-ms-correlation-request-id": [ "2af393e0-2d6a-4a1d-b4e9-1977c7f3e61a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235728Z:2af393e0-2d6a-4a1d-b4e9-1977c7f3e61a" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AB2625BDC0640429B662A1E69EF1E05 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:55:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 346F2E1613D44F2EA65A7A199D860F5C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"09070a6c-0000-0300-0000-69168c270000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-DotNet-ah7tpo8wyj\",\r\n \"name\": \"Functions-DotNet-ah7tpo8wyj\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-ah7tpo8wyj\",\r\n \"AppId\": \"3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"938fb9f4-abbc-4b77-8eaf-23fe410af510\",\r\n \"ConnectionString\": \"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\r\n \"Name\": \"Functions-DotNet-ah7tpo8wyj\",\r\n \"CreationDate\": \"2025-11-14T01:55:47.0020078+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-ah7tpo8wyj_3a9c27b8-7e9f-4a7b-8db4-7b31939efa18_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-ah7tpo8wyj-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\": \"\\\"3000d93e-0000-0300-0000-6917c1e80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-DotNet-k691hsj4cf\",\r\n \"name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-k691hsj4cf\",\r\n \"AppId\": \"813fb594-7633-494f-83ae-4d8aeacffe06\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0a9d18f6-4326-48ef-8f02-14db1b1e8b6b\",\r\n \"ConnectionString\": \"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\",\r\n \"Name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"CreationDate\": \"2025-11-14T23:57:24.5180411+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-k691hsj4cf_813fb594-7633-494f-83ae-4d8aeacffe06_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-k691hsj4cf-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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-ah7tpo8wyj\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"\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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-k691hsj4cf\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6499,39 +6499,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509CF2B65AB\"" ], + "ETag": [ "\"1DC55C27065AC00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c19063fa-08ad-46fc-9ac2-0cbc3cb0ae08" ], + "x-ms-request-id": [ "9442ffae-8add-4613-94b7-daceceb50793" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c70e235-a67d-4055-999d-5f95d8036379" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cfce9de5-584e-4a26-9421-65707fb65d78" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5308287d-8347-412c-b638-d169d3778016" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015612Z:5308287d-8347-412c-b638-d169d3778016" ], + "x-ms-correlation-request-id": [ "1014f361-f969-4b6d-a3ee-a1c31f54103e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235750Z:1014f361-f969-4b6d-a3ee-a1c31f54103e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D472E540150B4918A40B14FD3A4F3323 Ref B: MWH011020806052 Ref C: 2025-11-14T01:55:51Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F647C908DF684A5C8A5E2856C706B982 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:57:29Z" ], + "Date": [ "Fri, 14 Nov 2025 23:57:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:55:52.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-k691hsj4cf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-DotNet-k691hsj4cf\",\"repositorySiteName\":\"Functions-DotNet-k691hsj4cf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"functions-dotnet-k691hsj4cf.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-k691hsj4cf.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-k691hsj4cf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:57:30.5333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-k691hsj4cf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-k691hsj4cf\\\\$Functions-DotNet-k691hsj4cf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "698" ], - "x-ms-client-request-id": [ "deb1c034-4e0d-4516-ad52-b578b52e33ce" ], + "x-ms-unique-id": [ "697" ], + "x-ms-client-request-id": [ "d1ce705d-9c26-4884-89e1-d79d40811fae" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6545,38 +6545,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509DA8ED7D5\"" ], + "ETag": [ "\"1DC55C27BA9130B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ef6bb15-c7a3-4ae7-b1da-7b79ea94aead" ], + "x-ms-request-id": [ "febbfc83-ee73-4218-88e9-d536764f821a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fb549b53-782a-4dad-8e95-bb1ee06a5db8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015643Z:fb549b53-782a-4dad-8e95-bb1ee06a5db8" ], + "x-ms-correlation-request-id": [ "42fc7f6d-72c4-4da4-a61e-dff6fa5f3b49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235820Z:42fc7f6d-72c4-4da4-a61e-dff6fa5f3b49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D736B7EF6F434F29A0E0EF614D3C5325 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:42Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D31F38B0E1344FAA1B47253D6AE97F9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:20Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-k691hsj4cf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-DotNet-k691hsj4cf\",\"repositorySiteName\":\"Functions-DotNet-k691hsj4cf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"functions-dotnet-k691hsj4cf.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-k691hsj4cf.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-k691hsj4cf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:57:50.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\":\"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-k691hsj4cf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-k691hsj4cf\\\\$Functions-DotNet-k691hsj4cf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "699" ], - "x-ms-client-request-id": [ "bb7ba463-4133-4b9e-8444-245a5c826917" ], + "x-ms-unique-id": [ "698" ], + "x-ms-client-request-id": [ "1969a0cd-aecf-430a-94a4-b0c111cb926d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6591,38 +6591,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509DA8ED7D5\"" ], + "ETag": [ "\"1DC55C27BA9130B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b71d6ce5-b2fd-40a2-ae06-fd591d1decec" ], + "x-ms-request-id": [ "8f47ee67-ed69-4c53-a00d-252dac92993a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "47af5298-6dc5-4a91-807e-33ff825382b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015643Z:47af5298-6dc5-4a91-807e-33ff825382b8" ], + "x-ms-correlation-request-id": [ "7e1c49c6-2739-483d-9c0c-9b72b7475b8c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235821Z:7e1c49c6-2739-483d-9c0c-9b72b7475b8c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF1755697A2247A6B512CBACDDE5D777 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A43C691EC5040D3B3AC346205F292C8 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-k691hsj4cf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-DotNet-k691hsj4cf\",\"repositorySiteName\":\"Functions-DotNet-k691hsj4cf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"functions-dotnet-k691hsj4cf.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-k691hsj4cf.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-k691hsj4cf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:57:50.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\":\"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-k691hsj4cf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-k691hsj4cf\\\\$Functions-DotNet-k691hsj4cf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "0e9c8f09-7be5-45ae-bfb5-0d5ddcd0f8b1" ], + "x-ms-unique-id": [ "699" ], + "x-ms-client-request-id": [ "87128fde-44cb-475a-ae6d-cb2df25b402f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6638,36 +6638,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a248397-8f8d-4b49-8a99-873072fa39bb" ], + "x-ms-request-id": [ "ac8efa78-7532-4e1e-9503-21ca0d0408f6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d8034a4-5173-48f5-b4d7-08511cff7124" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c7f73664-1b42-4f43-9286-1afc809371e5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "eaeab083-23a7-43ef-99dc-f3d6e00df1b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015643Z:eaeab083-23a7-43ef-99dc-f3d6e00df1b4" ], + "x-ms-correlation-request-id": [ "654478b4-23c7-4b49-898d-618847c28c87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235821Z:654478b4-23c7-4b49-898d-618847c28c87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C4B69720890472DA2B0FA2800083830 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1EC3101C8B674FB0A06DCE3DD9CFD21A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-ah7tpo8wyj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "701" ], - "x-ms-client-request-id": [ "c296b5c7-feee-4d12-b3d7-9ccf169e94ae" ], + "x-ms-unique-id": [ "700" ], + "x-ms-client-request-id": [ "02422e74-5ceb-4723-8da1-e34f7ece7f17" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6683,37 +6683,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8516c609-5d7e-4c18-be9c-9a7541613c9b" ], + "x-ms-request-id": [ "83d1b457-07ef-4471-8860-400b4cb10aa9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58bec533-562d-46cf-971c-6f5cd96493f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10ee508d-ffd5-47d5-9eed-2d99e5237530" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08a744c2-4f89-47c8-ae04-1fdcec3e94d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015644Z:08a744c2-4f89-47c8-ae04-1fdcec3e94d1" ], + "x-ms-correlation-request-id": [ "3ed4daf1-7791-416b-ac44-13a14f91944b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235821Z:3ed4daf1-7791-416b-ac44-13a14f91944b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53371D1C8615451BAF989D8F73780541 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:43Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F822735D06F4EBCA74400EC6BFA0AD9 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "702" ], - "x-ms-client-request-id": [ "57b6d1b8-312e-46ff-8d94-8f619243fa1c" ], + "x-ms-unique-id": [ "701" ], + "x-ms-client-request-id": [ "6c566d9e-4b76-4c63-86d6-02528635b96a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6728,38 +6728,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509DA8ED7D5\"" ], + "ETag": [ "\"1DC55C27BA9130B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30de23c0-503d-481a-9b1b-b83f157a33b8" ], + "x-ms-request-id": [ "bc0cb1cb-a6ec-4c34-940c-c54edb62096f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "30aad361-c665-41f0-b3e2-77e335420a1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015644Z:30aad361-c665-41f0-b3e2-77e335420a1d" ], + "x-ms-correlation-request-id": [ "77e0b146-19b9-48a6-b38c-588be042efd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235822Z:77e0b146-19b9-48a6-b38c-588be042efd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D89DFBA92B984521AA4B029F924A897B Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28E5DBD3B2684F438250DD33AE34B202 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:21Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-k691hsj4cf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-DotNet-k691hsj4cf\",\"repositorySiteName\":\"Functions-DotNet-k691hsj4cf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"functions-dotnet-k691hsj4cf.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-k691hsj4cf.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-k691hsj4cf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:57:50.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\":\"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-k691hsj4cf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-k691hsj4cf\\\\$Functions-DotNet-k691hsj4cf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "703" ], - "x-ms-client-request-id": [ "f1dfd2e4-6fd3-47d5-a594-35c17cd0dcbd" ], + "x-ms-unique-id": [ "702" ], + "x-ms-client-request-id": [ "42755bee-4821-4dec-8bf6-a20ae4db4b8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6775,36 +6775,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80391344-fd17-4600-a0d1-f3b3bb9b38a6" ], + "x-ms-request-id": [ "742f6ee9-a722-40b7-a818-3852bb5af24d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46e7ac05-12e1-4cff-9e11-9bd3b8ba4762" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b54807ec-5d74-41d5-a6db-29774a2b40a2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c4954a6d-d4f0-4e18-8450-3ca78a16d588" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015644Z:c4954a6d-d4f0-4e18-8450-3ca78a16d588" ], + "x-ms-correlation-request-id": [ "512d1b62-ee33-4a9b-b90d-404b2162f0c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235822Z:512d1b62-ee33-4a9b-b90d-404b2162f0c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55DFFFEE58D544B79777CDA33BCDB0F4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EE9630948DF4C78AB29177FB407BFBB Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-ah7tpo8wyj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "94b7fab5-8ccf-4307-91ed-346be57ce537" ], + "x-ms-unique-id": [ "703" ], + "x-ms-client-request-id": [ "720ce795-d38a-4dff-969d-0c087319bcee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6820,37 +6820,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c1f4f51-244f-4df0-b7df-328ae1d5cd10" ], + "x-ms-request-id": [ "b85a2266-7694-417c-b9d8-9142f731f174" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/269cec6b-7ec1-41a5-a812-9b46b8f9ecd8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b52653d1-6265-4830-a5bb-1f6870b6a6cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df76c343-1801-4e31-a476-ac4d85755b29" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:df76c343-1801-4e31-a476-ac4d85755b29" ], + "x-ms-correlation-request-id": [ "b47f35ac-32bd-4cc3-a4da-ee81488c757b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235822Z:b47f35ac-32bd-4cc3-a4da-ee81488c757b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 287F993119DB41F0B3B8F3638B764E40 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:44Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 805D2C0794F641FABB74558E1BD22578 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "69cdb456-78d2-44fe-bb10-3f335b811256" ], + "x-ms-unique-id": [ "704" ], + "x-ms-client-request-id": [ "d873f2c2-fa68-4e28-9dcf-0fd8126429ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6865,38 +6865,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509DA8ED7D5\"" ], + "ETag": [ "\"1DC55C27BA9130B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e39df30-d6e2-4648-a84c-03c68f5d3a86" ], + "x-ms-request-id": [ "571cdf14-e62c-4734-90a5-7b480ef2aae5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff64e14f-f4fc-4980-8237-c19a38b8463f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:ff64e14f-f4fc-4980-8237-c19a38b8463f" ], + "x-ms-correlation-request-id": [ "886b8979-7b28-454b-82cf-4620ddc34cf7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235823Z:886b8979-7b28-454b-82cf-4620ddc34cf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF5D93370CF0441AADF0F8C4CFA578C8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A778FDAF6A174385B5C07D11752F9886 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:22Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8286" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-DotNet-ah7tpo8wyj\",\"repositorySiteName\":\"Functions-DotNet-ah7tpo8wyj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"functions-dotnet-ah7tpo8wyj.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-ah7tpo8wyj.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-ah7tpo8wyj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:56:12.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\":\"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-ah7tpo8wyj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-ah7tpo8wyj\\\\$Functions-DotNet-ah7tpo8wyj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-dotnet-ah7tpo8wyj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-k691hsj4cf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-DotNet-k691hsj4cf\",\"repositorySiteName\":\"Functions-DotNet-k691hsj4cf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"functions-dotnet-k691hsj4cf.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-k691hsj4cf.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-k691hsj4cf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:57:50.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\":\"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-k691hsj4cf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-k691hsj4cf\\\\$Functions-DotNet-k691hsj4cf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-dotnet-k691hsj4cf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "706" ], - "x-ms-client-request-id": [ "84b02b37-95a0-4391-ab96-f2c02a2d173e" ], + "x-ms-unique-id": [ "705" ], + "x-ms-client-request-id": [ "e687d30f-f78f-4e59-963e-78a2cbf60c97" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6912,36 +6912,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "639911ee-eee9-4e76-b298-2284fd1eb8e3" ], + "x-ms-request-id": [ "0e988497-27fc-4011-83ad-7363d2580b01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/169daaba-0327-4a92-b9b7-f2f8e759b6f0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fb5fcf62-6e70-42ca-9ff9-9a85062640cc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:fb5fcf62-6e70-42ca-9ff9-9a85062640cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1891039e-be60-49a3-a04d-2d1be8547ae8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "70ee912f-f29e-46ee-831d-f65baeb30c12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235823Z:70ee912f-f29e-46ee-831d-f65baeb30c12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88275946C0E04F678CC5AC520AC80613 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7AD99B7258CE4B1FA0BB18D28FEACA84 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-ah7tpo8wyj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "707" ], - "x-ms-client-request-id": [ "ad5ea5d9-c99e-456f-9829-45ec7a992b9e" ], + "x-ms-unique-id": [ "706" ], + "x-ms-client-request-id": [ "b5751fd8-3a4e-424b-be0e-a9de00c338ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6957,37 +6957,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9839278-f357-4eaf-871d-9e50cabe3f2b" ], + "x-ms-request-id": [ "66662974-116c-4533-87c2-340366338f98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11ed52f9-fe83-404d-b611-cb80d78bab9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ea699a1-f6a7-4243-9982-8944217f0fad" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1bfcf068-6d22-4f32-aa84-c8e8165911d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015645Z:1bfcf068-6d22-4f32-aa84-c8e8165911d7" ], + "x-ms-correlation-request-id": [ "21e1e4a4-7eb6-4df4-984d-0aac3be282a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235823Z:21e1e4a4-7eb6-4df4-984d-0aac3be282a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 273D817A793644B2A0186AA515E83864 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:45Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBF1554177484827B9B6B0AF9C852866 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj/config/web\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/web\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "af30b7eb-a07b-4d41-b643-79576d582291" ], + "x-ms-unique-id": [ "707" ], + "x-ms-client-request-id": [ "6b32eb04-0c9f-4625-b6b5-2849c8a05983" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7003,36 +7003,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3abd4b8e-e71e-4a45-9b12-164a4fb8ff3b" ], + "x-ms-request-id": [ "2c603b35-78eb-4f0f-9a37-3babf6c71b1e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1c4839f4-623f-4f39-91ce-67e16610aaad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015646Z:1c4839f4-623f-4f39-91ce-67e16610aaad" ], + "x-ms-correlation-request-id": [ "a51ee2b7-f286-4566-8a3e-9b1516484989" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235823Z:a51ee2b7-f286-4566-8a3e-9b1516484989" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58133620BC2F42DA9F9A940D41122981 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 744999E012254260A4888E82B233FBC6 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:23Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-DotNet-ah7tpo8wyj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "709" ], - "x-ms-client-request-id": [ "628fa007-6bd7-4a6c-b318-5ddf2bbbbaaa" ], + "x-ms-unique-id": [ "708" ], + "x-ms-client-request-id": [ "2663adb9-cd16-4f3e-88ff-7de05faec0db" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7047,20 +7047,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509DA8ED7D5\"" ], + "ETag": [ "\"1DC55C27BA9130B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c73eee94-fc7f-4213-8f8d-58f546264ebe" ], + "x-ms-request-id": [ "39cb377d-f381-4fc4-819e-6e7593928cf3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bae96194-58e1-4555-b286-825e2ba40f36" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "e3cf4157-4da5-4d8b-95c5-a5477a65e44e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015654Z:e3cf4157-4da5-4d8b-95c5-a5477a65e44e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7671d7c-2f6a-49c9-8735-d11aba4b3ca2" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "5eb0bbcf-bc3d-4ce8-ae60-47ed5de52435" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235833Z:5eb0bbcf-bc3d-4ce8-ae60-47ed5de52435" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7361287627394C27A09D197FA0224C35 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:46Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 214F3900E6DC4EFCBC6EF41A903B3F7C Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:24Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:32 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7074,7 +7074,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-1hufk4w38b\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7089,18 +7089,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1e0743a-fe98-42c1-9fd1-63b1b4cbf848" ], + "x-ms-request-id": [ "4f6f12e6-35f6-43f5-9ded-aef51de818ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4de9b67-0cc2-41c5-8ce9-b45530a03cb5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91e7ab15-11ee-4d76-9400-622313f24753" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "619e86af-0ee7-44fa-a50a-a8e3af9d9a43" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015654Z:619e86af-0ee7-44fa-a50a-a8e3af9d9a43" ], + "x-ms-correlation-request-id": [ "d30e8b59-d606-496a-8fb5-c26b166c2e76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235833Z:d30e8b59-d606-496a-8fb5-c26b166c2e76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4966A30DD92145729FEB12088C1EF4A0 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:54Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1998C7F583164F4CA192913FA07E6E5A Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:33Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7118,8 +7118,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "711" ], - "x-ms-client-request-id": [ "dfff5a4f-20de-495f-8eab-5b3769b09279" ], + "x-ms-unique-id": [ "710" ], + "x-ms-client-request-id": [ "c914a842-b5e0-4e2b-b21e-306f9c8cec38" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7134,36 +7134,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "568fb601-6e45-415e-af6b-c4585361fe48", "afa98ac6-fe13-4842-bc7c-111c8f05ec68" ], + "x-ms-original-request-ids": [ "1983c107-e92f-4a21-b19d-5b05d0759123", "73cf96f0-251b-44e4-bb95-e2bc3dd03d25" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6c8777d0-b462-4cde-bdd5-a132eeb612a4" ], - "x-ms-correlation-request-id": [ "6c8777d0-b462-4cde-bdd5-a132eeb612a4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015655Z:6c8777d0-b462-4cde-bdd5-a132eeb612a4" ], + "x-ms-request-id": [ "495a20a6-0e52-46c3-a5a5-5872abf2d7e7" ], + "x-ms-correlation-request-id": [ "495a20a6-0e52-46c3-a5a5-5872abf2d7e7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235834Z:495a20a6-0e52-46c3-a5a5-5872abf2d7e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8F53DF305C64DE98B0547519BF48EAD Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80920B7F963C4A59A3C4193DB152B1C0 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:33Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "10323" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "712" ], - "x-ms-client-request-id": [ "d820f8b1-cc21-4e51-9b79-b8c3184033e4" ], + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "a3000b68-f8e7-4c19-ac6f-595791467d5b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7179,36 +7179,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e68f9a61-f018-4109-9490-2e81c05baa04" ], + "x-ms-request-id": [ "2106052c-b721-4feb-a431-bc63271f17bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "14a19167-aee5-4cf0-87b2-e2d1445fe214" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015656Z:14a19167-aee5-4cf0-87b2-e2d1445fe214" ], + "x-ms-correlation-request-id": [ "d6414821-d037-46b0-ae4a-00701f0c796d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235834Z:d6414821-d037-46b0-ae4a-00701f0c796d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABB2730611214D76976C134E750CE51E Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:55Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0C0F5410272433AAC276D3AB0236C8E Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:34Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "713" ], - "x-ms-client-request-id": [ "dce19982-d720-48d3-9d45-76e98d238f59" ], + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "d9807a69-dc7d-4bb1-8968-c0ab77bb4860" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7224,36 +7224,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01ab0fc2-ab8e-493e-bd91-c9fc23b9b377" ], + "x-ms-request-id": [ "e2d14c46-f456-47c0-b450-9821be356b6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8507c7ff-48aa-40e7-a23a-eae608dcfb48" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015656Z:8507c7ff-48aa-40e7-a23a-eae608dcfb48" ], + "x-ms-correlation-request-id": [ "bb4a689c-713b-4df8-b639-3fda40876da5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235835Z:bb4a689c-713b-4df8-b639-3fda40876da5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31F9DA00F3BC4133BD03208F322D28DC Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A3D4D921204424E97D3408696DA384F Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:34Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "714" ], - "x-ms-client-request-id": [ "6f91ea7f-9fcd-4f67-a286-62c1211a596f" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "47f492e2-2f2a-409a-95f4-4318a67bdbdb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7269,36 +7269,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c02c710-ef82-4a65-bd2c-db17d5ac87f1" ], + "x-ms-request-id": [ "c6f1026f-a317-418a-8c5d-60c931d0d996" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b67decb1-b19a-4880-b462-4827c4d1cb72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015656Z:b67decb1-b19a-4880-b462-4827c4d1cb72" ], + "x-ms-correlation-request-id": [ "5ba7b1e7-4960-4674-b61c-8cb1b383aaf3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235835Z:5ba7b1e7-4960-4674-b61c-8cb1b383aaf3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12D8F414A8BC40C3ADC922EDBC02A6C2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:56Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5316C74AE084560B4F6B3F49BC09696 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "715" ], - "x-ms-client-request-id": [ "cfe040cc-5865-41bb-82a1-a0563365e4e2" ], + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "d38d22f2-6d0b-4189-bbc7-707babeacc75" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7314,36 +7314,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91c23bd4-3883-4aa5-8bb1-1a53a91b6b6c" ], + "x-ms-request-id": [ "129f1199-9f33-4e32-af57-11c94b08433b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1bf2d53f-8e1f-4d23-b34d-5a4c7227688b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015657Z:1bf2d53f-8e1f-4d23-b34d-5a4c7227688b" ], + "x-ms-correlation-request-id": [ "68e5aad6-0b61-45dc-8d5a-79c528a3504b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235835Z:68e5aad6-0b61-45dc-8d5a-79c528a3504b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A7C07E3696242EFAF4335F9790DE892 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7EC20C747B64BEA83CC718582D0B7ED Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "716" ], - "x-ms-client-request-id": [ "702cfb68-e411-4318-9d34-0fcbefa06292" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "f7ee4265-00fd-4c4e-8414-0cce8ddd22b7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7359,36 +7359,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66d4f164-ddb6-470f-87f5-6d96f0b794bd" ], + "x-ms-request-id": [ "a85e2c45-2a12-4875-8413-452776186265" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4fa73ccc-0863-4095-9943-4aadbf10c81b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015657Z:4fa73ccc-0863-4095-9943-4aadbf10c81b" ], + "x-ms-correlation-request-id": [ "f409e7d4-2927-4c9e-84ed-d9792d16abef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235835Z:f409e7d4-2927-4c9e-84ed-d9792d16abef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 466DD102CC8149ED819878542245E57F Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89636C7C80144AFCA52407ED0264E930 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "717" ], - "x-ms-client-request-id": [ "ba4e8646-410a-45d6-8978-503659d12d66" ], + "x-ms-unique-id": [ "716" ], + "x-ms-client-request-id": [ "b5813108-2c53-4df9-91b6-48469d6d4533" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7404,24 +7404,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68fdf178-1622-4b02-aafe-14791c081dfe" ], + "x-ms-request-id": [ "89b228fe-fe81-4fd3-a67b-28d40144e3fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eba7446b-c4ea-4838-b2f0-f64f6e24cf69" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015658Z:eba7446b-c4ea-4838-b2f0-f64f6e24cf69" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "67ac7075-a6a8-491b-8c69-05aa2b7a7d77" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235836Z:67ac7075-a6a8-491b-8c69-05aa2b7a7d77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8012BBF6CBF3453585473FA24BDD41AF Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:57Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AA8E5E068ED4D66B52BED395A1D0E51 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:35Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -7432,8 +7432,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "718" ], - "x-ms-client-request-id": [ "95c03fc9-5e8d-4566-8ece-45fd226e9c21" ], + "x-ms-unique-id": [ "717" ], + "x-ms-client-request-id": [ "dc74e50d-4968-44b7-987b-7a86feee92ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7448,36 +7448,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ec6b4fe7-45ef-4e18-899e-20f0bdaef4e1", "7c568650-a778-4054-93e8-c6ebee8324ef", "ad1d988c-2be4-4352-b7c5-14bfbb0b6d5e" ], + "x-ms-original-request-ids": [ "66cc7c3a-037e-4260-b844-a25b9db68e65", "d8fbaccf-b638-41f7-9b71-6a8b5159f4a7", "8d9926bf-a3d9-4fbf-96b0-481f860eb95f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b0b1f9ab-65a8-4694-af76-ada7bac82630" ], - "x-ms-correlation-request-id": [ "b0b1f9ab-65a8-4694-af76-ada7bac82630" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T015659Z:b0b1f9ab-65a8-4694-af76-ada7bac82630" ], + "x-ms-request-id": [ "1fb7ebd6-6bcb-4f68-b740-9da671cf4d04" ], + "x-ms-correlation-request-id": [ "1fb7ebd6-6bcb-4f68-b740-9da671cf4d04" ], + "x-ms-routing-request-id": [ "EASTASIA:20251114T235837Z:1fb7ebd6-6bcb-4f68-b740-9da671cf4d04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABE4C6CE95974F3CB5B4A9EB0A767406 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:58Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09422CC4FF5D4737891E75330CCA0BAA Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:37Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "719" ], - "x-ms-client-request-id": [ "efc27654-4781-4d9d-a154-95edcbbd7901" ], + "x-ms-unique-id": [ "718" ], + "x-ms-client-request-id": [ "7725f760-75fd-4369-b9f5-5384726523b0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7492,31 +7492,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "13924e73-95f7-4efe-b72a-967ac6ed5026" ], + "x-ms-request-id": [ "c0131d43-6475-4769-9edb-8089f300c2a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b4f67910-d884-495e-b740-d11b91cb67f1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/caaaa0d0-4b7e-458c-aa94-784533fc1d3e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ffce7fd0-6681-4d66-8ba0-353d7ede9cba" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015659Z:ffce7fd0-6681-4d66-8ba0-353d7ede9cba" ], + "x-ms-correlation-request-id": [ "8434986e-81fa-4fcd-b0d5-55e8d881946c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251114T235838Z:8434986e-81fa-4fcd-b0d5-55e8d881946c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4C2667CFF2E4B72BFFC9CCD3D11D9B2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:59Z" ], - "Date": [ "Fri, 14 Nov 2025 01:56:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9885CB4A7FB4B209A9AA75807FEBE42 Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:58:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-1hufk4w38b\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7530,39 +7530,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC5509F8002D20\"" ], + "ETag": [ "\"1DC55C299BA9FF5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af73cfcb-ca9d-43df-af9f-8c6526ad6209" ], + "x-ms-request-id": [ "73f4d2bd-93d2-4425-a46f-c38c9df39067" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45c28f1f-3130-4cfe-a549-1074dc2fd14f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed53d9b8-7272-4788-9097-02129106d119" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "b6d0f786-c736-4c90-89e6-5c9ccfffa7c9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015742Z:b6d0f786-c736-4c90-89e6-5c9ccfffa7c9" ], + "x-ms-correlation-request-id": [ "00728c1c-002c-408d-baf2-6f9d89cf59c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251114T235930Z:00728c1c-002c-408d-baf2-6f9d89cf59c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32A8D2E4A52A4301BC6CE5AE8887BB90 Ref B: MWH011020806052 Ref C: 2025-11-14T01:56:59Z" ], - "Date": [ "Fri, 14 Nov 2025 01:57:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2672F3EB95F64B3AAAC14C7EE3C9DCEE Ref B: CO6AA3150218019 Ref C: 2025-11-14T23:58:38Z" ], + "Date": [ "Fri, 14 Nov 2025 23:59:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8507" ], + "Content-Length": [ "8496" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:01.0366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:58:39.8366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "721" ], - "x-ms-client-request-id": [ "103f57f3-437b-440b-8c5e-65c5738064d3" ], + "x-ms-unique-id": [ "720" ], + "x-ms-client-request-id": [ "17af3129-9504-40e5-85d9-6cf666c43508" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7576,38 +7576,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A102B1B4B\"" ], + "ETag": [ "\"1DC55C2B742D8A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dda868bf-0f09-4cba-bb0d-ae455f0f826a" ], + "x-ms-request-id": [ "98deb9aa-2af0-4788-86c6-ce6a53f82eb7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1527e8db-5fb6-4021-b804-0b68ae117935" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015812Z:1527e8db-5fb6-4021-b804-0b68ae117935" ], + "x-ms-correlation-request-id": [ "9d77e544-d40b-47d1-9877-4a5667e85f9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000002Z:9d77e544-d40b-47d1-9877-4a5667e85f9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E408CB300844946A270BCC7E428C9E4 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:12Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49D8901F3DD6476380775102E1C91405 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:59:30.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "722" ], - "x-ms-client-request-id": [ "874f70cc-3e79-41e0-a22e-6a974fc80fe6" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "f1e8dc0b-aa10-4e35-b5c9-3cb616cc7ca0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7622,38 +7622,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A102B1B4B\"" ], + "ETag": [ "\"1DC55C2B742D8A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b63acc71-7c6e-4717-9cb5-3894665d055b" ], + "x-ms-request-id": [ "83ec8997-dadc-4ae9-a507-e57c269fa2b9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68c8b136-3ba3-4a60-ab5a-92f36e8d07eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015813Z:68c8b136-3ba3-4a60-ab5a-92f36e8d07eb" ], + "x-ms-correlation-request-id": [ "35b3a31a-132f-444e-a867-61bcd1f66912" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000004Z:35b3a31a-132f-444e-a867-61bcd1f66912" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B8046CDED7E4A368CC455DD613EF196 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7E7A6745CD645B4A6AB4327CE54DB1B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:59:30.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "91b5e67b-bc81-41e0-8c0c-8dec247e8498" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "b0d64130-3f4a-498b-a4d0-76d8b337342a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7669,36 +7669,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86c86354-d459-4471-8c72-10c4c5e0752c" ], + "x-ms-request-id": [ "b43e8b3d-effa-4bcf-9a7f-e787e54fcb8d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/959d9c31-c134-46ff-92d7-6c9659fcaff3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ad09925-b58c-4607-9015-35316c256e78" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "50c464b0-0d96-4c71-9ce1-e9ac9bbc4e0e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015813Z:50c464b0-0d96-4c71-9ce1-e9ac9bbc4e0e" ], + "x-ms-correlation-request-id": [ "c27acca2-6847-4dde-9b96-c8f32892f0c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000011Z:c27acca2-6847-4dde-9b96-c8f32892f0c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6E24ABE43274D7D8DBE966D6B31CE1F Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84A9ABB1DCE542F4974F485DEB778E9C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "724" ], - "x-ms-client-request-id": [ "4ad5664c-6cb8-4461-a812-ca123403d118" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "760b6294-6aa0-43c5-9058-ae8e386fd668" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7714,37 +7714,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd0c3160-64b1-41a8-a85a-e1b9c205aa43" ], + "x-ms-request-id": [ "561437be-fc97-479a-8066-6c825adeccf0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a894beba-05bb-4e89-9e44-7da11e5cf447" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9235ba4-d69c-45a0-a7ca-5e4a1b067f04" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e3672aaf-6fae-4e08-bf08-6c34e4c306db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015813Z:e3672aaf-6fae-4e08-bf08-6c34e4c306db" ], + "x-ms-correlation-request-id": [ "e6f0f819-cdab-4722-b7bd-6ce472480db0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000014Z:e6f0f819-cdab-4722-b7bd-6ce472480db0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAB91511CFB6439E947E8ED49ADAAE80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 588C37B7CCB2428CBD128788F07D1628 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "725" ], - "x-ms-client-request-id": [ "57d22844-fe22-4443-98a4-b4bcb947aaf1" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "de8a5122-82bf-4bd4-8d86-008b238c3fb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7760,36 +7760,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5714ae94-0a55-4c2a-9fc8-c8be71021e4a" ], + "x-ms-request-id": [ "1b4bff83-fcc2-4a5a-a79a-19be460a3974" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f46afedf-43f0-4ecd-8775-76218f95e249" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61464809-8587-4982-959b-d4677308cb6b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7e1b4e3a-bb60-4fcf-897b-abdebc1c5d1e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015814Z:7e1b4e3a-bb60-4fcf-897b-abdebc1c5d1e" ], + "x-ms-correlation-request-id": [ "4834a3c8-812a-496e-8b83-b4061a139381" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000015Z:4834a3c8-812a-496e-8b83-b4061a139381" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB6BD9DEA6A84EFA8C359D7AC4E563DA Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:13Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21021CF33D464D63831C466CED501A69 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "726" ], - "x-ms-client-request-id": [ "4b9de9f1-ec25-442c-a87f-0dde4dd966f2" ], + "x-ms-unique-id": [ "725" ], + "x-ms-client-request-id": [ "5cf00acc-78cb-4191-8c09-b1e307d874c5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7804,38 +7804,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A102B1B4B\"" ], + "ETag": [ "\"1DC55C2B742D8A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5f490cb-d068-4639-a05d-046f038f65a3" ], + "x-ms-request-id": [ "afdee89e-0477-4dcf-b5f1-2c7546338f9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "55fcbdb3-6b34-4a52-a944-990fe510c649" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015814Z:55fcbdb3-6b34-4a52-a944-990fe510c649" ], + "x-ms-correlation-request-id": [ "5c4bec9c-6a6a-4425-8de2-8bcc32fbd4ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000015Z:5c4bec9c-6a6a-4425-8de2-8bcc32fbd4ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A86F335EB6E4F949383D56A63923E85 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:14Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC87D34BDD1740818860C6F385FCD4BC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:59:30.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "a620932c-ebfe-4337-874e-1d11d52b8eae" ], + "x-ms-unique-id": [ "726" ], + "x-ms-client-request-id": [ "677cece0-3f69-44c3-a3cd-5cda95ed79fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7851,36 +7851,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5eb2dbbb-ac3e-43a2-97c0-9354a198e4f9" ], + "x-ms-request-id": [ "9061bf22-b8a7-431f-887d-da54bc668f72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1418d4b6-8e28-4dff-9a70-859dacc151c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9188eb8e-7b6c-433f-a403-8a62514f905e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b49ddc72-0668-4121-bd60-2697f9d3cb1c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015814Z:b49ddc72-0668-4121-bd60-2697f9d3cb1c" ], + "x-ms-correlation-request-id": [ "dd63137a-d474-471a-9529-e494efe4649e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000016Z:dd63137a-d474-471a-9529-e494efe4649e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18EA72377C834425A03080D2A042D862 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:14Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A5C1C2D29A54C38AD612539A3AF1C70 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "728" ], - "x-ms-client-request-id": [ "e0079c71-b20a-476d-978a-c516b25e61ef" ], + "x-ms-unique-id": [ "727" ], + "x-ms-client-request-id": [ "2eab4646-87cf-48a4-b097-cd1472099d9c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7896,37 +7896,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4c4b2e1-da7a-450a-9dea-f45d179e09a9" ], + "x-ms-request-id": [ "ffcc0de8-4b0d-4c2a-974e-046fc1e46011" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6372231f-0d17-48f6-925f-8e9668b90998" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91eb5914-c906-4eab-a4c5-9787fcea1233" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eb55e326-70ce-4595-ae51-26a06899ac8e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015815Z:eb55e326-70ce-4595-ae51-26a06899ac8e" ], + "x-ms-correlation-request-id": [ "e1cc8be7-9a8f-46d2-92a6-a21f02ba9cb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000016Z:e1cc8be7-9a8f-46d2-92a6-a21f02ba9cb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C5D67FFCEA14F229D9E6919B4B7447D Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:15Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61E20A5DADC045B2B263F0BEE54C7052 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "729" ], - "x-ms-client-request-id": [ "8c4c522e-3a75-40d4-a555-831314f3a550" ], + "x-ms-unique-id": [ "728" ], + "x-ms-client-request-id": [ "0ed5afe7-32dd-45f4-b95d-bf0c6acb2309" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7941,38 +7941,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A102B1B4B\"" ], + "ETag": [ "\"1DC55C2B742D8A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e4e44a0-2efe-49c2-9d1a-4b92b5887b03" ], + "x-ms-request-id": [ "c4d742fc-0af7-466e-abd3-259d39fc215c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e66c9f96-6d51-4562-b778-e0de3ba20192" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015815Z:e66c9f96-6d51-4562-b778-e0de3ba20192" ], + "x-ms-correlation-request-id": [ "0770feb6-0101-43ad-a18f-1e2dc7c5a00d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000017Z:0770feb6-0101-43ad-a18f-1e2dc7c5a00d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DDF993DF2704F029D9E989E1C8459BC Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:15Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F43007242FD41189AAAA8AA398BBF07 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShellTest-1hufk4w38b\",\"repositorySiteName\":\"Functions-PowerShellTest-1hufk4w38b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"functions-powershelltest-1hufk4w38b.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1hufk4w38b.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-1hufk4w38b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:57:42.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-1hufk4w38b\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShellTest-1hufk4w38b\\\\$Functions-PowerShellTest-1hufk4w38b\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershelltest-1hufk4w38b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShellTest-0d6xycl2n4\",\"repositorySiteName\":\"Functions-PowerShellTest-0d6xycl2n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"functions-powershelltest-0d6xycl2n4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0d6xycl2n4.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-0d6xycl2n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:59:30.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-0d6xycl2n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShellTest-0d6xycl2n4\\\\$Functions-PowerShellTest-0d6xycl2n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershelltest-0d6xycl2n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "730" ], - "x-ms-client-request-id": [ "d74b141a-8b62-40a2-b91e-7ef7ef4ce60e" ], + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "c723c688-0ce7-4baa-8ff2-1d059feb568f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7988,36 +7988,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0266d80b-79c8-4836-90b1-0731228dc197" ], + "x-ms-request-id": [ "5d73dd48-b18b-4fe9-a6e6-833180e31f3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2edc30f7-00af-4a76-b60a-80e21fca8cfb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "cd8a0b3c-fd20-465f-848b-a3b12fec6be6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015816Z:cd8a0b3c-fd20-465f-848b-a3b12fec6be6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7fe11834-4432-4d34-bacb-a71a4e3a760b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "04186626-83f9-4b4c-9854-290eda4b121a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000017Z:04186626-83f9-4b4c-9854-290eda4b121a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2045D3C0EC9C46809582ED762A3C3561 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:15Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E7D9AA366FD4E3D8E6B8513DBFB1EB2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-1hufk4w38b\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "733ea0cd-c2ce-4aaa-aff7-ceea85307127" ], + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "bc8ae059-4de0-4d6a-aace-1dcd036daf72" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8033,37 +8033,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "edd9a844-e274-4adb-9982-c326b685e721" ], + "x-ms-request-id": [ "e1e1c4cb-f930-4e2d-acf3-2d7a97036150" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1d30ab9-c6e5-4d0c-be38-fef6b213706e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6df870a1-58cb-4c2c-bb92-cc18edc5861a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "36a6a1c1-3c0b-49ca-b425-4f69e059b939" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015816Z:36a6a1c1-3c0b-49ca-b425-4f69e059b939" ], + "x-ms-correlation-request-id": [ "b5021296-568c-47e6-a558-0465bd2b61fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000017Z:b5021296-568c-47e6-a558-0465bd2b61fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 587A37F8BBB14F1EB0E506B72EE81628 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:16Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B41DD01E50BA46DC8BD5305990B7629C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b/config/web\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/web\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "732" ], - "x-ms-client-request-id": [ "149f3793-98f3-4261-a913-57b9599f7adc" ], + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "fcfbb84c-9003-4878-ac40-b5a3d1a9058f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8079,36 +8079,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32116f15-3241-446f-8ddb-f479109f23e0" ], + "x-ms-request-id": [ "bd9c2894-c821-4d76-853b-ac39ebf7ccf5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1d0494e-9044-4720-9aa3-82a02881844f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015816Z:c1d0494e-9044-4720-9aa3-82a02881844f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bcac5f85-1c73-407a-be26-b07d32b014ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000018Z:bcac5f85-1c73-407a-be26-b07d32b014ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9C8EFF399F04F1EAF5E77BBD25E62FE Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:16Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 970289468B544117AB40E6C5C0A312F5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShellTest-1hufk4w38b?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "733" ], - "x-ms-client-request-id": [ "7dd0b3d5-81c9-4565-a23f-b41f205d5505" ], + "x-ms-unique-id": [ "732" ], + "x-ms-client-request-id": [ "e5ef1ba8-e7f2-4cb4-9789-d656a3b2b6fc" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8123,20 +8123,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A102B1B4B\"" ], + "ETag": [ "\"1DC55C2B742D8A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19262633-9e78-4016-83c5-10d8facb97e8" ], + "x-ms-request-id": [ "07dcae07-fb8c-4df4-b043-34572c86464b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c7fcea3-cb97-46cc-83db-31263dd9f78f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89ceaac9-0e0d-4422-be14-237d5f1fe759" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "d7e2dd38-5823-43f5-a6de-7c5dc2439080" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015824Z:d7e2dd38-5823-43f5-a6de-7c5dc2439080" ], + "x-ms-correlation-request-id": [ "2c9cd518-1bc1-4f77-9a27-fdfced0661c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000039Z:2c9cd518-1bc1-4f77-9a27-fdfced0661c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E25ED6EE1C87437D8389BA8E2970BD5F Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:16Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6F88DE5067F4D649C99314E4A3EACF5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8150,7 +8150,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-la9uw4623c\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-l6hz0unsba\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -8165,18 +8165,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "606b20e8-89fe-456e-bc76-91c302d10df0" ], + "x-ms-request-id": [ "d7939f92-78e6-4624-9eaa-c46cd9982e35" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/885580b9-7fa8-4d0b-9354-5d1666d062f5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0104470e-bf7b-45cb-bb01-ac6d96ded94b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "981d4ca6-261c-4c1e-801f-5cd056cf2c44" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015825Z:981d4ca6-261c-4c1e-801f-5cd056cf2c44" ], + "x-ms-correlation-request-id": [ "4b25c1b2-c685-47d8-bbf2-6bb392617460" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000039Z:4b25c1b2-c685-47d8-bbf2-6bb392617460" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91D4EC5515344C38ACBFFCF843CC4FC6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:24Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD51CA9F64074E5DA7DD57D024F50850 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -8194,8 +8194,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "735" ], - "x-ms-client-request-id": [ "585751dd-67d7-4aa2-9c47-f22dc93d8c71" ], + "x-ms-unique-id": [ "734" ], + "x-ms-client-request-id": [ "265931cb-e962-49ea-ad5f-f0f9583ebbac" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8211,25 +8211,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "344d2bfa-0580-4daa-a5c3-fb0f552d7505" ], + "x-ms-request-id": [ "4be52ad9-8930-4fd3-a5fa-aa8d80b94520" ], "X-AspNet-Version": [ "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/2a0d88ae-f045-4df2-ad02-389df07472a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/387a6ef7-3e32-4998-8b35-e2fd6c8ab9d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b578014a-bd10-4f94-a5ce-d991a11ca727" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015825Z:b578014a-bd10-4f94-a5ce-d991a11ca727" ], + "x-ms-correlation-request-id": [ "f06f644d-48db-4db8-924e-5e4b924781ea" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000040Z:f06f644d-48db-4db8-924e-5e4b924781ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AF6162E9CD3409D9D36D751D81D6BFE Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5794CF3EDACF41D49F8FFA27F6C956E6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37704" ], + "Content-Length": [ "37716" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -8240,8 +8240,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "736" ], - "x-ms-client-request-id": [ "a140ee33-c8e9-481b-925c-1a351f033195" ], + "x-ms-unique-id": [ "735" ], + "x-ms-client-request-id": [ "67630ec9-ee4a-47df-ae65-79cdec8fd6cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8256,36 +8256,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2e0d1ea3-4e17-40fe-a098-95452b7ae7ba", "3f7e6050-7592-46f4-8399-e2979a1b20b3", "f0a4af07-8d65-4685-ac75-7a65b5b3b422" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "7d7d850a-2687-40c6-849e-f516cde76a97" ], - "x-ms-correlation-request-id": [ "7d7d850a-2687-40c6-849e-f516cde76a97" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015825Z:7d7d850a-2687-40c6-849e-f516cde76a97" ], + "x-ms-original-request-ids": [ "c8e2efb4-3537-44b9-8a6e-d1aea7181d4f", "291a3695-bcb9-4d27-a9c6-b2611e200274", "b3e7ac4d-71c6-43e0-bfd5-51099eff11ba" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "965b8e7f-1da1-4eab-9fab-76cdbd329000" ], + "x-ms-correlation-request-id": [ "965b8e7f-1da1-4eab-9fab-76cdbd329000" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000040Z:965b8e7f-1da1-4eab-9fab-76cdbd329000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A924E2E47E714F3C807E439167F2E166 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78DB5BA3A27C422985DE0561B551E015 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "737" ], - "x-ms-client-request-id": [ "4a04c075-4cc8-4f14-aa8f-105c4b64ba93" ], + "x-ms-unique-id": [ "736" ], + "x-ms-client-request-id": [ "8f58f435-4819-464d-bafd-5f5d14f62f46" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8300,30 +8300,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "10830dc7-0085-4649-b80a-8c49675db749" ], + "x-ms-request-id": [ "0564b4c7-abfd-411c-8819-fad7ea27a0eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6849be27-51cf-41d9-871f-d66b2397485f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/013c6846-3ef2-4aa6-93fe-7b96a77c8cd5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3a55a214-6ff2-4f56-bc22-3afb2987c757" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015826Z:3a55a214-6ff2-4f56-bc22-3afb2987c757" ], + "x-ms-correlation-request-id": [ "811e76f3-debb-4616-8a84-9250f018894a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000041Z:811e76f3-debb-4616-8a84-9250f018894a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1FA176B9A0A484CB9D41D60B8B70045 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 485A26DF102149C5A2F107AA4E38D7C4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"sEtmtKq2Gdh8hOZkroP4avhyxoAbql8eZv63ZJShR2qnQUhsqRAS59GPxVZiuWuhFEiy11+eeRNi+AStUvrV4Q==\",\"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-le3f9v/providers/Microsoft.Insights/components/Functions-Java-la9uw4623c?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-myf9na/providers/Microsoft.Insights/components/Functions-Java-l6hz0unsba?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-le3f9v/providers/Microsoft.Insights/components/Functions-Java-la9uw4623c?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Insights/components/Functions-Java-l6hz0unsba?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -8343,30 +8343,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e0b0dacf-9c4a-4be1-a84e-27b351f8b3ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e0ca544f-2e65-4d79-bfc3-f6413912135b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "4c6d24ae-53cf-4431-a7be-103c075c7104" ], - "x-ms-correlation-request-id": [ "4c6d24ae-53cf-4431-a7be-103c075c7104" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015831Z:4c6d24ae-53cf-4431-a7be-103c075c7104" ], + "x-ms-request-id": [ "8761074e-8917-4d10-8579-3a00fb3d464d" ], + "x-ms-correlation-request-id": [ "8761074e-8917-4d10-8579-3a00fb3d464d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000046Z:8761074e-8917-4d10-8579-3a00fb3d464d" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E2B55DE62224D12A032E720EAD4A144 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A6E0CEDD02542CC889FF9CA4BA0ED19 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:00:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0907f997-0000-0300-0000-69168cc70000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Java-la9uw4623c\",\r\n \"name\": \"Functions-Java-la9uw4623c\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-la9uw4623c\",\r\n \"AppId\": \"05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"648968d1-9cd1-4892-b588-9346d9996b83\",\r\n \"ConnectionString\": \"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\r\n \"Name\": \"Functions-Java-la9uw4623c\",\r\n \"CreationDate\": \"2025-11-14T01:58:26.5139808+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-la9uw4623c_05eee5e2-fef4-4c8b-b5fb-f8c7393746f2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-la9uw4623c-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\": \"\\\"30004159-0000-0300-0000-6917c2ae0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Java-l6hz0unsba\",\r\n \"name\": \"Functions-Java-l6hz0unsba\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-l6hz0unsba\",\r\n \"AppId\": \"6b9952e2-bfa7-4603-bd71-774073340bf3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f944282d-33a8-4add-8c95-407d930a05aa\",\r\n \"ConnectionString\": \"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\",\r\n \"Name\": \"Functions-Java-l6hz0unsba\",\r\n \"CreationDate\": \"2025-11-15T00:00:41.738444+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-l6hz0unsba_6b9952e2-bfa7-4603-bd71-774073340bf3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-l6hz0unsba-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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-la9uw4623c\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"\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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-l6hz0unsba\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8380,39 +8380,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A2EF1BA60\"" ], + "ETag": [ "\"1DC55C2E68D2B60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f58cb139-45b7-45c6-b0a5-dd092899734f" ], + "x-ms-request-id": [ "ce0c6e62-c521-48f1-97cb-553c596a9a7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b538c31a-1a0d-4a48-a8ee-be4baa9ca917" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d588447-3231-464f-b21f-2c6c7fd20b74" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "8d91620d-9dee-4dc1-8b55-24b943238d05" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015853Z:8d91620d-9dee-4dc1-8b55-24b943238d05" ], + "x-ms-correlation-request-id": [ "56402264-29e2-403c-b025-618b0212a4c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000110Z:56402264-29e2-403c-b025-618b0212a4c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CF192A6BFF34C4798ED0E858C8AF9F1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:58:31Z" ], - "Date": [ "Fri, 14 Nov 2025 01:58:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BE801E4100D4C7CA1F283EBF08A33A0 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:00:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8264" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:33.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-l6hz0unsba\",\"state\":\"Running\",\"hostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Java-l6hz0unsba\",\"repositorySiteName\":\"Functions-Java-l6hz0unsba\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\",\"functions-java-l6hz0unsba.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-l6hz0unsba.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-l6hz0unsba.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:00:48.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-l6hz0unsba\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-l6hz0unsba\\\\$Functions-Java-l6hz0unsba\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-java-l6hz0unsba.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "740" ], - "x-ms-client-request-id": [ "353b095e-8447-4b78-b31e-cde5215fc9ff" ], + "x-ms-unique-id": [ "739" ], + "x-ms-client-request-id": [ "695d96ce-a0ee-45b7-97f6-e6eb6e074abd" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8426,38 +8426,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A3A6677A0\"" ], + "ETag": [ "\"1DC55C2F2BF1E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37de4d7a-75fd-418c-871d-ef07d2ae8d4c" ], + "x-ms-request-id": [ "c56536b2-b1ac-4cb6-8a0a-22901660147c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c37588a-acdf-4868-b8d0-1a62cdf7d6ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015923Z:2c37588a-acdf-4868-b8d0-1a62cdf7d6ce" ], + "x-ms-correlation-request-id": [ "c3d8a939-8ac9-4901-9545-0e1a3fe636b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000140Z:c3d8a939-8ac9-4901-9545-0e1a3fe636b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1280D9458DF4D8E8C9DBF7E4198A8A1 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4944F90992EF4D3F82A1B619062C6B3E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-l6hz0unsba\",\"state\":\"Running\",\"hostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Java-l6hz0unsba\",\"repositorySiteName\":\"Functions-Java-l6hz0unsba\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\",\"functions-java-l6hz0unsba.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-l6hz0unsba.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-l6hz0unsba.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:01:09.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\":\"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-l6hz0unsba\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-l6hz0unsba\\\\$Functions-Java-l6hz0unsba\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-java-l6hz0unsba.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "741" ], - "x-ms-client-request-id": [ "2d62f6b3-2a4f-417d-8e18-ea68bf5ace76" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "0677b734-b40d-4ce6-a271-b960e409bcc6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8472,38 +8472,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A3A6677A0\"" ], + "ETag": [ "\"1DC55C2F2BF1E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a8383d2-96de-447a-b90d-41b2468e9489" ], + "x-ms-request-id": [ "d54aa271-1f64-421d-8d46-2a595a24dc48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3e93736d-a32b-4384-a592-6d97159ef993" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015924Z:3e93736d-a32b-4384-a592-6d97159ef993" ], + "x-ms-correlation-request-id": [ "e1eddbb8-1d84-4f51-8a50-99907d75277e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000140Z:e1eddbb8-1d84-4f51-8a50-99907d75277e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02652AE72EB5415B83B3E9EDF6160B5D Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:23Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AC20DC299FB4AE6BA9D46565EDC0C05 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-l6hz0unsba\",\"state\":\"Running\",\"hostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Java-l6hz0unsba\",\"repositorySiteName\":\"Functions-Java-l6hz0unsba\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\",\"functions-java-l6hz0unsba.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-l6hz0unsba.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-l6hz0unsba.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:01:09.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\":\"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-l6hz0unsba\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-l6hz0unsba\\\\$Functions-Java-l6hz0unsba\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-java-l6hz0unsba.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "742" ], - "x-ms-client-request-id": [ "0319502f-9106-40c2-afec-850810cc50d7" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "cb79aa06-a2b2-444d-8de1-78bf5cc00e35" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8519,36 +8519,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c1a6a97-25a6-4c69-9fa7-1a9283e22e55" ], + "x-ms-request-id": [ "64aed285-2f15-43c9-b98c-a4f99f7cb3f6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/906fccfd-5bb8-405d-859b-f19d809f880b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02ff3117-60c8-4d05-b38d-86ed042428e7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "458585fc-6a75-4204-913c-cfb65ee66fff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015924Z:458585fc-6a75-4204-913c-cfb65ee66fff" ], + "x-ms-correlation-request-id": [ "9d773b38-9e6f-4fee-8c0f-f6878f2905a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000141Z:9d773b38-9e6f-4fee-8c0f-f6878f2905a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C71E1DBE3F6342E1A6EECF3EC328E31D Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:24Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2A3D971141E4050B9CEEA1EB5F5D21A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "743" ], - "x-ms-client-request-id": [ "3d5738f1-f5b8-4c0f-ada2-27ddeea5410a" ], + "x-ms-unique-id": [ "742" ], + "x-ms-client-request-id": [ "cfada5dd-3366-4fdb-a656-d83a72465105" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8564,37 +8564,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ecd7df07-ec41-400b-b573-85d2130b6968" ], + "x-ms-request-id": [ "b75f4b78-84d8-45f5-bf9a-2dc652f51244" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b72afeb6-e11c-4a6a-912e-1f0340789f6e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d0d7f36-c9ba-41ae-a63b-9cbba63c72e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5f12ddd8-2470-401b-8f1c-1bd4b1dca834" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015924Z:5f12ddd8-2470-401b-8f1c-1bd4b1dca834" ], + "x-ms-correlation-request-id": [ "487dd01f-44fe-477f-97a7-194db1c64ef0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000141Z:487dd01f-44fe-477f-97a7-194db1c64ef0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53C7E64B51BA448E8784C0B967BE8724 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:24Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7442F036156491995416BF59A470EC1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/web\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "744" ], - "x-ms-client-request-id": [ "7a36d758-fea1-4aaa-b860-8662fb62385e" ], + "x-ms-unique-id": [ "743" ], + "x-ms-client-request-id": [ "02b6bc13-ce3d-4873-83c8-b2c5c61899ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8610,36 +8610,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3175037a-adc6-49ec-a148-c960a00666d6" ], + "x-ms-request-id": [ "2e066d7b-8ddc-4ad6-a948-882fae78f058" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15e564ee-f243-4fee-8128-88668d0d0ade" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7336613-b907-4df7-b070-87d2003f0b7f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ec4029e0-df34-4fe9-928d-6a2e63e59856" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015925Z:ec4029e0-df34-4fe9-928d-6a2e63e59856" ], + "x-ms-correlation-request-id": [ "4410c964-fbe3-41e7-bc54-125910fe7162" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000142Z:4410c964-fbe3-41e7-bc54-125910fe7162" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF6C8C74C84B4EBBA3090501E7207424 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:24Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D7C2A7221AD43398A238CE7595928A3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "745" ], - "x-ms-client-request-id": [ "5ce8cb8e-175e-4332-b820-aaba0f2aaf3a" ], + "x-ms-unique-id": [ "744" ], + "x-ms-client-request-id": [ "d704ce47-f0bc-405f-a7ec-9adbbda7a9f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8654,38 +8654,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A3A6677A0\"" ], + "ETag": [ "\"1DC55C2F2BF1E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4271e36-5691-4875-bd91-032dfec3d9ea" ], + "x-ms-request-id": [ "a98205f2-dfbc-4c14-8c65-b83ca458bd3f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "998c36f3-580b-44df-9915-0e0a58403d9c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015925Z:998c36f3-580b-44df-9915-0e0a58403d9c" ], + "x-ms-correlation-request-id": [ "890e02a8-3891-45af-b280-8820f58472ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000142Z:890e02a8-3891-45af-b280-8820f58472ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88C00E1FDBC0444FB613A3ADBE3703A8 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FFA9308D35348F9AD70D78B7474BB1D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-l6hz0unsba\",\"state\":\"Running\",\"hostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Java-l6hz0unsba\",\"repositorySiteName\":\"Functions-Java-l6hz0unsba\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\",\"functions-java-l6hz0unsba.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-l6hz0unsba.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-l6hz0unsba.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:01:09.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\":\"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-l6hz0unsba\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-l6hz0unsba\\\\$Functions-Java-l6hz0unsba\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-java-l6hz0unsba.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "746" ], - "x-ms-client-request-id": [ "f6eeeb47-24af-4254-8538-c194760f2d8f" ], + "x-ms-unique-id": [ "745" ], + "x-ms-client-request-id": [ "6de915f0-3d15-42da-8ba4-4143d6acdfc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8701,36 +8701,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b44d1ab-2c83-417d-ac7a-ad0df2c95878" ], + "x-ms-request-id": [ "c2377e0e-3ecb-4606-9c89-b0aa3531a3ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5bf7fa98-2bcd-4eb6-8122-89f222e40a52" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63c7e5e8-c188-4cb9-8efb-543d081afec4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "55e42720-57f9-4f75-93b8-ccb10a136c51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015925Z:55e42720-57f9-4f75-93b8-ccb10a136c51" ], + "x-ms-correlation-request-id": [ "6b0544b2-53e2-47ab-88e4-b13cffc3d78e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000142Z:6b0544b2-53e2-47ab-88e4-b13cffc3d78e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE326629FF4540F6B0AC017B319E8853 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 659905BB06FD404CB9606C92C8149A7F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "747" ], - "x-ms-client-request-id": [ "208ef877-749d-4559-b96f-3e6f90d1093f" ], + "x-ms-unique-id": [ "746" ], + "x-ms-client-request-id": [ "422f522a-1d4e-4f27-856d-f58adbfc1ce8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8746,37 +8746,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f1e9761f-92d0-4be3-b70c-a75351e3ed0e" ], + "x-ms-request-id": [ "1d683e82-c2bf-4c3a-8fb5-e3772118ad8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4724e731-f1f0-499a-ac0f-2dc5171e9046" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c0d76ae-49f4-408f-8482-161302e9f634" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "35439e55-7272-49dd-85fe-9a410e073fc2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:35439e55-7272-49dd-85fe-9a410e073fc2" ], + "x-ms-correlation-request-id": [ "6e14b911-d173-4af6-9023-9105db3c18df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000143Z:6e14b911-d173-4af6-9023-9105db3c18df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F416D33636044619AADD05A198163F80 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:25Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12EC7D6AE1D542AB96F91D89DF1EE43B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/web\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "748" ], - "x-ms-client-request-id": [ "2b386e8a-f9fa-40e2-9dfe-36d80d6d2604" ], + "x-ms-unique-id": [ "747" ], + "x-ms-client-request-id": [ "b2c4d462-6ca4-4eae-8ec6-dd5d53166c93" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8791,38 +8791,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A3A6677A0\"" ], + "ETag": [ "\"1DC55C2F2BF1E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f69c012-1426-4c00-8b4d-b44a6907d793" ], + "x-ms-request-id": [ "05c9d3e3-9c9a-4d02-a9c3-dda4782cd75f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4bfdb2c5-9191-49b9-beea-f30350d8d83e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:4bfdb2c5-9191-49b9-beea-f30350d8d83e" ], + "x-ms-correlation-request-id": [ "529c7326-18dd-4e00-9fe4-1ef244463ec1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000143Z:529c7326-18dd-4e00-9fe4-1ef244463ec1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 119FBF2227854E4C8CD8E31E289005E2 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2DC015915A14072A8422F3AC364D729 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8247" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-la9uw4623c\",\"state\":\"Running\",\"hostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Java-la9uw4623c\",\"repositorySiteName\":\"Functions-Java-la9uw4623c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-la9uw4623c.azurewebsites.net\",\"functions-java-la9uw4623c.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-la9uw4623c.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-la9uw4623c.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:58:53.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-la9uw4623c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-la9uw4623c\\\\$Functions-Java-la9uw4623c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-java-la9uw4623c.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-l6hz0unsba\",\"state\":\"Running\",\"hostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Java-l6hz0unsba\",\"repositorySiteName\":\"Functions-Java-l6hz0unsba\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-l6hz0unsba.azurewebsites.net\",\"functions-java-l6hz0unsba.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-l6hz0unsba.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-l6hz0unsba.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:01:09.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\":\"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-l6hz0unsba\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-l6hz0unsba\\\\$Functions-Java-l6hz0unsba\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-java-l6hz0unsba.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "749" ], - "x-ms-client-request-id": [ "1e665245-defd-4477-a985-cdd1c9232270" ], + "x-ms-unique-id": [ "748" ], + "x-ms-client-request-id": [ "4d2ab942-a658-43f1-a32f-e475ed0ed90d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8838,36 +8838,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a9def7d-cbf6-4504-83fd-4ee202066d8e" ], + "x-ms-request-id": [ "2e2b24d5-fe06-4af1-9743-b3c1b22a30e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f27e6431-e322-4add-bd4d-b6510f4d327b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e609f0d5-70b5-4b63-9faf-bf3b10c45aa1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bb24ce7a-8686-4a22-8296-a2e43826df3a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:bb24ce7a-8686-4a22-8296-a2e43826df3a" ], + "x-ms-correlation-request-id": [ "a3f1170d-2005-4324-99e6-e6738eeaa49a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000143Z:a3f1170d-2005-4324-99e6-e6738eeaa49a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0696303139F41F6A9F5113B94093787 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4FEC2E52CA4494CB27526750473B51E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-la9uw4623c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "750" ], - "x-ms-client-request-id": [ "415f17cb-d383-4827-ac54-8f3d30a80702" ], + "x-ms-unique-id": [ "749" ], + "x-ms-client-request-id": [ "08f323fc-09a5-4812-aadf-bf78d1385f6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8883,37 +8883,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88451744-9ab2-4ba1-84cb-b4274e011684" ], + "x-ms-request-id": [ "e34519f3-ce57-455c-bffe-c27211dbf39c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f8ed57f-d263-4648-ace5-62a5a179124e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e767f8d1-c2a8-4f63-b309-4c9bf1ae68bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015926Z:e767f8d1-c2a8-4f63-b309-4c9bf1ae68bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1156152-de9b-4e29-af21-7b6bf010fd81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e6037d33-9f20-4eca-9559-9f5f1b8c2801" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000144Z:e6037d33-9f20-4eca-9559-9f5f1b8c2801" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6062519764C74778A4E6D2187137DE25 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:26Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7FF036F30FF478296AA4E9CBB3AB2CD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c/config/web\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/config/web\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "751" ], - "x-ms-client-request-id": [ "7e3f0173-065e-4b3b-8874-1207b8277ebc" ], + "x-ms-unique-id": [ "750" ], + "x-ms-client-request-id": [ "8412a8b0-ee01-4f9e-af39-f7f2e3c077a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8929,36 +8929,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2b2ec7f-e530-4fcd-898b-bca66e8a00b1" ], + "x-ms-request-id": [ "2adbd551-f86c-492d-8935-a3fc6bcc468e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a528c7c8-8502-4638-8c51-88d0382d08f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015927Z:a528c7c8-8502-4638-8c51-88d0382d08f6" ], + "x-ms-correlation-request-id": [ "3a5cd262-b7bc-4f6b-9817-722ab0f6ddff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000144Z:3a5cd262-b7bc-4f6b-9817-722ab0f6ddff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D472CEC6FFA749CDB00120C3066DF4BF Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CA451EE55CB483E8C58E0F834D7C0FF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:44Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Java-la9uw4623c?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "752" ], - "x-ms-client-request-id": [ "eb9eb8b9-8134-4e8b-ab70-d8d6e62a6ad7" ], + "x-ms-unique-id": [ "751" ], + "x-ms-client-request-id": [ "0977cb1e-1e1b-4c46-b45d-7f53c8e97f0d" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8973,20 +8973,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A3A6677A0\"" ], + "ETag": [ "\"1DC55C2F2BF1E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46415c81-7358-46d9-aca5-793f5c140fdd" ], + "x-ms-request-id": [ "5a3eb682-d970-4ca1-98f8-31d85c18c15e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17761fd3-9436-4bb1-ab24-a3802772e5e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3c93e50-0f5c-40c7-bf55-29e44023fa0a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "459d0527-b4d9-49b1-a6e9-9fde38728021" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015934Z:459d0527-b4d9-49b1-a6e9-9fde38728021" ], + "x-ms-correlation-request-id": [ "a797d39f-6e42-435c-8aaf-19c5470c7db8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000157Z:a797d39f-6e42-435c-8aaf-19c5470c7db8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7E36C25071546E1A78E8F8DC42B4CCC Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:27Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 214BC2BE80B14F0DAF5654E25BAE628C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:44Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9000,7 +9000,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Node-zur6igjh15\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-8b1039t6ur\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9015,18 +9015,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27f29a7e-f9fc-43a4-be32-e0521ccc0c1f" ], + "x-ms-request-id": [ "196f3365-390a-4b7d-83bc-36536a84a7cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7eb25314-b20e-4ebd-b448-95ff196ca374" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da722cda-7b8d-4c25-9f53-c252ba01ebae" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8c46e202-f1ce-4b8d-984f-112a511a08df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015934Z:8c46e202-f1ce-4b8d-984f-112a511a08df" ], + "x-ms-correlation-request-id": [ "f1aa9a13-feda-4e08-a766-6ad6365d685d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000158Z:f1aa9a13-feda-4e08-a766-6ad6365d685d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E09A82F5E5A4CC0AEBF9AB1F5F57094 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:34Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7EC970FB4454F89965CC8C68A3F3580 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:57Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9044,8 +9044,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "754" ], - "x-ms-client-request-id": [ "f64bcdb2-e27d-46e5-a060-a971e2ca7dec" ], + "x-ms-unique-id": [ "753" ], + "x-ms-client-request-id": [ "941bad02-c5e2-47cc-8aaf-c89386d7ae5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9061,25 +9061,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31a5659c-620a-4513-881a-0bd5f9655667" ], + "x-ms-request-id": [ "9b92e054-e4f5-4805-a807-2362fe7af480" ], "X-AspNet-Version": [ "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/56c21052-a33f-4d8a-ba0e-cd3389f09a7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0d60c52f-a965-4800-adbd-465bd68ceda4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "32849701-8537-47c0-bd57-b287edcf89c4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015935Z:32849701-8537-47c0-bd57-b287edcf89c4" ], + "x-ms-correlation-request-id": [ "7b0c2d45-a905-4fd6-8076-4cf8bb2c499e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000159Z:7b0c2d45-a905-4fd6-8076-4cf8bb2c499e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55FCCE45BE7A47B7813DE20142612E33 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73D7E921670A4354BBA8459C54471B7C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37704" ], + "Content-Length": [ "37716" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -9090,8 +9090,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "755" ], - "x-ms-client-request-id": [ "b47ec3e7-e4eb-4cc6-afc7-17a0dcddfc5c" ], + "x-ms-unique-id": [ "754" ], + "x-ms-client-request-id": [ "0e36e015-72e4-4e63-9a59-6f309011238c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9106,36 +9106,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9dd9d114-e973-4028-a419-21ec9e5c1767", "7e495607-644c-4ccd-9d19-d6570ca73cb4", "45e1269d-b4fb-4899-8a6c-e29e8f900dfa" ], + "x-ms-original-request-ids": [ "4655fc57-2545-44b2-a429-6c443a565c76", "1ebf3425-f131-44e7-81df-d1030ddf08d2", "cd69caa2-fc6d-473d-8652-c717013ca24d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "511e08c4-6aa5-413b-8980-26a7657aa9ec" ], - "x-ms-correlation-request-id": [ "511e08c4-6aa5-413b-8980-26a7657aa9ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015935Z:511e08c4-6aa5-413b-8980-26a7657aa9ec" ], + "x-ms-request-id": [ "cc460601-6834-49e6-b32b-50aa61931086" ], + "x-ms-correlation-request-id": [ "cc460601-6834-49e6-b32b-50aa61931086" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000159Z:cc460601-6834-49e6-b32b-50aa61931086" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FD9A36FDB5E49DAB680028AFE63510C Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E10A309B2C644CD6BD074CCB4B1737CE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/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-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/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-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "756" ], - "x-ms-client-request-id": [ "f5120a9b-9dd5-41d5-b6ea-27afc1053750" ], + "x-ms-unique-id": [ "755" ], + "x-ms-client-request-id": [ "9d93ae78-7d57-4042-9a2b-60aac55d7c4a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9150,30 +9150,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "540649e3-1521-4b9a-90f0-bd49a9ccb63d" ], + "x-ms-request-id": [ "3ba13ee9-e9f2-42c3-b1bd-9a28b1ae5d03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2f297da7-4a4d-4a70-ac29-4c5ea95affe1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/93ab217e-1abb-4164-87c7-91eda7251e91" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "04c675c8-c012-4715-862c-a8126e144aa0" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T015935Z:04c675c8-c012-4715-862c-a8126e144aa0" ], + "x-ms-correlation-request-id": [ "489ebe72-2717-403c-93e9-2db38a0b93c5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000159Z:489ebe72-2717-403c-93e9-2db38a0b93c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98A7F2C270374927BB41380C53372331 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:35Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F48696AED3D84D2F9CE8591DE6D67D9A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:01:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:01:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"vBnFlf8DtiCjWBrzxrmUYOewx7T1/1WFBCxHCHY6YdZPrtGEggCnt5RVLntKdkN5kIp5X1DOObTn+ASt5ARBEA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"sEtmtKq2Gdh8hOZkroP4avhyxoAbql8eZv63ZJShR2qnQUhsqRAS59GPxVZiuWuhFEiy11+eeRNi+AStUvrV4Q==\",\"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-le3f9v/providers/Microsoft.Insights/components/Functions-Node-zur6igjh15?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-myf9na/providers/Microsoft.Insights/components/Functions-Node-8b1039t6ur?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-le3f9v/providers/Microsoft.Insights/components/Functions-Node-zur6igjh15?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Insights/components/Functions-Node-8b1039t6ur?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -9193,30 +9193,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4867e088-9eb4-40d6-954f-64a75bc7ee9c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "ef993912-38ba-4f39-89ff-bd8f7f7dcd07" ], - "x-ms-correlation-request-id": [ "ef993912-38ba-4f39-89ff-bd8f7f7dcd07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T015941Z:ef993912-38ba-4f39-89ff-bd8f7f7dcd07" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/156bfe3e-2c50-4814-8f0c-cb41b0f62ed4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "a0bddcf6-fd46-4cbb-bd60-411ffad885e6" ], + "x-ms-correlation-request-id": [ "a0bddcf6-fd46-4cbb-bd60-411ffad885e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000206Z:a0bddcf6-fd46-4cbb-bd60-411ffad885e6" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBAE8A72D12C45908ABF031A18A1BAA6 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:36Z" ], - "Date": [ "Fri, 14 Nov 2025 01:59:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3202117CCD374546BD0407C4AF3E2AF2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"09077fad-0000-0300-0000-69168d0d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Node-zur6igjh15\",\r\n \"name\": \"Functions-Node-zur6igjh15\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-zur6igjh15\",\r\n \"AppId\": \"aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"65307571-de3f-45bb-a709-be13ce2fa192\",\r\n \"ConnectionString\": \"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\r\n \"Name\": \"Functions-Node-zur6igjh15\",\r\n \"CreationDate\": \"2025-11-14T01:59:36.5096857+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-zur6igjh15_aa7e26c1-6166-4bf1-826a-9504ce5b2585_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-zur6igjh15-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\": \"\\\"30003c63-0000-0300-0000-6917c2fe0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Node-8b1039t6ur\",\r\n \"name\": \"Functions-Node-8b1039t6ur\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-8b1039t6ur\",\r\n \"AppId\": \"662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5\",\r\n \"ConnectionString\": \"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\r\n \"Name\": \"Functions-Node-8b1039t6ur\",\r\n \"CreationDate\": \"2025-11-15T00:02:00.6987807+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-8b1039t6ur_662d84aa-a98e-4dbf-869e-8efad7a8e1b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-8b1039t6ur-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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-zur6igjh15\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"\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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-8b1039t6ur\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9230,39 +9230,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A5881AE80\"" ], + "ETag": [ "\"1DC55C315CDD42B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c016979-0bc4-427d-bdd9-7f5cb16334cc" ], + "x-ms-request-id": [ "fc6bb8dd-590b-40bb-adbd-b09f38cc613e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/021dd0dd-867b-42a6-a02f-f86df934d615" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4ae9708-9319-4a6e-b1eb-0a7d2dab3074" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a5ca05dc-adf3-4d9c-85f1-60e65ffb0e4d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020003Z:a5ca05dc-adf3-4d9c-85f1-60e65ffb0e4d" ], + "x-ms-correlation-request-id": [ "a9d0f7ac-eb6d-4fa3-9a69-03c610b9d6c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000228Z:a9d0f7ac-eb6d-4fa3-9a69-03c610b9d6c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7178B01703F454CBA5D84CCDD150165 Ref B: MWH011020806052 Ref C: 2025-11-14T01:59:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A85023C035D499F91335A512F567163 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8264" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:59:42.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-8b1039t6ur\",\"state\":\"Running\",\"hostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Node-8b1039t6ur\",\"repositorySiteName\":\"Functions-Node-8b1039t6ur\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\",\"functions-node-8b1039t6ur.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-8b1039t6ur.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-8b1039t6ur.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:02:07.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\":\"Functions-Node-8b1039t6ur\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-8b1039t6ur\\\\$Functions-Node-8b1039t6ur\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-node-8b1039t6ur.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "759" ], - "x-ms-client-request-id": [ "20281445-5d14-4d09-80b9-03a4bd8b60b1" ], + "x-ms-unique-id": [ "758" ], + "x-ms-client-request-id": [ "6cf0cfa6-5b55-4d88-82b2-1640529dd45b" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9276,38 +9276,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A63B65580\"" ], + "ETag": [ "\"1DC55C3213E7FC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77c5121e-9c87-40c4-932a-559e8a2b495c" ], + "x-ms-request-id": [ "84ede03f-29df-496c-9b03-852388167159" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bc3f8f19-a6f2-4c78-a3e1-09e2ca3c0c87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020033Z:bc3f8f19-a6f2-4c78-a3e1-09e2ca3c0c87" ], + "x-ms-correlation-request-id": [ "4a3f87fb-e36f-476f-b147-f2a51c9592ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000258Z:4a3f87fb-e36f-476f-b147-f2a51c9592ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A708AB9A07184661BFEA703113161B87 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A3D477E53CF41DC84B462976BF40798 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:58Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-8b1039t6ur\",\"state\":\"Running\",\"hostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Node-8b1039t6ur\",\"repositorySiteName\":\"Functions-Node-8b1039t6ur\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\",\"functions-node-8b1039t6ur.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-8b1039t6ur.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-8b1039t6ur.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:02:27.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-8b1039t6ur\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-8b1039t6ur\\\\$Functions-Node-8b1039t6ur\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-node-8b1039t6ur.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "760" ], - "x-ms-client-request-id": [ "f84244d8-9b7e-4b38-a28e-f3f8498d1417" ], + "x-ms-unique-id": [ "759" ], + "x-ms-client-request-id": [ "913c65b1-f8bb-475e-91e3-0609dd25faec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9322,38 +9322,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A63B65580\"" ], + "ETag": [ "\"1DC55C3213E7FC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0125afe-aa9a-4ccb-94eb-e0f27f1e7e40" ], + "x-ms-request-id": [ "37bd17ac-e434-4e40-bbf9-c14a6f4a570b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8d9cb656-159c-409a-a085-306715dfb4c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020033Z:8d9cb656-159c-409a-a085-306715dfb4c0" ], + "x-ms-correlation-request-id": [ "d9092bad-c7cb-4862-a618-cafcc70b4274" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000258Z:d9092bad-c7cb-4862-a618-cafcc70b4274" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18EFD325E6B147DE8ED9A2D6B454960F Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1C039B3ECB04C96BEDF853B82BEC29F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:58Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-8b1039t6ur\",\"state\":\"Running\",\"hostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Node-8b1039t6ur\",\"repositorySiteName\":\"Functions-Node-8b1039t6ur\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\",\"functions-node-8b1039t6ur.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-8b1039t6ur.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-8b1039t6ur.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:02:27.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-8b1039t6ur\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-8b1039t6ur\\\\$Functions-Node-8b1039t6ur\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-node-8b1039t6ur.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "761" ], - "x-ms-client-request-id": [ "048604c2-e3d7-4740-9807-a22a6ff0b1de" ], + "x-ms-unique-id": [ "760" ], + "x-ms-client-request-id": [ "9657d57d-b47f-45a9-b6cc-eb5acaf8cdcd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9369,36 +9369,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c5bdc09-313a-48ef-9fe7-ff4d4df1ee41" ], + "x-ms-request-id": [ "96ef6340-8a51-40a7-85e2-46f456a37988" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae18029c-75de-4d8d-931f-5dd91184ace4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/267025ee-9006-4f9e-a939-00c1a5b54fee" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "08276cd6-ba49-43e7-b7ac-57aba6aba32e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020034Z:08276cd6-ba49-43e7-b7ac-57aba6aba32e" ], + "x-ms-correlation-request-id": [ "5f8dd043-e471-4448-a2a5-d21c67fefac8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000259Z:5f8dd043-e471-4448-a2a5-d21c67fefac8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA90F2278A65450D95E4BC8F1ACCA55D Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C19C75AF36344852A4664CD0E601A955 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "762" ], - "x-ms-client-request-id": [ "fb489400-4550-48b9-8376-e04636a16751" ], + "x-ms-unique-id": [ "761" ], + "x-ms-client-request-id": [ "2346f849-33ae-4b5e-a902-4a98453cc01a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9414,37 +9414,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fdf293e-0236-4a8d-a0f4-8b1677b31a9a" ], + "x-ms-request-id": [ "f24f89fe-d131-46b8-be57-5b28f9f90c36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9803de2-8df3-4610-92ca-2a0248c23e82" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aece941b-a01e-4517-8306-545e52a3f4e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "340fc67a-8cde-4082-ba49-00f43cc5f448" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020034Z:340fc67a-8cde-4082-ba49-00f43cc5f448" ], + "x-ms-correlation-request-id": [ "3082f215-4ff2-480f-bb17-6a469220e81c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000259Z:3082f215-4ff2-480f-bb17-6a469220e81c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1705CE27FA4347E9A3157A7F6674E09B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8D341E246BA4DB289AEC0F947B1AC5E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02: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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/web\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "763" ], - "x-ms-client-request-id": [ "31c7f082-4c51-4d8c-9904-9f97879da605" ], + "x-ms-unique-id": [ "762" ], + "x-ms-client-request-id": [ "b7d814db-53ba-4b46-9678-8dc61f8df575" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9460,36 +9460,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "630124c4-434e-483b-9124-d506ebe74f49" ], + "x-ms-request-id": [ "2587a879-6415-43c7-866f-f2d1db705586" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2bd8685-64a3-4ff9-9e9b-95994e173475" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63e1e874-a68b-49f1-8d1b-14ddfbc83dde" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0c9b2706-7546-4602-b3b9-749fb9813a96" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020034Z:0c9b2706-7546-4602-b3b9-749fb9813a96" ], + "x-ms-correlation-request-id": [ "cc5ab1fe-1136-456b-8cdf-533be0ccee87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000259Z:cc5ab1fe-1136-456b-8cdf-533be0ccee87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E52854ABC254B4BA2A559B27591BA5E Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B08CF71DDB44C7DAFECBDA32D5661E7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:02:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "764" ], - "x-ms-client-request-id": [ "848ae61a-dc54-4c48-aa91-6bf1538aae76" ], + "x-ms-unique-id": [ "763" ], + "x-ms-client-request-id": [ "2c40ea12-0bd4-481a-8ce0-c0fda9dd1b21" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9504,38 +9504,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A63B65580\"" ], + "ETag": [ "\"1DC55C3213E7FC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "631f08a5-51b3-473f-9d63-0e4cd210331b" ], + "x-ms-request-id": [ "45570885-021a-453d-9abe-91a00adbbd0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c4f052bd-d7f5-4120-be06-ba2cb4560801" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020035Z:c4f052bd-d7f5-4120-be06-ba2cb4560801" ], + "x-ms-correlation-request-id": [ "2e515d97-d17f-4b2c-a347-e88e028cb439" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000300Z:2e515d97-d17f-4b2c-a347-e88e028cb439" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D2CC402EDDC84AB98E3F032258693D84 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BEBB50BA4F3441E7954223A843E5CB59 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:02:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-8b1039t6ur\",\"state\":\"Running\",\"hostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Node-8b1039t6ur\",\"repositorySiteName\":\"Functions-Node-8b1039t6ur\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\",\"functions-node-8b1039t6ur.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-8b1039t6ur.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-8b1039t6ur.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:02:27.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-8b1039t6ur\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-8b1039t6ur\\\\$Functions-Node-8b1039t6ur\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-node-8b1039t6ur.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "765" ], - "x-ms-client-request-id": [ "8b7256af-a46d-41a9-baff-6acbb9cdfaa1" ], + "x-ms-unique-id": [ "764" ], + "x-ms-client-request-id": [ "ae4ddcea-5c39-4481-b1ea-aa4f56951632" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9551,36 +9551,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fdead51-00ed-4d0f-8860-506638b68fcb" ], + "x-ms-request-id": [ "71987bfc-970c-44e8-841d-fc53c0bdd4fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a8f60db-a3ff-4561-a61c-2c5a37878ce9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9fe3380-ffbb-47cd-9620-b3129b4df389" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "00ef9d55-e631-4a3c-b0d9-5e24819e3091" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020035Z:00ef9d55-e631-4a3c-b0d9-5e24819e3091" ], + "x-ms-correlation-request-id": [ "e52e85d3-b761-46b9-bd00-faadb853facf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000300Z:e52e85d3-b761-46b9-bd00-faadb853facf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF587D5B13594B1FBE62086C3D36DA15 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2B09A0B6CF34AFDA2FE04620A3E9CCD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "766" ], - "x-ms-client-request-id": [ "e5baeb6b-f658-49de-a565-cc5a8e0a61df" ], + "x-ms-unique-id": [ "765" ], + "x-ms-client-request-id": [ "cc4fba7c-b2d0-4f49-9006-13395818245d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9596,37 +9596,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "488983e6-471d-40a5-8cc3-a48a695cda65" ], + "x-ms-request-id": [ "a6a1acfe-b01e-4c11-89d0-caafe4d523e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f8f2dbcc-e181-4724-85c9-8bb6bfaba376" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "12826658-9be2-4842-ad7e-266b1ab9e3e0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020035Z:12826658-9be2-4842-ad7e-266b1ab9e3e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/887f33db-a27d-454a-ae5b-4c4d82ddf036" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7a3f26e1-29c6-4eca-8e4c-576ed777202f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000300Z:7a3f26e1-29c6-4eca-8e4c-576ed777202f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABFDDC037C4347BCB6E816736862AC46 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4187BC7BCC914ABAB910AABBEBE54F02 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/web\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "767" ], - "x-ms-client-request-id": [ "0fc9cdc3-09f8-4b7e-bf46-3f35c3cf6aa1" ], + "x-ms-unique-id": [ "766" ], + "x-ms-client-request-id": [ "119bb828-b1d3-470a-a4a5-a4ac41d572d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9641,38 +9641,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A63B65580\"" ], + "ETag": [ "\"1DC55C3213E7FC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99d5ae10-9fbc-4586-a5b9-05030a742879" ], + "x-ms-request-id": [ "2806422b-e265-48cb-a70d-b60b44bd3301" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7461e0eb-d9c8-4dfc-854f-203f45005410" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020036Z:7461e0eb-d9c8-4dfc-854f-203f45005410" ], + "x-ms-correlation-request-id": [ "d3d41582-7429-4491-8d88-53bd3a91e5ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000301Z:d3d41582-7429-4491-8d88-53bd3a91e5ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6B8CE6F772F4A3082418D19DB2BE69D Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B82BE68A78054629B0FE15444C4897F7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-zur6igjh15\",\"state\":\"Running\",\"hostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Node-zur6igjh15\",\"repositorySiteName\":\"Functions-Node-zur6igjh15\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-zur6igjh15.azurewebsites.net\",\"functions-node-zur6igjh15.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-zur6igjh15.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-zur6igjh15.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:02.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-zur6igjh15\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-zur6igjh15\\\\$Functions-Node-zur6igjh15\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-node-zur6igjh15.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-8b1039t6ur\",\"state\":\"Running\",\"hostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Node-8b1039t6ur\",\"repositorySiteName\":\"Functions-Node-8b1039t6ur\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-8b1039t6ur.azurewebsites.net\",\"functions-node-8b1039t6ur.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-8b1039t6ur.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-8b1039t6ur.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:02:27.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-8b1039t6ur\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-8b1039t6ur\\\\$Functions-Node-8b1039t6ur\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-node-8b1039t6ur.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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 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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "768" ], - "x-ms-client-request-id": [ "56d66293-ed66-445d-a1bd-e74013b96ddb" ], + "x-ms-unique-id": [ "767" ], + "x-ms-client-request-id": [ "4eab7586-2cd2-4a0a-b40b-440faadc554d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9688,36 +9688,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7704cf66-c1e2-4b70-842f-04e4c03c99be" ], + "x-ms-request-id": [ "0fb4e17f-a6e6-4d15-871e-8a9182e18b3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0169e56f-1283-41f5-8d34-3cb84414878d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/122e3e60-afe7-46e0-8c97-b70f90acaf1d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e36c3c95-4912-4354-9697-f95b9e5ecc73" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020036Z:e36c3c95-4912-4354-9697-f95b9e5ecc73" ], + "x-ms-correlation-request-id": [ "ea026b72-695d-4e0f-847d-dcf071bd19c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000301Z:ea026b72-695d-4e0f-847d-dcf071bd19c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D06E3169027C43329BE61BC67F930C2F Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3301303835954E918B67CC43C7B8A70C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-zur6igjh15\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", "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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "769" ], - "x-ms-client-request-id": [ "c7f6b32a-d87b-4527-8918-c8157d3d2a63" ], + "x-ms-unique-id": [ "768" ], + "x-ms-client-request-id": [ "665ce1f8-8139-433a-a49c-5a88f4e365ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9733,37 +9733,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35ea2bb7-2640-45cc-9bca-0307ba703a86" ], + "x-ms-request-id": [ "9e3dd5dd-383e-4ec0-afb9-2a44959a6184" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d555fb70-a1f7-4c24-af51-eed2327f324e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3e05927c-0308-49fe-a926-684571dd8f7b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b8b84374-b075-45f7-90ae-9b2f74063e11" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020036Z:b8b84374-b075-45f7-90ae-9b2f74063e11" ], + "x-ms-correlation-request-id": [ "01e0c9e8-0559-4b3b-9069-b4a8d79a0b06" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000301Z:01e0c9e8-0559-4b3b-9069-b4a8d79a0b06" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EEF48232EAD4A0B99A02D6E343184B4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD1697D3A7514B2EB95BB913A6F497C6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15/config/web\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/config/web\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "770" ], - "x-ms-client-request-id": [ "40fa65b8-4f4d-45a6-93e9-a85c88618e92" ], + "x-ms-unique-id": [ "769" ], + "x-ms-client-request-id": [ "d0cf7cc9-8291-4bcc-a4e2-848a8295f16a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9779,36 +9779,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d2743b5a-cc09-4349-b515-325d60d1b412" ], + "x-ms-request-id": [ "189d3083-cfce-4776-89aa-cad697715d92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7c051392-d8e2-4f6a-a59f-f0db79ecfa4b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020037Z:7c051392-d8e2-4f6a-a59f-f0db79ecfa4b" ], + "x-ms-correlation-request-id": [ "f81ac86c-b246-493e-93a9-a775dda82bb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000302Z:f81ac86c-b246-493e-93a9-a775dda82bb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6364A71D09E64691AB92EBF5A256A91B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 015E2D762446473681EC85E3711EAD6C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Node-zur6igjh15?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "771" ], - "x-ms-client-request-id": [ "db253f6b-2315-4eb1-9e95-dd1f7beff529" ], + "x-ms-unique-id": [ "770" ], + "x-ms-client-request-id": [ "5b88cde9-15a2-4915-a17c-dee7eaee86ad" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9823,20 +9823,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A63B65580\"" ], + "ETag": [ "\"1DC55C3213E7FC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6b9cc38-1818-4c14-a05b-ae31c6e730c6" ], + "x-ms-request-id": [ "193c75e1-0bbd-428a-a178-c0dc8b344b1d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e584abc-72b6-45da-823e-2ba864905164" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e285b514-4888-422c-952c-6b8c3d3bd07f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8d3cbec2-74f4-4f26-bb26-db9c1b7f0466" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020045Z:8d3cbec2-74f4-4f26-bb26-db9c1b7f0466" ], + "x-ms-correlation-request-id": [ "6fdf183b-0da0-4aa9-a8c0-62289c28d42f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000313Z:6fdf183b-0da0-4aa9-a8c0-62289c28d42f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB2C8542CBF741E1B971C3579F86F9B3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D045DB3C6B584A9BBA5E93B8A3F0500F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9850,7 +9850,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-Isolateduhnte46q0o\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9865,18 +9865,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f51601df-e86e-4482-9c82-f6f9563bde39" ], + "x-ms-request-id": [ "e37c15f0-dc10-4f66-964c-fb5b0a14ba43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e4d74207-6a0d-4ed7-8952-4831499a2f5e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da598ab3-3414-4ac1-8382-166b61dde9e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f3c8245c-d809-4011-83c2-1b4d384f9f6e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020045Z:f3c8245c-d809-4011-83c2-1b4d384f9f6e" ], + "x-ms-correlation-request-id": [ "c2d75a2d-da6d-4289-a1c6-f42cbe09cf24" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000313Z:c2d75a2d-da6d-4289-a1c6-f42cbe09cf24" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B39C03D03CEB41BC8B200FD9380CC461 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:45Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 090D2121161943B39A015ADEFCA8400C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9894,8 +9894,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "773" ], - "x-ms-client-request-id": [ "853ae781-7aab-4400-aa8a-de7c2a4e6704" ], + "x-ms-unique-id": [ "772" ], + "x-ms-client-request-id": [ "43c713b2-9e57-4fdd-99ce-15969295a2ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9910,36 +9910,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "65ddd3b7-8b10-481b-b58d-d64d21c02ee1", "b1ddd8b1-38c7-4faf-a520-574c276c5b3e" ], + "x-ms-original-request-ids": [ "a0e8f78a-e839-4d60-a7a4-f6d50fdaa705", "469b468b-aa7e-4c22-88db-a8f187e97458" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c9e1f587-c850-4ecb-a3f0-eb937f41f880" ], - "x-ms-correlation-request-id": [ "c9e1f587-c850-4ecb-a3f0-eb937f41f880" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020047Z:c9e1f587-c850-4ecb-a3f0-eb937f41f880" ], + "x-ms-request-id": [ "4ed68f3b-1707-4e3c-95ff-e8006d522182" ], + "x-ms-correlation-request-id": [ "4ed68f3b-1707-4e3c-95ff-e8006d522182" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000314Z:4ed68f3b-1707-4e3c-95ff-e8006d522182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 590D2FF85B8B414CB5445BFBF645E02E Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DEA1B412A74483B8B7470E54F79896A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "11997" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "774" ], - "x-ms-client-request-id": [ "bce3c1be-1ae5-4431-a2cb-8f74580c705b" ], + "x-ms-unique-id": [ "773" ], + "x-ms-client-request-id": [ "cbd3929a-2a81-435d-baeb-25e5660af5da" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9955,36 +9955,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7f1a019-2bb1-438f-b63b-5c62cb81adbd" ], + "x-ms-request-id": [ "60ec9cf4-7a22-4226-a0f2-30cc6c502f76" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1213ec51-8808-4f69-9877-8d995eeb67a7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020047Z:1213ec51-8808-4f69-9877-8d995eeb67a7" ], + "x-ms-correlation-request-id": [ "e24330bf-85f1-4614-a667-10d5018344a1" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000315Z:e24330bf-85f1-4614-a667-10d5018344a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79F41E9C0D4645B1B9F4E150DE1F2A6B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 801B70C504A54943BD71B37AB1948667 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "775" ], - "x-ms-client-request-id": [ "1eab4182-448a-4601-8927-c889761a0e2e" ], + "x-ms-unique-id": [ "774" ], + "x-ms-client-request-id": [ "89a354c1-2c0e-4d14-aa16-847371e1a530" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10000,36 +10000,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b1b050d-b659-48ff-8f2e-7f1567e10989" ], + "x-ms-request-id": [ "3768bdb5-b407-4c52-99d6-9274170a9ced" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5ec4a605-31dc-4894-bcaa-4cdfc74f7d0c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020047Z:5ec4a605-31dc-4894-bcaa-4cdfc74f7d0c" ], + "x-ms-correlation-request-id": [ "99151e62-ee29-41d8-abc3-6589eec77ff6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000315Z:99151e62-ee29-41d8-abc3-6589eec77ff6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 785BB54CFA4C4EF48A1E03B812348DCF Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BFF38C6426064365B3355A5F27E97B1C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "776" ], - "x-ms-client-request-id": [ "38cd142b-a5f9-495e-8449-9ea189e3930c" ], + "x-ms-unique-id": [ "775" ], + "x-ms-client-request-id": [ "b8ca7fcb-b009-494c-8a9f-54605ae9628b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10045,36 +10045,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "34403ee9-1d27-49c6-8aa9-04c3ed2379c7" ], + "x-ms-request-id": [ "d1cacbde-9449-4398-82a9-695b7a166bf7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "980e0578-7daf-4e21-baa9-573e5652e88b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020048Z:980e0578-7daf-4e21-baa9-573e5652e88b" ], + "x-ms-correlation-request-id": [ "8653eadd-c7c0-4b74-b582-1a702e7f4495" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000315Z:8653eadd-c7c0-4b74-b582-1a702e7f4495" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C91A8EEBAD1046CF9D35D506DEA84EC4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 565764FCD3484F04B4B5618F91D871E9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "777" ], - "x-ms-client-request-id": [ "c28ce151-ba38-4e99-8f1f-00d98b7d4724" ], + "x-ms-unique-id": [ "776" ], + "x-ms-client-request-id": [ "83dfce5c-accc-4099-be91-be30e7f1e390" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10090,36 +10090,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18c0637e-477c-42ee-8d82-2bc6076aab2c" ], + "x-ms-request-id": [ "e7689e0d-3f86-49c6-87d7-51366b5356a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7f1f7bf1-0f6e-44aa-a8a1-ad669c3f339a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020048Z:7f1f7bf1-0f6e-44aa-a8a1-ad669c3f339a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7b61e199-9520-4e38-b63e-83920411a1a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000316Z:7b61e199-9520-4e38-b63e-83920411a1a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41936DB4F77349158DD1C3265686286A Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 556A89D76EE649B19BB8BE0207671EDB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "778" ], - "x-ms-client-request-id": [ "46ffe308-dc90-4030-b18b-d69baaa7d1ff" ], + "x-ms-unique-id": [ "777" ], + "x-ms-client-request-id": [ "bddea18f-7c67-451e-b465-43d48f35b629" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10135,36 +10135,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3ae8b0f-ea3b-435d-ab1c-e1268ba3fe64" ], + "x-ms-request-id": [ "73db139a-d67e-460f-8c20-fb49a8c33a60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "10241028-1918-4811-8a8b-4f24bd67edaf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020048Z:10241028-1918-4811-8a8b-4f24bd67edaf" ], + "x-ms-correlation-request-id": [ "65f06654-e2fb-4bda-ad01-9b90432902ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000319Z:65f06654-e2fb-4bda-ad01-9b90432902ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C17A12FD010458D937F7879EAA79F5B Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53FDE8B3F92941908FE2FE20DC511D5D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "779" ], - "x-ms-client-request-id": [ "0814a235-fdea-47af-8462-a8e9f5bbc6f0" ], + "x-ms-unique-id": [ "778" ], + "x-ms-client-request-id": [ "706bc384-d788-4877-a969-3bed082633c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10180,36 +10180,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41f9b5c5-42b4-462a-b533-79e4e3219df5" ], + "x-ms-request-id": [ "f5481697-33b9-4102-aa48-2472fbb73385" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ca83f1fd-5dd1-4693-8916-517c9115376a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020049Z:ca83f1fd-5dd1-4693-8916-517c9115376a" ], + "x-ms-correlation-request-id": [ "51cb1063-9afb-48d8-8f67-6ff764fc4544" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000320Z:51cb1063-9afb-48d8-8f67-6ff764fc4544" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB75BD5410FC4E73A05C3B9B64197D19 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B181FFC0675488FAD34617ECD40D531 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "780" ], - "x-ms-client-request-id": [ "e631fe34-25ac-4614-84ef-e63485505e41" ], + "x-ms-unique-id": [ "779" ], + "x-ms-client-request-id": [ "5366f20b-c795-47c5-80ad-5bfd7c84de6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10225,24 +10225,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dca03f5f-9972-43d0-b5a7-74c94d50ae93" ], + "x-ms-request-id": [ "48356cf1-6ed1-4a8e-a025-e75fd329dc39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b4dfc55e-6984-481d-b90f-c6b6719e27c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020051Z:b4dfc55e-6984-481d-b90f-c6b6719e27c7" ], + "x-ms-correlation-request-id": [ "48400615-0204-4b02-9b79-ef23becaacd1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000321Z:48400615-0204-4b02-9b79-ef23becaacd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 841CBFD71C334AB791ACE7EED41AC2C1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B41DEC5E9FB24D1095753586385ED3DE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:20Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -10253,8 +10253,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "781" ], - "x-ms-client-request-id": [ "67ccb1e8-7295-4215-83c7-d54bc4cba69d" ], + "x-ms-unique-id": [ "780" ], + "x-ms-client-request-id": [ "6fb02c35-caa7-4550-b5c2-c3a2f5902f93" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10269,36 +10269,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "149dc7dc-825b-4b2c-9a05-e0e08a6877b8", "7f7792ab-1066-465c-b124-2d56d0d48aab", "3536f15a-2b09-424b-98f0-219b19d4f440" ], + "x-ms-original-request-ids": [ "2f0a4227-5a92-4c8d-b113-c4f8c07e2632", "e1a5dc70-8c05-4981-a36c-f9281363d8e2", "abfb5085-8f7f-4339-bd05-0148307ee8ed" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "182768d4-cecd-472e-b5a1-3f7ae29f9204" ], - "x-ms-correlation-request-id": [ "182768d4-cecd-472e-b5a1-3f7ae29f9204" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T020052Z:182768d4-cecd-472e-b5a1-3f7ae29f9204" ], + "x-ms-request-id": [ "c81965e5-910a-4dcc-8104-428d1b0bbb57" ], + "x-ms-correlation-request-id": [ "c81965e5-910a-4dcc-8104-428d1b0bbb57" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T000322Z:c81965e5-910a-4dcc-8104-428d1b0bbb57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44F04F6FF45746339376DDABD23BCA3A Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E58F7AAACB584556B7CB6EBD06E52655 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:21Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/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-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "782" ], - "x-ms-client-request-id": [ "0fc8b262-b229-485b-95e2-ad9c7e7b829b" ], + "x-ms-unique-id": [ "781" ], + "x-ms-client-request-id": [ "c8d39659-7983-415c-99b4-994d8bf735bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10313,30 +10313,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6bdef282-d69f-4621-9ef0-ebd664ed3dce" ], + "x-ms-request-id": [ "d370f066-9869-4a5a-a019-c714c402466d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/881fa5ae-896a-4357-af84-9cf37d8c1970" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b9163fb8-8572-45fd-b55b-f548863103a1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a92fb4a3-c23a-4568-8ff4-458fe034b37e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020052Z:a92fb4a3-c23a-4568-8ff4-458fe034b37e" ], + "x-ms-correlation-request-id": [ "867b0df3-2974-4ac7-96cf-591cb847e487" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000322Z:867b0df3-2974-4ac7-96cf-591cb847e487" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A42780A532F040AB80B8922F01D7B868 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 255A789A88924715BC003FFB2D722B2B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:22Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Functions-DotNet-Isolateduhnte46q0o?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-DotNet-Isolatedhfo7435u8j?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-ry1xpa/providers/Microsoft.Insights/components/Functions-DotNet-Isolateduhnte46q0o?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-DotNet-Isolatedhfo7435u8j?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -10356,30 +10356,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/accc5976-8f39-450e-a70e-297bb1102453" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1fe7f4cc-408f-4bcd-bee4-b2741e31ca3e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "fc2a43d0-e038-4ca3-b30e-ee6c9f14f833" ], - "x-ms-correlation-request-id": [ "fc2a43d0-e038-4ca3-b30e-ee6c9f14f833" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020056Z:fc2a43d0-e038-4ca3-b30e-ee6c9f14f833" ], + "x-ms-request-id": [ "36558c4d-4ada-431d-92d3-00fca5243017" ], + "x-ms-correlation-request-id": [ "36558c4d-4ada-431d-92d3-00fca5243017" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000327Z:36558c4d-4ada-431d-92d3-00fca5243017" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 668701C2C43549ECB3E99717434989F8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:00:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0BE083AAE57458CB239F7680BBAEC64 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:22Z" ], + "Date": [ "Sat, 15 Nov 2025 00:03:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1683" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"09071ec2-0000-0300-0000-69168d580000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-DotNet-Isolateduhnte46q0o\",\r\n \"name\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"AppId\": \"20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66\",\r\n \"ConnectionString\": \"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\r\n \"Name\": \"Functions-DotNet-Isolateduhnte46q0o\",\r\n \"CreationDate\": \"2025-11-14T02:00:53.143562+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-isolateduhnte46q0o_20f53ecf-4616-4b66-83b2-6b97bbcb3dc7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolateduhnte46q0o-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\": \"\\\"30006c6d-0000-0300-0000-6917c34f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"AppId\": \"e8e92f95-a7da-4018-9057-bc9a6e1490db\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"54b9b2d9-4424-43ab-9077-c29c4fca9160\",\r\n \"ConnectionString\": \"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\",\r\n \"Name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"CreationDate\": \"2025-11-15T00:03:23.1804035+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-isolatedhfo7435u8j_e8e92f95-a7da-4018-9057-bc9a6e1490db_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedhfo7435u8j-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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolateduhnte46q0o\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"\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-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolatedhfo7435u8j\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -10393,39 +10393,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A85640EF5\"" ], + "ETag": [ "\"1DC55C345B03B35\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6f8424bc-1d8f-4280-9009-7319242bbaa4" ], + "x-ms-request-id": [ "38fc27c4-5a76-4eb6-ac6e-fd71fcf91e27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d54cf02-d463-41a7-89f5-ca9b71411ccc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae1bd709-3f95-49c3-98f3-1e06f8917a4b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "6d4af1e6-1616-40b6-ab2e-289bd6b4551f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020139Z:6d4af1e6-1616-40b6-ab2e-289bd6b4551f" ], + "x-ms-correlation-request-id": [ "58dd9e07-ed21-46a0-bc70-6816f9f26512" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000408Z:58dd9e07-ed21-46a0-bc70-6816f9f26512" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89F2B089F0414A65807FFD421AEEB1F7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:00:57Z" ], - "Date": [ "Fri, 14 Nov 2025 02:01:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35A0D433FBB44E2AAABD52741DE7932F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:03:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8502" ], + "Content-Length": [ "8491" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:00:58.58\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"repositorySiteName\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"functions-dotnet-isolatedhfo7435u8j.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolatedhfo7435u8j.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-isolatedhfo7435u8j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:03:28.56\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-Isolatedhfo7435u8j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-DotNet-Isolatedhfo7435u8j\\\\$Functions-DotNet-Isolatedhfo7435u8j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?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-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "785" ], - "x-ms-client-request-id": [ "16cc4de1-d4e5-4822-a970-eeaf89edcac3" ], + "x-ms-unique-id": [ "784" ], + "x-ms-client-request-id": [ "96b98882-997b-4e28-ad1f-44bd721a3ca8" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10439,38 +10439,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A9D136480\"" ], + "ETag": [ "\"1DC55C35D1FFCB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d56d034e-16de-45ca-afa3-e9c1b9cc7c2a" ], + "x-ms-request-id": [ "7b105a45-e618-4d72-b1e8-09136c43ac78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd838ddf-1629-4125-8c47-8878befa16f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020209Z:bd838ddf-1629-4125-8c47-8878befa16f6" ], + "x-ms-correlation-request-id": [ "69e439a8-fc27-4cf0-a803-809aa35589ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000438Z:69e439a8-fc27-4cf0-a803-809aa35589ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9C4CACA0E564509A4C2D5E4D5FDD861 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:09Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6475DB6C3DB645ECBD1B075CECF26C17 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"repositorySiteName\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"functions-dotnet-isolatedhfo7435u8j.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolatedhfo7435u8j.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-isolatedhfo7435u8j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:04:08.3633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolatedhfo7435u8j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-DotNet-Isolatedhfo7435u8j\\\\$Functions-DotNet-Isolatedhfo7435u8j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "786" ], - "x-ms-client-request-id": [ "cc6f4c28-a88f-4db3-8acc-4b6880f4a0f4" ], + "x-ms-unique-id": [ "785" ], + "x-ms-client-request-id": [ "aadb644d-2b80-4358-8c63-57a03bb82bff" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10485,38 +10485,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A9D136480\"" ], + "ETag": [ "\"1DC55C35D1FFCB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8434c34e-83ab-4488-b84a-9d70e774dc85" ], + "x-ms-request-id": [ "893895f7-cf3c-4300-b604-35e7ef953d45" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c16d4743-1e8a-4a09-adda-462fec801e9c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020209Z:c16d4743-1e8a-4a09-adda-462fec801e9c" ], + "x-ms-correlation-request-id": [ "effcfae8-5ef0-4b24-a893-045a681d8769" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000439Z:effcfae8-5ef0-4b24-a893-045a681d8769" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C74102526FC4532BD3199FC397C74CA Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:09Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF9C2DE6891A4BB4853D30F8ACB1F7B4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"repositorySiteName\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"functions-dotnet-isolatedhfo7435u8j.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolatedhfo7435u8j.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-isolatedhfo7435u8j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:04:08.3633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolatedhfo7435u8j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-DotNet-Isolatedhfo7435u8j\\\\$Functions-DotNet-Isolatedhfo7435u8j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "787" ], - "x-ms-client-request-id": [ "b8cf74ad-ff19-470d-9f6e-45b143e3919d" ], + "x-ms-unique-id": [ "786" ], + "x-ms-client-request-id": [ "6cf33646-b64c-4a25-a3c2-2a7c9bef692a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10532,36 +10532,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2980bb3e-928e-47b8-b326-42a4aff67be8" ], + "x-ms-request-id": [ "7cb530ce-cb93-436c-9af0-1166b5714740" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f815a06-b3a2-4a39-b5a0-180170b4a453" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4f7bf87-2b56-416a-87fd-45899929cc6a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6966c755-4bcf-4732-a5e5-70ce2297127e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020210Z:6966c755-4bcf-4732-a5e5-70ce2297127e" ], + "x-ms-correlation-request-id": [ "2ecf0c44-c255-4393-a362-4fcd13dac113" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000439Z:2ecf0c44-c255-4393-a362-4fcd13dac113" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A17C1B93BAA43E9B9E64E77B01BF261 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:09Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D40B64D164A47F88C1A7A2518C5EF31 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "788" ], - "x-ms-client-request-id": [ "67fc5535-0195-48b6-b497-1ec32250064c" ], + "x-ms-unique-id": [ "787" ], + "x-ms-client-request-id": [ "6e5a13de-aec8-4ed5-b4d9-eddd4064957d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10577,37 +10577,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cce4b308-2942-4d45-b551-3a3e67093eaf" ], + "x-ms-request-id": [ "1e53a6e3-d7b3-46ed-ad0f-d40c4b51cf4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f862046e-5114-4a86-b8bc-580ea60aa30d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7495c85-30c0-425b-b396-58a212ab8ccd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "69664aca-e048-4cec-bd3f-c74af2af0a9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020210Z:69664aca-e048-4cec-bd3f-c74af2af0a9f" ], + "x-ms-correlation-request-id": [ "06e634df-9601-43f3-bd77-bed6b6426b65" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000440Z:06e634df-9601-43f3-bd77-bed6b6426b65" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 84A6B7DD554F46BBB43B0FAE2E39E85D Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:10Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38D6DA67282A459A90277D93C6A7AA27 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "789" ], - "x-ms-client-request-id": [ "37ade602-3005-4e22-9bcf-8b93fe8a92b3" ], + "x-ms-unique-id": [ "788" ], + "x-ms-client-request-id": [ "8b993aa0-608e-49a5-a45f-a9e25346772b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10623,36 +10623,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de5adc43-a38e-4955-a827-b2f0b09bd86e" ], + "x-ms-request-id": [ "5287132f-d672-4ce2-b09d-72bb26d7b770" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fd1de272-3d31-429d-b713-bdf7bbc87d02" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44e11f78-e411-4cb8-ba0f-7128412f9acb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "deb2db79-7dd0-40c9-ac8a-9fc8f294b43d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020210Z:deb2db79-7dd0-40c9-ac8a-9fc8f294b43d" ], + "x-ms-correlation-request-id": [ "b8b9f1b0-ec4b-4a15-8c67-c31540ce8db9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000440Z:b8b9f1b0-ec4b-4a15-8c67-c31540ce8db9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3222951CA86545F490DAD4B416213A07 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:10Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AAC4D6BC24144476A5AB5100EA0431A9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "790" ], - "x-ms-client-request-id": [ "2d533ec8-27f6-4186-837f-66d53d277d11" ], + "x-ms-unique-id": [ "789" ], + "x-ms-client-request-id": [ "16dcf4c0-8a32-484c-b70c-e015a7ba19f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10667,38 +10667,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A9D136480\"" ], + "ETag": [ "\"1DC55C35D1FFCB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "568e56d0-4650-4481-b7f1-e507156ecd9f" ], + "x-ms-request-id": [ "63174a32-81fc-4f28-92fe-c5a1197e3483" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f1c56fa5-42b3-4c24-a8a7-e7bff2d36184" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020211Z:f1c56fa5-42b3-4c24-a8a7-e7bff2d36184" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4da78f5d-a9ea-4e06-8789-f4cfee5a7593" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000440Z:4da78f5d-a9ea-4e06-8789-f4cfee5a7593" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 532FC811B90E4E18B8DA92170A96EE38 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:10Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13233815C8784E129971B67C83F0DA1B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"repositorySiteName\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"functions-dotnet-isolatedhfo7435u8j.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolatedhfo7435u8j.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-isolatedhfo7435u8j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:04:08.3633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolatedhfo7435u8j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-DotNet-Isolatedhfo7435u8j\\\\$Functions-DotNet-Isolatedhfo7435u8j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "791" ], - "x-ms-client-request-id": [ "e2bfa34e-25d3-4766-8a28-dbfec34a8581" ], + "x-ms-unique-id": [ "790" ], + "x-ms-client-request-id": [ "b815951f-65c0-4b20-be66-ac7b821ba3bb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10714,36 +10714,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5b0b311-c806-4661-a7ef-ed47c9c2bdaf" ], + "x-ms-request-id": [ "2188bdf3-7fc4-46a7-aca8-0ca839cd6583" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d897afc6-bfeb-48eb-8e55-8fe7305de844" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ff9272b-ce7e-47d6-a69e-030e1a5c87ee" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7f57f7cb-8a57-4d36-b51e-c71231600bca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020211Z:7f57f7cb-8a57-4d36-b51e-c71231600bca" ], + "x-ms-correlation-request-id": [ "3961b0c0-45c9-4a32-91f0-20fd8926ec2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000441Z:3961b0c0-45c9-4a32-91f0-20fd8926ec2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B5EFFAE57F144169386B15A481F6F08 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:11Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFB6596C526D40028F3281A77D8B741D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "792" ], - "x-ms-client-request-id": [ "b292cc2f-d472-4837-b3e7-51883a626ba4" ], + "x-ms-unique-id": [ "791" ], + "x-ms-client-request-id": [ "c39e3e97-1ebf-4d18-938b-4928005abe35" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10759,37 +10759,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a94003c6-e667-4776-8008-9a8a85b098f3" ], + "x-ms-request-id": [ "a633ef7b-077d-4e91-aac3-a449024c7165" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcd11cba-b914-4b46-b59f-675e154edf58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cf5be93-015e-4cf0-8e61-037cbd4aafd2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4ddd5a87-bb94-40b6-a24f-ff7dc389b5b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020211Z:4ddd5a87-bb94-40b6-a24f-ff7dc389b5b5" ], + "x-ms-correlation-request-id": [ "d7b98484-356d-4a2c-aaef-bcca89ca8486" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000441Z:d7b98484-356d-4a2c-aaef-bcca89ca8486" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4ABD869E8EBE4C7581B5D28AB7BA3E81 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:11Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCF1CD30CA63483DB339AD8D8C246C80 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "793" ], - "x-ms-client-request-id": [ "21f989b3-d0ad-4e23-9292-d8b8ab6556bf" ], + "x-ms-unique-id": [ "792" ], + "x-ms-client-request-id": [ "8a5f02bc-c540-4406-acb1-a1a6b34dde21" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10804,38 +10804,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A9D136480\"" ], + "ETag": [ "\"1DC55C35D1FFCB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "300fb1c4-eec9-46fd-99cb-08a2d03004dd" ], + "x-ms-request-id": [ "ca5219e1-550e-4ee1-9ad8-b97410f6d268" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "81b6f71a-7c91-45f8-b2e6-4839c1827808" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020212Z:81b6f71a-7c91-45f8-b2e6-4839c1827808" ], + "x-ms-correlation-request-id": [ "c990b761-7669-41d3-951f-fa970d83227b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000441Z:c990b761-7669-41d3-951f-fa970d83227b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7BD87C14AB7463DBF54CDDB05AA2F5F Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:11Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6DADE06E83340B3A44265C3C7552C71 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8476" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-DotNet-Isolateduhnte46q0o\",\"repositorySiteName\":\"Functions-DotNet-Isolateduhnte46q0o\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"functions-dotnet-isolateduhnte46q0o.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolateduhnte46q0o.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-isolateduhnte46q0o.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:01:38.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolateduhnte46q0o\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-DotNet-Isolateduhnte46q0o\\\\$Functions-DotNet-Isolateduhnte46q0o\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-dotnet-isolateduhnte46q0o.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-DotNet-Isolatedhfo7435u8j\",\"repositorySiteName\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"functions-dotnet-isolatedhfo7435u8j.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolatedhfo7435u8j.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-isolatedhfo7435u8j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:04:08.3633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-Isolatedhfo7435u8j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-DotNet-Isolatedhfo7435u8j\\\\$Functions-DotNet-Isolatedhfo7435u8j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-dotnet-isolatedhfo7435u8j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "794" ], - "x-ms-client-request-id": [ "f00c74c7-c9d2-43d1-b15d-80abd6a3dea8" ], + "x-ms-unique-id": [ "793" ], + "x-ms-client-request-id": [ "8c09cfff-cd90-49bf-b457-27431a8b54d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10851,36 +10851,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2142919b-8589-43af-bb9c-7ac236d9265d" ], + "x-ms-request-id": [ "d55aaf79-3b5a-4972-a526-dc400c6fb395" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e70c3ce5-043d-422e-af63-73b9c8cf5e44" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32f522a3-a63b-4e5b-9c88-c0a6d0b859eb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5f0df9e1-23cf-4cdf-9217-b104bc86ff6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020212Z:5f0df9e1-23cf-4cdf-9217-b104bc86ff6c" ], + "x-ms-correlation-request-id": [ "d1d5fef9-a234-44a3-9acd-7788a382afc7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000442Z:d1d5fef9-a234-44a3-9acd-7788a382afc7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 123D142BA995432C95F43AE7B2AEAECD Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:12Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24B527FC77DD436E86A6686EF4DE0105 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateduhnte46q0o\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "795" ], - "x-ms-client-request-id": [ "9a914880-3295-4663-a53b-e18e4bb8e1bb" ], + "x-ms-unique-id": [ "794" ], + "x-ms-client-request-id": [ "9cd9e7fd-6cf5-4ec4-a353-f9a8b024188a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10896,37 +10896,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "262f820f-1ca2-44ed-b5e2-fefb8194a76b" ], + "x-ms-request-id": [ "6fac0dae-1d16-4d96-8911-f1c147566cde" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c77dfad8-df0a-4963-83b4-b885d1476b1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af13935e-ccdd-435f-bb35-f1aa13bf6acc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff7f1183-4a75-4db2-8ffa-cd062bbb8e7e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020212Z:ff7f1183-4a75-4db2-8ffa-cd062bbb8e7e" ], + "x-ms-correlation-request-id": [ "1ae357ee-f6bf-4521-8a6e-8f3a7eb4e856" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000442Z:1ae357ee-f6bf-4521-8a6e-8f3a7eb4e856" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06CA57E052284ADF977DF0E18B77D06E Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:12Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D70C5F1539CD4C58AF9BB470B5DAB5EB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o/config/web\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/config/web\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "796" ], - "x-ms-client-request-id": [ "5a3adc3b-0b72-465a-87df-81e2ffc3e256" ], + "x-ms-unique-id": [ "795" ], + "x-ms-client-request-id": [ "f05b52ed-e29a-492b-a36b-fb588dd343b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10942,36 +10942,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6241d39b-cb1b-4d23-ab56-e02367e1ff43" ], + "x-ms-request-id": [ "8daa0489-5c3a-4006-adf3-b005dfe95833" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f28c22c3-e179-4cda-8596-b26cd2a2a80c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020213Z:f28c22c3-e179-4cda-8596-b26cd2a2a80c" ], + "x-ms-correlation-request-id": [ "6b53e66e-4dc8-470b-bc27-ce56c01e7d8c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000442Z:6b53e66e-4dc8-470b-bc27-ce56c01e7d8c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C0931345E7D41158FE785B7166894E2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:12Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9162D251F7D45B2B5A1A237F839C4A4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-DotNet-Isolateduhnte46q0o?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "797" ], - "x-ms-client-request-id": [ "81c8bd68-cd7e-4937-be3c-1ea9e77ab9c4" ], + "x-ms-unique-id": [ "796" ], + "x-ms-client-request-id": [ "cd02df00-f16a-4786-9ae1-89482d7512cd" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -10986,20 +10986,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550A9D136480\"" ], + "ETag": [ "\"1DC55C35D1FFCB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8149254c-e80e-4cd1-9c60-42d8645b917d" ], + "x-ms-request-id": [ "e87ddd2e-130e-463c-ad2f-b47da0d8911d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa6f227e-e00a-4370-897a-46c5444e3f45" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c24aeb82-ce46-4870-ba6b-243a7ad12b1b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020221Z:c24aeb82-ce46-4870-ba6b-243a7ad12b1b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f377d80a-ff99-4253-ac10-697e3cbf9686" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "db554c9a-9539-4a4e-b002-e69f99d2a04f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000450Z:db554c9a-9539-4a4e-b002-e69f99d2a04f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75DA5745FE8C4253B3227953C4F7F5F1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:13Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B89F27462AEB4179A1023E01AF2F1C60 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11013,7 +11013,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-CustomHandleri5nz8vgkem\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomHandler325nikcosm\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11028,18 +11028,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c04d28f-011c-4b69-86d3-b1316da106eb" ], + "x-ms-request-id": [ "a12453aa-9529-48cd-a545-1858845d3b0d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d08c12c-906e-4697-8622-be005775a56e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d43f0705-c2d6-4181-aba2-584cb682bf66" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d485f8b9-304b-4d0b-9cb0-1a067baa7daf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020221Z:d485f8b9-304b-4d0b-9cb0-1a067baa7daf" ], + "x-ms-correlation-request-id": [ "1c704e31-67f5-4e6e-a9ac-dc8826ba41f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000450Z:1c704e31-67f5-4e6e-a9ac-dc8826ba41f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45534549DD3C48119D4D2544BAAAF67B Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:21Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CB6E1A4E7F04D16A5D5BF36820AFA64 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11057,8 +11057,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "799" ], - "x-ms-client-request-id": [ "dab86db7-8633-422b-92ff-c7a56f08fa2a" ], + "x-ms-unique-id": [ "798" ], + "x-ms-client-request-id": [ "df58cc4e-5bdf-457f-b044-1967db69e09e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11073,36 +11073,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d1d8bf5d-475a-491c-ae48-67b735d8f3f1", "6bc2ae90-02aa-431a-9d65-dd445b599900" ], + "x-ms-original-request-ids": [ "d3a263f3-6acf-4b07-b9c5-880ce26f8d55", "8d2a6ca2-d675-4912-86aa-f730d839495d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d14c2039-766f-449e-b50d-5e60695ea72e" ], - "x-ms-correlation-request-id": [ "d14c2039-766f-449e-b50d-5e60695ea72e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020224Z:d14c2039-766f-449e-b50d-5e60695ea72e" ], + "x-ms-request-id": [ "a49abab9-6369-4164-9be9-031f2a55adb7" ], + "x-ms-correlation-request-id": [ "a49abab9-6369-4164-9be9-031f2a55adb7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000451Z:a49abab9-6369-4164-9be9-031f2a55adb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C3B7F8059A74074A54E1DEACC6BFA2C Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:21Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 884F6E6F480B420FA5282B2A403D1C6D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11997" ], + "Content-Length": [ "13689" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508079,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "800" ], - "x-ms-client-request-id": [ "ad3c8844-f5c7-4bee-a213-d5d2b756dffe" ], + "x-ms-unique-id": [ "799" ], + "x-ms-client-request-id": [ "0c4b40e0-0c4c-4f68-8d22-cbb70aece950" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11118,36 +11118,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19371c6a-74ca-4c38-81ad-19bcbd2f35bf" ], + "x-ms-request-id": [ "d6498afb-a446-4193-bff8-8a2a6e481195" ], "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": [ "23aac843-e21c-4d25-80b9-49c776acdfa5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020224Z:23aac843-e21c-4d25-80b9-49c776acdfa5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "48a7d7a0-2867-46be-8dbf-cd952557fa74" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000451Z:48a7d7a0-2867-46be-8dbf-cd952557fa74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D89CA57307234ADAB8464D5C3BF8AF38 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C780C791E7C4AFFAFDABDA546DDE22F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "801" ], - "x-ms-client-request-id": [ "8de6948a-404a-4492-8c16-5a6007f6a193" ], + "x-ms-unique-id": [ "800" ], + "x-ms-client-request-id": [ "4a0406ea-6570-40fa-abd2-41ffff6a4671" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11163,36 +11163,81 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec817aa3-2e94-441c-83d8-9263c32c7bc6" ], + "x-ms-request-id": [ "d49c9c79-a878-4431-98a1-e7dfbd3786db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2ac5c7cd-bb98-44f3-9189-8da8ef47b0ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020224Z:2ac5c7cd-bb98-44f3-9189-8da8ef47b0ac" ], + "x-ms-correlation-request-id": [ "659c6604-9313-46a6-84ec-670aad0dda01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000452Z:659c6604-9313-46a6-84ec-670aad0dda01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 613454588DFE47E4B63D44CA2C844C5A Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C79127C415D4A1683A07DE0D1BB9B8F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "801" ], + "x-ms-client-request-id": [ "cf977a1b-6433-456b-81fe-e0cd88dd85c6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6b626bfd-1860-4d0c-bb03-1edc187c02c3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "56e3c7d8-096d-4384-86bf-546b2bbbc426" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000452Z:56e3c7d8-096d-4384-86bf-546b2bbbc426" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8A7618C27D2747C6B15FAFE75A5AE9D4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1758" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97020,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97020\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:04:22.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "802" ], - "x-ms-client-request-id": [ "05e037bc-8421-4664-8a72-464bf32311f2" ], + "x-ms-client-request-id": [ "fb307c99-158c-468a-acb6-62ccce785fae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11208,36 +11253,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f7be629c-b8b1-434c-9f84-b066f61ac20b" ], + "x-ms-request-id": [ "26ce01bb-071b-4777-bef3-2bbe66b25ef5" ], "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": [ "b1adf41b-1c2f-441b-b27d-42b038e527b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020224Z:b1adf41b-1c2f-441b-b27d-42b038e527b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7d05ee4c-1a37-4344-9edf-4c1a92283fcd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000452Z:7d05ee4c-1a37-4344-9edf-4c1a92283fcd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37C09BFE092342A38747E59337CD4220 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28331FEEDC304610B9CF07F2C30E3C6F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "803" ], - "x-ms-client-request-id": [ "20e9a379-b9a1-410f-9343-c1313fb9a608" ], + "x-ms-client-request-id": [ "b199c7f3-e16f-493b-bc8a-75b9d548928b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11253,36 +11298,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f927e08-a66e-4a0f-85c5-08b4fc9a01ce" ], + "x-ms-request-id": [ "89be4bab-c69d-4810-ba2a-ce2c9acca4d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93ba81be-bc23-475b-ba08-25ca961de64b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020225Z:93ba81be-bc23-475b-ba08-25ca961de64b" ], + "x-ms-correlation-request-id": [ "071d869d-149a-4f46-8d9b-f7a902ed4377" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000453Z:071d869d-149a-4f46-8d9b-f7a902ed4377" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB1B933C5F3E4FDDAB6D4E3E0EB83DE6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9770F0EB71754E7F8A171E4BC3679195 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "804" ], - "x-ms-client-request-id": [ "0ae04bcc-3607-419d-ad3a-a392c24bdf31" ], + "x-ms-client-request-id": [ "ee6efc49-4e4e-4421-934b-2b5311bc9424" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11298,36 +11343,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea195269-1c3f-4ccb-ba54-13b38b2c96ef" ], + "x-ms-request-id": [ "a5a81911-0eff-4748-a74a-b046345cb72e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9081a455-5e3e-478e-a043-12ce99e64738" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020225Z:9081a455-5e3e-478e-a043-12ce99e64738" ], + "x-ms-correlation-request-id": [ "6b894352-728f-4f13-9c8b-ce16832058d0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000453Z:6b894352-728f-4f13-9c8b-ce16832058d0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C16EF50858943D1B0321D0D705938F0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 669DCB773B2E4C0F95E1A69FD9418EAA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "805" ], - "x-ms-client-request-id": [ "87094b1b-de81-46cd-8824-1386adc9d7a1" ], + "x-ms-client-request-id": [ "c2cf0819-2351-4088-97df-c49aef61352f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11343,36 +11388,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "852bb61e-52a2-476f-9423-669ee750820e" ], + "x-ms-request-id": [ "c5e3deb0-addf-4ff1-9a91-ab0d9e22389a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "316b56ab-cc14-4147-893c-d6d87afbd523" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020225Z:316b56ab-cc14-4147-893c-d6d87afbd523" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c40b7308-2448-495d-8c25-d38d437e11cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000453Z:c40b7308-2448-495d-8c25-d38d437e11cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 898BB64A5AD84813A3269895D3D70FA0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9A8CA0B04DB40F2B171D89B5E111382 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "806" ], - "x-ms-client-request-id": [ "b143e622-fb5a-4d1c-beaa-c95ac989cb9c" ], + "x-ms-client-request-id": [ "aaac4ee4-7fd8-461c-b14f-beb1f75d4cbe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11388,28 +11433,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72de5972-1c4b-4e19-9521-d7c150007bdb" ], + "x-ms-request-id": [ "64b742a8-fc4a-46ee-9977-dec8c6d11a07" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "86122667-b847-45a5-a764-be51edfad5dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020226Z:86122667-b847-45a5-a764-be51edfad5dd" ], + "x-ms-correlation-request-id": [ "9eff9017-bedf-4574-9433-a852ba4d0922" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000454Z:9eff9017-bedf-4574-9433-a852ba4d0922" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8F53C1106CE4189A52C4EB213DFD8FE Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCF3CE25A1F140358A61D325655E2C10 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", @@ -11417,7 +11462,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "807" ], - "x-ms-client-request-id": [ "8c54301a-6180-4b18-9277-f65a8923e5f8" ], + "x-ms-client-request-id": [ "d58404c3-dd82-4e25-a722-0186ddd56271" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11432,36 +11477,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3a98f7fd-d6b7-416d-9f6f-b5fc3ffc2fd1", "19ecb088-b0cc-40bc-8ce2-3119d3a9f5bb", "735ed08c-c703-4ae2-9c86-5604c056abfa" ], + "x-ms-original-request-ids": [ "82cec851-04b1-45d6-a41d-edd3df9f194e", "4ec82c2e-b522-4f88-a4ba-3c9f60eec350", "8218225a-9578-4f4d-8832-b52b975a945e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "647197de-c51a-4ecb-995b-7175a23788b8" ], - "x-ms-correlation-request-id": [ "647197de-c51a-4ecb-995b-7175a23788b8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T020227Z:647197de-c51a-4ecb-995b-7175a23788b8" ], + "x-ms-request-id": [ "6ed4f48d-e24d-4b32-9d1c-349496924e6a" ], + "x-ms-correlation-request-id": [ "6ed4f48d-e24d-4b32-9d1c-349496924e6a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T000455Z:6ed4f48d-e24d-4b32-9d1c-349496924e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3509B49EA04A4727AE4ACADD7142A357 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:27Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D9E1426881D436EB7B76E21C023B494 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:54Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "808" ], - "x-ms-client-request-id": [ "27795b20-0c07-47c5-89d0-dc78ca02666c" ], + "x-ms-client-request-id": [ "332c7b42-8c31-4edc-b4b0-384f5fa5843b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11476,30 +11521,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4b76dc0b-7a2b-4f7e-9533-f48ee0c5ec77" ], + "x-ms-request-id": [ "a37eeed3-2929-4c2b-85f4-43aedf1c30cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8af66641-f280-4b36-8e3e-4f8a6f758f8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/75005c7a-cf5f-406e-9505-3bffee155d84" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2b48b589-b469-4065-80cd-374ceff85da8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020227Z:2b48b589-b469-4065-80cd-374ceff85da8" ], + "x-ms-correlation-request-id": [ "49d5b37d-63dc-4043-b19e-eb4fe0acb05b" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000455Z:49d5b37d-63dc-4043-b19e-eb4fe0acb05b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4523993F739B498D91D712F13B89E943 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:27Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBE81523309344A58E7BF279A674B900 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:55Z" ], + "Date": [ "Sat, 15 Nov 2025 00:04:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Functions-CustomHandleri5nz8vgkem?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-CustomHandler325nikcosm?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Functions-CustomHandleri5nz8vgkem?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Functions-CustomHandler325nikcosm?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -11519,30 +11564,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a22e1542-8788-4922-96b1-ea74ccbd8843" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4bd4fcd8-e65a-4cd8-b770-1953515dc2d2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "4a684ad0-9ca3-48b4-96f6-5825bf7ee96d" ], - "x-ms-correlation-request-id": [ "4a684ad0-9ca3-48b4-96f6-5825bf7ee96d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020233Z:4a684ad0-9ca3-48b4-96f6-5825bf7ee96d" ], + "x-ms-request-id": [ "82e3e52d-7c2f-46f5-80a7-aabc285e2c49" ], + "x-ms-correlation-request-id": [ "82e3e52d-7c2f-46f5-80a7-aabc285e2c49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000501Z:82e3e52d-7c2f-46f5-80a7-aabc285e2c49" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B67E8DC4CBC4DD1B765A6E4F52CE930 Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:02:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C74FBAF1CF264FD6A84834F5D8319121 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:04:55Z" ], + "Date": [ "Sat, 15 Nov 2025 00:05:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1672" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0907b6de-0000-0300-0000-69168db80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-CustomHandleri5nz8vgkem\",\r\n \"name\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"AppId\": \"06745c29-799b-43b3-b8c9-54843eeb4670\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f372138b-4ab7-40fd-b010-fee6cc2bb239\",\r\n \"ConnectionString\": \"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\",\r\n \"Name\": \"Functions-CustomHandleri5nz8vgkem\",\r\n \"CreationDate\": \"2025-11-14T02:02:28.5948796+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-customhandleri5nz8vgkem_06745c29-799b-43b3-b8c9-54843eeb4670_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandleri5nz8vgkem-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\": \"\\\"30005779-0000-0300-0000-6917c3ad0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-CustomHandler325nikcosm\",\r\n \"name\": \"Functions-CustomHandler325nikcosm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandler325nikcosm\",\r\n \"AppId\": \"6cb10d77-b206-4054-875d-5578f21336b7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77\",\r\n \"ConnectionString\": \"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\",\r\n \"Name\": \"Functions-CustomHandler325nikcosm\",\r\n \"CreationDate\": \"2025-11-15T00:04:56.5740499+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-customhandler325nikcosm_6cb10d77-b206-4054-875d-5578f21336b7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandler325nikcosm-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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandleri5nz8vgkem\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"\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-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandler325nikcosm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -11556,39 +11601,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550ABEC9414B\"" ], + "ETag": [ "\"1DC55C37E12074B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3897a49f-266a-4734-91ba-c4df0aa695e7" ], + "x-ms-request-id": [ "85e6d4dc-8ada-45cd-be8b-dadfc5cf3908" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3044eb5e-3ee2-41ef-9142-2d68b9217d7f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0409155f-b2cd-4f99-b15f-db1684fa3cfc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "df5a20cc-9bee-4e7f-ba8f-803c45980646" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020316Z:df5a20cc-9bee-4e7f-ba8f-803c45980646" ], + "x-ms-correlation-request-id": [ "a4b83517-0b8d-408d-83b2-2e45496f3bb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000543Z:a4b83517-0b8d-408d-83b2-2e45496f3bb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 170E284485484C09971D6987A6A76C0C Ref B: MWH011020806052 Ref C: 2025-11-14T02:02:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14C545D520F149098578E9AF34D48620 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:05:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:05:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8479" ], + "Content-Length": [ "8468" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:02:34.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandler325nikcosm\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-CustomHandler325nikcosm\",\"repositorySiteName\":\"Functions-CustomHandler325nikcosm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\",\"functions-customhandler325nikcosm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandler325nikcosm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:05:02.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandler325nikcosm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-CustomHandler325nikcosm\\\\$Functions-CustomHandler325nikcosm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?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-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "811" ], - "x-ms-client-request-id": [ "603caf6e-ce7d-4c4b-b5c1-a1e6e14a1af7" ], + "x-ms-client-request-id": [ "7b57efc4-cfa2-40d1-98d0-ed2fc6333555" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11602,38 +11647,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550AD72DA900\"" ], + "ETag": [ "\"1DC55C395C15CD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19c7401b-8f3f-46a0-8f4a-5f19ac845771" ], + "x-ms-request-id": [ "b75d2cf7-a469-446b-8f74-3c876e9d9075" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e01a365d-5bab-46fc-aaae-a5b72dd21e91" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020346Z:e01a365d-5bab-46fc-aaae-a5b72dd21e91" ], + "x-ms-correlation-request-id": [ "6f22074b-0680-4921-b7b9-0d7235864028" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000614Z:6f22074b-0680-4921-b7b9-0d7235864028" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0113889A72984F5C9543DD1397DC52D5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3599B6E10E994115874C450EE3BEF3DE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8448" ], + "Content-Length": [ "8442" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandler325nikcosm\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-CustomHandler325nikcosm\",\"repositorySiteName\":\"Functions-CustomHandler325nikcosm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\",\"functions-customhandler325nikcosm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandler325nikcosm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:05:43.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandler325nikcosm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-CustomHandler325nikcosm\\\\$Functions-CustomHandler325nikcosm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "812" ], - "x-ms-client-request-id": [ "174d49d4-7647-4426-aac3-7376f348ba35" ], + "x-ms-client-request-id": [ "d10f0349-a10a-40e7-95c8-1d2638027961" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11648,38 +11693,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550AD72DA900\"" ], + "ETag": [ "\"1DC55C395C15CD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c470914-c83f-4965-84a8-156496a2dacb" ], + "x-ms-request-id": [ "f8520677-9769-4c8e-ac64-a19b355ed125" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8f97749-6fd1-4b52-9459-d5d22cc3ae75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020347Z:c8f97749-6fd1-4b52-9459-d5d22cc3ae75" ], + "x-ms-correlation-request-id": [ "a8bb74db-7a26-44d2-9dfa-adaf804ab373" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000614Z:a8bb74db-7a26-44d2-9dfa-adaf804ab373" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDCDE0DC7D74455EBA6DA2BC67876677 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E42918B07FEF4F59990856D4DC654D90 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8448" ], + "Content-Length": [ "8442" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandler325nikcosm\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-CustomHandler325nikcosm\",\"repositorySiteName\":\"Functions-CustomHandler325nikcosm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\",\"functions-customhandler325nikcosm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandler325nikcosm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:05:43.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandler325nikcosm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-CustomHandler325nikcosm\\\\$Functions-CustomHandler325nikcosm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "813" ], - "x-ms-client-request-id": [ "e201c48e-1d43-4517-95a8-4e18597cbaba" ], + "x-ms-client-request-id": [ "1c7bc735-ff84-41f8-9d13-ba4d6d432def" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11695,36 +11740,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0da20589-3360-4daf-88a2-c3d98dafe422" ], + "x-ms-request-id": [ "9f2b22df-0f8b-4b9d-a4a6-ab7e96f1ed91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93699ba7-f5da-4d4f-a502-fca9e4eaa631" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/adb10d49-9c04-4bea-b598-23e661ca6d18" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "187c4f46-23e6-4ffd-8251-3ca2f4104ed6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020347Z:187c4f46-23e6-4ffd-8251-3ca2f4104ed6" ], + "x-ms-correlation-request-id": [ "534356ea-ce94-4b75-b674-331cde04255f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000614Z:534356ea-ce94-4b75-b674-331cde04255f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D2B24A97C564684888340F2D22C84D7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9964080F4234815808699AB38715FD1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "814" ], - "x-ms-client-request-id": [ "e827b588-000b-4d37-b231-36cb3fe308a3" ], + "x-ms-client-request-id": [ "7139a544-0f4a-49db-95cb-721df5522fc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11740,37 +11785,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4229fc08-499f-4e3b-a591-4015c44cec63" ], + "x-ms-request-id": [ "cc61cdb9-74f7-4ade-8fc1-064612296866" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/100aa6ac-a7f1-4048-8b9e-70dd8e8a3592" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45b7021d-b0a9-451c-a96a-863300988989" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b311e28a-64b1-4805-8bbe-051660d3f69e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020347Z:b311e28a-64b1-4805-8bbe-051660d3f69e" ], + "x-ms-correlation-request-id": [ "e7bc3767-18da-450f-a4b6-ddaa2d6aa732" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000615Z:e7bc3767-18da-450f-a4b6-ddaa2d6aa732" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AA1A5840BB64CE6BF2919E6B9C740FC Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF6F6998BA604EB3B3C72493A5CF70F7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites/config\",\"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-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites/config\",\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "815" ], - "x-ms-client-request-id": [ "22680085-9c46-4be0-b90b-fab5aa896915" ], + "x-ms-client-request-id": [ "9a1b9eda-b313-41d9-b1c1-e16fd362030b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11786,36 +11831,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d49bf282-1ed8-4974-ad83-95d33b180f6d" ], + "x-ms-request-id": [ "18f167ea-0ff4-402e-99e1-c0b8ff9f77cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/676c551e-7a3b-4c1c-be53-d317ec1e4735" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67e6bc3f-0c3f-412c-a728-a2b98e133581" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1b6724fa-c099-4720-8461-fd55ce4fb214" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020348Z:1b6724fa-c099-4720-8461-fd55ce4fb214" ], + "x-ms-correlation-request-id": [ "a04d09ff-3959-4ef9-8fa0-f49c6c659cce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000615Z:a04d09ff-3959-4ef9-8fa0-f49c6c659cce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6088F6F4571C44C5A05C2A97F245C9BC Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A76806AF78BD4976A427F85BD98FEAB8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "816" ], - "x-ms-client-request-id": [ "98b5e3ee-f8e4-4f93-86d3-5a116d311259" ], + "x-ms-client-request-id": [ "052203b7-689e-466c-b276-fd95783c5ec2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11830,38 +11875,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550AD72DA900\"" ], + "ETag": [ "\"1DC55C395C15CD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9d37564e-59a2-48ba-b3fe-dfc494e2ca29" ], + "x-ms-request-id": [ "4cd17c3e-9bb9-493b-933b-58f2a1c69fca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8c8e56e3-f942-4459-a6f8-00d30c349f95" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020348Z:8c8e56e3-f942-4459-a6f8-00d30c349f95" ], + "x-ms-correlation-request-id": [ "b85ed587-85a8-444b-a1bd-2af4b2abff38" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000615Z:b85ed587-85a8-444b-a1bd-2af4b2abff38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE37B32B9C9D426DA6E738C943812D4A Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B63DC0650E84B42BC7A71F4AB44F3FC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8448" ], + "Content-Length": [ "8442" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandler325nikcosm\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-CustomHandler325nikcosm\",\"repositorySiteName\":\"Functions-CustomHandler325nikcosm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\",\"functions-customhandler325nikcosm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandler325nikcosm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:05:43.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandler325nikcosm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-CustomHandler325nikcosm\\\\$Functions-CustomHandler325nikcosm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "817" ], - "x-ms-client-request-id": [ "9caea8f3-abe7-4135-93c5-6916824b087b" ], + "x-ms-client-request-id": [ "e9132384-15a9-416e-beb0-3f4cd760c915" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11877,36 +11922,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e96284a7-ad3a-429b-9003-2576fd40bc40" ], + "x-ms-request-id": [ "b019530c-ca13-40d6-bc50-723262ec4ff6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8be59c38-8004-47a0-9ba1-b5868bbf256d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a9fe4b7-f7a8-4aad-a702-2815a65d9718" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ca16b4b6-7f8f-4e82-9607-1099ec014926" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020348Z:ca16b4b6-7f8f-4e82-9607-1099ec014926" ], + "x-ms-correlation-request-id": [ "52723c28-a329-4734-9c97-2352684f8ffa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000616Z:52723c28-a329-4734-9c97-2352684f8ffa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0D268B8D44D4047A01BB0C6A1BE5650 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E249AECC0A3040D9B682BA41D58C3BE5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "818" ], - "x-ms-client-request-id": [ "89c45747-a47d-4885-bc18-3ebbd2db0a02" ], + "x-ms-client-request-id": [ "0f1c4668-8139-4d21-8e9a-8e9ebe26b437" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11922,37 +11967,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8c3f4da-d2b3-45d2-804e-4b6751082668" ], + "x-ms-request-id": [ "e3a36689-a437-4933-813d-0934ae8ee0b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57258e5e-4b74-4cca-a735-b1c05bed155d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d11e247b-f588-42da-925d-40559280e2d2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "062310ac-1121-4620-a416-4452104b3907" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020349Z:062310ac-1121-4620-a416-4452104b3907" ], + "x-ms-correlation-request-id": [ "472c2c90-b58c-4299-87e2-d0f845e1235a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000617Z:472c2c90-b58c-4299-87e2-d0f845e1235a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3ED8EF2A43374ABC9A002B14763713EE Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2422328D1C2415FB8A82A42BBA0BA9B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites/config\",\"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-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "819" ], - "x-ms-client-request-id": [ "33f1e5f8-adc2-4d05-9843-ef45b9450ec8" ], + "x-ms-client-request-id": [ "ab0e6eff-1782-4a6c-818d-d3333229c9db" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -11967,38 +12012,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550AD72DA900\"" ], + "ETag": [ "\"1DC55C395C15CD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2cb9072b-52f9-4867-bb52-03a8b1b679bc" ], + "x-ms-request-id": [ "18b0bc09-dc6b-4ff9-9d37-98eeb59cc79a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aef16c20-d08e-4581-96c8-2171f4ca2749" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020349Z:aef16c20-d08e-4581-96c8-2171f4ca2749" ], + "x-ms-correlation-request-id": [ "e4dd801f-0be7-40a5-9b2b-6d3c30cab007" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000617Z:e4dd801f-0be7-40a5-9b2b-6d3c30cab007" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49F84862DCFE44099F8516D9E87B5545 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D18798991C9D4315876CF819C2A9DB24 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8448" ], + "Content-Length": [ "8442" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-CustomHandleri5nz8vgkem\",\"repositorySiteName\":\"Functions-CustomHandleri5nz8vgkem\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleri5nz8vgkem.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:03:16.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleri5nz8vgkem\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-CustomHandleri5nz8vgkem\\\\$Functions-CustomHandleri5nz8vgkem\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-customhandleri5nz8vgkem.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandler325nikcosm\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-CustomHandler325nikcosm\",\"repositorySiteName\":\"Functions-CustomHandler325nikcosm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandler325nikcosm.azurewebsites.net\",\"functions-customhandler325nikcosm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandler325nikcosm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:05:43.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandler325nikcosm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-CustomHandler325nikcosm\\\\$Functions-CustomHandler325nikcosm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-customhandler325nikcosm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "820" ], - "x-ms-client-request-id": [ "049c8670-31ad-42c5-a2c6-548ff1afe4fc" ], + "x-ms-client-request-id": [ "9fafa0a1-8f70-466b-8ec5-a6db16a11f18" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12014,36 +12059,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f61d4bc9-2fb5-4462-9072-22d93439c8d2" ], + "x-ms-request-id": [ "19691de9-5a78-46c7-83ac-cadf336e0404" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5cfcde7-e621-495f-af3f-5d6646c30b53" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7f6a3de-1900-48e2-af61-1abd9fa05b89" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d2eb32fa-6007-4ffd-9d91-8e78b48cb1a1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020349Z:d2eb32fa-6007-4ffd-9d91-8e78b48cb1a1" ], + "x-ms-correlation-request-id": [ "46369dfc-fa48-4bfb-be48-2d158f531611" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000617Z:46369dfc-fa48-4bfb-be48-2d158f531611" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1737386B7273427AAD39ED06AD5B86FE Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AD804182ABD4139A1C91193FDB3D5D7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleri5nz8vgkem\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "821" ], - "x-ms-client-request-id": [ "6b71b5e5-712b-421e-9071-f3bd5fe87500" ], + "x-ms-client-request-id": [ "701f8174-4272-48c5-8573-2fd681d8c2df" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12059,37 +12104,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fbeb0f0-4397-4de5-b71e-c60b3a49b2cc" ], + "x-ms-request-id": [ "2a29af7d-7929-45bd-b3ea-be8331a22a45" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9fab3c64-74d3-46f1-a863-d1d244209c52" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8ff97183-3052-41c4-9f21-3d91cdf86505" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d6812723-b930-4e44-88bc-16e79a71b258" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020350Z:d6812723-b930-4e44-88bc-16e79a71b258" ], + "x-ms-correlation-request-id": [ "5cf73106-4da9-4e56-a0c1-97ddfde2c099" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000618Z:5cf73106-4da9-4e56-a0c1-97ddfde2c099" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08153A290A7C47C7B4EAF32F21767D5D Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C616B679B4B4AA0A6874F344201F894 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem/config/web\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"Microsoft.Web/sites/config\",\"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-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/web\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "822" ], - "x-ms-client-request-id": [ "177067dd-d314-4930-810a-018aba0f78b9" ], + "x-ms-client-request-id": [ "0abfc698-70e9-4156-b6b2-8534929981cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12105,36 +12150,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "236e98d5-c6e6-4c80-a754-b5821de35156" ], + "x-ms-request-id": [ "c2b847d8-0b14-4418-ad35-16bdb9c6137f" ], "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": [ "1ebc8cce-f678-4bd5-8c59-7726e738dcae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020350Z:1ebc8cce-f678-4bd5-8c59-7726e738dcae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d01fcd63-28ce-4c41-9978-8196048a2f92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000618Z:d01fcd63-28ce-4c41-9978-8196048a2f92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D8BA0D6CABF45949042B795C9A02BF9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B99AF63BD184DC7AAFA255CB7ADF7DD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-ry1xpa/providers/Microsoft.Web/sites/Functions-CustomHandleri5nz8vgkem?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "823" ], - "x-ms-client-request-id": [ "acadbb6d-d28a-4dda-8864-90e589284f75" ], + "x-ms-client-request-id": [ "9fd92c14-a837-4765-9ef1-d5923781c0ce" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -12149,20 +12194,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550AD72DA900\"" ], + "ETag": [ "\"1DC55C395C15CD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4aaf20f-b068-454c-bd1b-96cca6b121ca" ], + "x-ms-request-id": [ "94630332-2098-49e8-9514-499880f98f21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3adf238d-ffa0-430c-b555-2b88cb6bb875" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2ad4a907-334d-4bc8-aecf-d7e777f4140b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "2af37d7e-c147-40ff-8ec0-e55abb59e400" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020358Z:2af37d7e-c147-40ff-8ec0-e55abb59e400" ], + "x-ms-correlation-request-id": [ "a7b39439-f31d-43e5-9947-204be0e5c644" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000628Z:a7b39439-f31d-43e5-9947-204be0e5c644" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BAAFA9D8DBD4616AB3CF04D60E6E869 Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE6519947E5F42B5A98C0929AA97CB55 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -12176,7 +12221,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12191,18 +12236,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b9369fc-62aa-4155-8cc7-5f3384150f84" ], + "x-ms-request-id": [ "ee8ad5e3-95bc-4e84-8293-61b4b681d2fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92651133-d40f-4a76-864c-8aadae93dedf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c81abb5-5159-4fff-bd2d-446a9170080e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1b4eb77-177d-4e52-b559-8fb15a2506c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020359Z:c1b4eb77-177d-4e52-b559-8fb15a2506c0" ], + "x-ms-correlation-request-id": [ "d213993b-d933-435e-a987-75053335d8bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000628Z:d213993b-d933-435e-a987-75053335d8bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35B03B8F4C0A48E5845F62484132D5AB Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:58Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6DBF8619EE064C91B4B305994E63874E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:28Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -12217,7 +12262,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-9ekrmwpy0z\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-6n1b0q3ctu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12232,18 +12277,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4592d45b-84bd-4a7a-a207-22625ca6fa09" ], + "x-ms-request-id": [ "8f9dba0a-70db-48d2-87ca-6c9330c97061" ], "X-AspNet-Version": [ "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/e321ce30-63ba-4644-b4c8-a512540c4b2a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/086dbc4f-ec8c-4c04-986c-37283b55c099" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f93f8f0f-db24-447a-bd6f-ec1509b56975" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020359Z:f93f8f0f-db24-447a-bd6f-ec1509b56975" ], + "x-ms-correlation-request-id": [ "f5c7b09c-e98c-4842-8e84-2c4e0b27cb46" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000629Z:f5c7b09c-e98c-4842-8e84-2c4e0b27cb46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42E746E03099436987567D408272A94A Ref B: MWH011020806052 Ref C: 2025-11-14T02:03:59Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF90954B40D440BDBD4B638B7FF6E346 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:28Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:29 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 2c32a8cba3b9..528baca58bb7 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json @@ -7,7 +7,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "826" ], - "x-ms-client-request-id": [ "f9989e7d-c7b6-49dd-b7e9-9bb9b8a8b515" ], + "x-ms-client-request-id": [ "ee2a1abb-3544-4094-a605-ca2315714039" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27eeeeae-d6c8-4f24-b5d1-7ca6262e9ef8" ], + "x-ms-request-id": [ "bd6a0328-1983-4dde-bc20-18ac4596f62e" ], "X-AspNet-Version": [ "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/79e916b6-355b-4f9d-9d88-2a4974a3854f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/aa839bfe-151a-4b3c-8123-53252774929a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d51f8776-144b-4e3d-98d4-ab0218e98dfa" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020400Z:d51f8776-144b-4e3d-98d4-ab0218e98dfa" ], + "x-ms-correlation-request-id": [ "d9ec916b-4783-446e-bfb9-1fc16f098172" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000629Z:d9ec916b-4783-446e-bfb9-1fc16f098172" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA87CA3C9A5D491183124E246D1869A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:03:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E08A38FB04124F709A08CFE761C2737F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550AF2E70815\"" ], + "ETag": [ "\"1DC55C3B3986BCB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "747dde38-78ab-4783-96f1-039de547cd80" ], + "x-ms-request-id": [ "22e49312-0f53-49b3-b317-4aed480f3279" ], "X-AspNet-Version": [ "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/48f34fa3-27ae-4aed-ac6d-ed9772747f72" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/92744253-2c47-4b63-8d3e-4bba58bd461c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b4716fdd-0d0e-43da-a5eb-82ed81fad69a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020404Z:b4716fdd-0d0e-43da-a5eb-82ed81fad69a" ], + "x-ms-correlation-request-id": [ "1684bf68-f41d-462b-8971-e4a6c9027ed8" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000635Z:1684bf68-f41d-462b-8971-e4a6c9027ed8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7651E08535674B45BF01ED65DEB8DDE6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AAAB55BD7D714B3EBD788231604B7A7E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:06:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:06:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1900" ], + "Content-Length": [ "1895" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy\",\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":94040,\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94040\",\"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-15T00:06:32.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "828" ], - "x-ms-client-request-id": [ "72a50562-2d84-4208-b781-14652442c52c" ], + "x-ms-client-request-id": [ "7e559a95-e585-4e77-a917-8aa6ce0b42c2" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -111,37 +111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc32ec61-13b3-4589-956d-99ae9cdd62d2" ], + "x-ms-request-id": [ "97aaf663-d1ed-4c58-9a6a-37eccbd11aee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c05502e5-ecab-4b06-a2ec-8630e2eacd30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020434Z:c05502e5-ecab-4b06-a2ec-8630e2eacd30" ], + "x-ms-correlation-request-id": [ "f9c22076-b1de-4801-9485-f3a6c1b2505b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000705Z:f9c22076-b1de-4801-9485-f3a6c1b2505b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9779AA7C6EB488CB592586691C64C5B Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5F700BF989A4C01A27DB788A5EE4DC9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1806" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy\",\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94040,\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94040\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:06:32.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "829" ], - "x-ms-client-request-id": [ "72a50562-2d84-4208-b781-14652442c52c" ], + "x-ms-client-request-id": [ "7e559a95-e585-4e77-a917-8aa6ce0b42c2" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -156,36 +156,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3057a865-3835-4823-94bd-c3dcdf02d337" ], + "x-ms-request-id": [ "3d1bf043-b5bc-47c7-975b-b2847078b4f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "181dcc97-6429-47da-b1c9-9b54c4ebf9cc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020434Z:181dcc97-6429-47da-b1c9-9b54c4ebf9cc" ], + "x-ms-correlation-request-id": [ "013a0d3a-61d9-4627-8f7e-9bbcffe186ef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000705Z:013a0d3a-61d9-4627-8f7e-9bbcffe186ef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F57873818B1E43EC8CC519339F026C2C Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3AB59C27640477791C212E18EF6CE29 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1806" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy\",\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94040,\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94040\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:06:32.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "830" ], - "x-ms-client-request-id": [ "158aaf22-5760-4303-9536-cb7020d909b6" ], + "x-ms-client-request-id": [ "01e36ef3-73da-48ff-9e4c-cc375c0bbc4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -201,36 +201,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77bee826-339b-40b0-bc06-2b8f34026696" ], + "x-ms-request-id": [ "ab2aad3c-686b-47f8-860e-ae1da3613517" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4427dc2a-2639-4106-b09e-8152e187d54d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020434Z:4427dc2a-2639-4106-b09e-8152e187d54d" ], + "x-ms-correlation-request-id": [ "cdec910a-2334-4712-976a-7155ff6d89e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000705Z:cdec910a-2334-4712-976a-7155ff6d89e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3A0F0ABE13048859CEB13E3BBFFED64 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 860B4EFCC7C9407A8BB10347C12EEC47 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1806" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy\",\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94040,\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94040\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:06:32.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "831" ], - "x-ms-client-request-id": [ "ea181a66-003b-4009-86d1-93c8a9979582" ], + "x-ms-client-request-id": [ "bfe5bfa4-e17e-4fa2-a82d-72ec6e387238" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -246,36 +246,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce960439-e5ad-4aa4-9d0c-8fbcec38ea7f" ], + "x-ms-request-id": [ "56cd410b-6948-4a2d-9107-c064fe355ee4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "601d05e0-3cf4-4d3f-bb0f-a86860fa5d4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020435Z:601d05e0-3cf4-4d3f-bb0f-a86860fa5d4f" ], + "x-ms-correlation-request-id": [ "96e1ab80-9e8e-485c-aab9-2210c1903e0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000705Z:96e1ab80-9e8e-485c-aab9-2210c1903e0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F3A2B6486334532B04C04F8FC935815 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E9A1262914647D98419DEC348E2AF90 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1806" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r\",\"name\":\"Functions-MyPlan-uha1k8c73r\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98954,\"name\":\"Functions-MyPlan-uha1k8c73r\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98954\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:04:01.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy\",\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94040,\"name\":\"Functions-MyPlan-ci82qbjuoy\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94040\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:06:32.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyPlan-uha1k8c73r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ci82qbjuoy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "832" ], - "x-ms-client-request-id": [ "0de2e4d3-7bd4-4466-b3a4-0fda70e95768" ], + "x-ms-client-request-id": [ "248c7792-47cf-4cf6-af7b-d2cba26cb747" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -291,18 +291,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae81ba98-9852-4916-9c9c-168ec2fce2ce" ], + "x-ms-request-id": [ "fd116041-56a1-46e9-9ca7-324ae98e8195" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f95f773b-972e-4025-8fc4-fa3b17a92482" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "7bbbc794-d3f8-4dfa-b080-823ae216b2b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020440Z:7bbbc794-d3f8-4dfa-b080-823ae216b2b9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9d499815-5229-4602-9216-7be87e124958" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "034fe9b4-5db9-4122-934e-8ca0e5248104" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000713Z:034fe9b4-5db9-4122-934e-8ca0e5248104" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15B1FCBBB9494D15BF2F8B8183099126 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44656C5396C14D9FA67A74C2020A94C0 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:13 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 b4f0373e1bc0..ee25a1a24f5e 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-zeaoxcpv3i\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\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": [ "54b692c5-aaf0-44cf-ac3d-13853e089eba" ], + "x-ms-request-id": [ "0c657192-0a95-475f-b0db-adba691a1458" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5debc7b1-f608-435e-aaea-e1f910819bee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1eda9cd3-d652-4b1f-8cdd-75e4c461b28a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bdf1e2a2-de94-4b04-a046-d8fa9a35f21f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020441Z:bdf1e2a2-de94-4b04-a046-d8fa9a35f21f" ], + "x-ms-correlation-request-id": [ "19e64dfa-cf8a-4c85-aa97-50019ea3f57c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000717Z:19e64dfa-cf8a-4c85-aa97-50019ea3f57c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 28E4D12023174E82A6C8D38C470CA845 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A59A360AA324618845B9E86DD5DF1EA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -48,7 +48,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "834" ], - "x-ms-client-request-id": [ "c8086db2-7289-48ed-8393-d73b45b1d76e" ], + "x-ms-client-request-id": [ "1a60aea7-3a59-4bae-b2f0-f417782141e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,36 +63,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a1f9c886-82d9-45a0-a35c-79fb14ed5cac", "d310e061-598f-492b-94c6-31cbd84d7994" ], + "x-ms-original-request-ids": [ "d8799443-3411-441a-b2e9-97fdfab19ab9", "473c9e57-e2da-4127-bc0b-4f936e3e396f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f178a9c3-a052-43ee-89bd-f7efb2cd1f4a" ], - "x-ms-correlation-request-id": [ "f178a9c3-a052-43ee-89bd-f7efb2cd1f4a" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T020442Z:f178a9c3-a052-43ee-89bd-f7efb2cd1f4a" ], + "x-ms-request-id": [ "d31cc887-472e-40b6-a021-37c85a808a69" ], + "x-ms-correlation-request-id": [ "d31cc887-472e-40b6-a021-37c85a808a69" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000718Z:d31cc887-472e-40b6-a021-37c85a808a69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4CCCD41D61E14B0B994ADCAD38755219 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 313B38C058A3437C8C023DB019AB19DF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "13689" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508079,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "835" ], - "x-ms-client-request-id": [ "fc385576-0438-4443-88ac-575b234174cb" ], + "x-ms-client-request-id": [ "ab680c16-da28-42a2-84f9-00e164c9a61b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -108,36 +108,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e33677ca-c8fb-4b27-b9fe-2701a3398ccf" ], + "x-ms-request-id": [ "8ce76233-0809-446b-86fa-9f19af12223a" ], "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": [ "ac169e32-ab5c-42a2-825b-7d625dc112f6" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T020443Z:ac169e32-ab5c-42a2-825b-7d625dc112f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c6176e79-7b33-4868-8ae3-ceacf4315c62" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000718Z:c6176e79-7b33-4868-8ae3-ceacf4315c62" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E3114CA786B4CD98B4622634C5D2207 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CE4DC465ABC411AA98C672186903D4E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "836" ], - "x-ms-client-request-id": [ "ca877813-20b0-4840-b98d-d8fae4eddd3c" ], + "x-ms-client-request-id": [ "f5d08d5e-0f86-4b73-82f2-40b190f9593f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -153,36 +153,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2315e440-2d92-43f5-869e-103a73212a98" ], + "x-ms-request-id": [ "7f147007-7220-45c1-acc0-b658eb9fef4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "060ee8bc-51a7-443b-bc12-abf8b53ec4ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020443Z:060ee8bc-51a7-443b-bc12-abf8b53ec4ee" ], + "x-ms-correlation-request-id": [ "92a038f1-9857-4c3c-b1fc-e6bc97e2a3bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000718Z:92a038f1-9857-4c3c-b1fc-e6bc97e2a3bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B8EB09590204EFF9E8FA176E3B1211F Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C93DC4F8785A4645AD124548D5EB3DCA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "837" ], - "x-ms-client-request-id": [ "996be956-4dff-4d7c-87d7-a4efd89cf5ee" ], + "x-ms-client-request-id": [ "16c2d5b6-8d92-4382-9551-9e03581514cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -198,36 +198,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0386765-e0ef-45d5-bb57-272522bf6954" ], + "x-ms-request-id": [ "5cfde5a6-1a0b-42f3-bb1d-4f8878da38b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e330833-5d86-4c38-bc59-d575b1f6e533" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020443Z:9e330833-5d86-4c38-bc59-d575b1f6e533" ], + "x-ms-correlation-request-id": [ "2fb77eee-678f-4f49-b946-a79d9fbdd7bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000719Z:2fb77eee-678f-4f49-b946-a79d9fbdd7bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3404E185870745AC9AE8A13AD6C9D9B1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85C7B99AB76E475B83B1CAB7118FAA22 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1758" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97020,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97020\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:04:22.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "838" ], - "x-ms-client-request-id": [ "dc4f5aa3-ac90-41f7-a0ea-985d8d29acae" ], + "x-ms-client-request-id": [ "1850b4a7-2c2c-43bd-87f7-74e7a358993f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -243,36 +243,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eed16e9f-3acc-4a9a-b99d-97cfcada133b" ], + "x-ms-request-id": [ "d3b1569e-468e-466c-a85e-ec86a4913d8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "99eeb02c-e8f3-4d45-9eab-55907c023296" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020443Z:99eeb02c-e8f3-4d45-9eab-55907c023296" ], + "x-ms-correlation-request-id": [ "efc98f88-6f18-4e1e-8ed5-15c9c7a00f46" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000719Z:efc98f88-6f18-4e1e-8ed5-15c9c7a00f46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C82489E0BC8543E7A17664A024EAB291 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0570DA90D4444B0AB09A5C221ADF1C63 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "839" ], - "x-ms-client-request-id": [ "ef7a5e63-24db-4bde-a8ae-2f904d86fe57" ], + "x-ms-client-request-id": [ "11337679-640d-4910-ae34-6bcd90bf5cbb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -288,36 +288,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "657fd777-6fdb-4184-8b96-a2e890a734c0" ], + "x-ms-request-id": [ "645617b7-cc4f-4f22-9661-51ccb42e7e16" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d0a4ee2-d810-47a3-b645-68ae802415df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020444Z:1d0a4ee2-d810-47a3-b645-68ae802415df" ], + "x-ms-correlation-request-id": [ "9878a8bb-a99d-42fa-b4e4-1086c7c3af29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000719Z:9878a8bb-a99d-42fa-b4e4-1086c7c3af29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 405E5A11A80B49C5856E809D17FC2267 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB7FE4EE6BAC4759975084DAF7B3BA0D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "840" ], - "x-ms-client-request-id": [ "cf2281a1-c86d-4429-8b6f-b9ce5b499ea0" ], + "x-ms-client-request-id": [ "5e0a2354-311c-43f4-9e50-f1831c52e395" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -333,36 +333,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a73336c-5f12-421e-91d8-b38d630167c0" ], + "x-ms-request-id": [ "564d1ec9-0f40-46cd-acdc-5947505e5681" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7a0bcb0c-37c3-4c9b-9bf9-ae3e4c1b26de" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020444Z:7a0bcb0c-37c3-4c9b-9bf9-ae3e4c1b26de" ], + "x-ms-correlation-request-id": [ "749eede3-5fe5-4e7a-ba1d-5f747f5aa0f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000719Z:749eede3-5fe5-4e7a-ba1d-5f747f5aa0f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFC41FEA2ADA49188EAA2F059D4F8272 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09D9008258464C0BBEB4131C6A1662DF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "841" ], - "x-ms-client-request-id": [ "759e5e9f-d206-43b1-bffc-dbeb9b5dfbc2" ], + "x-ms-client-request-id": [ "bb60324b-1299-4305-8681-523edeb0d603" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -378,36 +378,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8bb1039a-e7ce-473d-b439-2433950eaf91" ], + "x-ms-request-id": [ "53e3e637-21c9-4e48-8a1e-b6eeb5c96665" ], "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": [ "43195b48-b9fa-4721-a697-0fa5aab09c4c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020444Z:43195b48-b9fa-4721-a697-0fa5aab09c4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "74cb5f41-4cf2-4ad2-9148-9132866f645e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000719Z:74cb5f41-4cf2-4ad2-9148-9132866f645e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6663356D04CB427DA832A866A78725B0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED24442855C94F0D8A69A09C778BE7E3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "842" ], - "x-ms-client-request-id": [ "d5dd1e82-0f31-4478-a11b-6ae91aae6fe4" ], + "x-ms-client-request-id": [ "0f7aef03-5b86-497d-b7b2-a432da5e9712" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -423,24 +423,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17b634fd-c243-4f20-a69c-36ddf13bb2a7" ], + "x-ms-request-id": [ "11dc69ec-fca9-4eb3-b6ef-cb960aba5584" ], "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": [ "2ce4ffd0-dab5-4cab-b17a-a7708c3d02e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020445Z:2ce4ffd0-dab5-4cab-b17a-a7708c3d02e7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5ff49f8f-10b4-4605-ab19-c97a3859d4e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000720Z:5ff49f8f-10b4-4605-ab19-c97a3859d4e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 711E976FB9704D96856DD3EF8453144A Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 770C4BE783164870B357B1AA5EED2103 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -452,7 +452,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "843" ], - "x-ms-client-request-id": [ "88d051d0-3977-4f12-9962-59d6ea067b13" ], + "x-ms-client-request-id": [ "438cc364-fd50-44d2-9d35-5c95b0e7123f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -467,36 +467,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0759624a-1ff7-4868-a26e-19cdf7fbc088", "6061f59c-f5f7-4be6-9866-76c5d0a36b96", "3711c5f1-a2a5-471e-be31-36ac9518fba7" ], + "x-ms-original-request-ids": [ "0f96be76-c077-4345-bdf2-11c36d5d5c4a", "443ecae2-ec92-467b-997e-c15aafecdf18", "f8b60fd2-ba84-43ae-a6e5-57f6e59eb033" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "020e2afb-6b8d-485a-a31c-abf5a2ea089e" ], - "x-ms-correlation-request-id": [ "020e2afb-6b8d-485a-a31c-abf5a2ea089e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T020446Z:020e2afb-6b8d-485a-a31c-abf5a2ea089e" ], + "x-ms-request-id": [ "05dedd18-e192-4606-9fc2-6e691ea7ec2c" ], + "x-ms-correlation-request-id": [ "05dedd18-e192-4606-9fc2-6e691ea7ec2c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T000721Z:05dedd18-e192-4606-9fc2-6e691ea7ec2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 669150DD1CD449538F73532BC6B941B3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:45Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C3A0E9E9AFA455C883F778F4B5EF38C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:20Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "844" ], - "x-ms-client-request-id": [ "30efcd98-70fc-4d21-822a-b9df35354fb7" ], + "x-ms-client-request-id": [ "919544a4-39d8-40c1-bb81-457dc269d70d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -511,30 +511,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1eb63a87-2c35-4e5c-a6da-af96800ebbb4" ], + "x-ms-request-id": [ "1b739de7-f872-404d-a0e2-7181ab496677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/940b3dca-198c-45a1-b56c-fb3ce7094a96" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f2b93bb5-1d8c-402d-b9d1-c24587bd889f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8633f53d-3c61-46a5-b69b-c6d746739b5d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020446Z:8633f53d-3c61-46a5-b69b-c6d746739b5d" ], + "x-ms-correlation-request-id": [ "3167c582-5309-43b2-a87b-36c0dab16bb3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000721Z:3167c582-5309-43b2-a87b-36c0dab16bb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 51DA7019B0B742B09049DC226A8E19B8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 139C9D5F223A461996D81B5C12EBDB00 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:21Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2015-05-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -554,30 +554,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b900fc1-8a05-48bb-bf23-e3bb5092b3a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f6899d92-5a8c-4e26-ae32-c4d60ff457da" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "2e63ee3b-6282-48de-aa16-3c77615c23be" ], - "x-ms-correlation-request-id": [ "2e63ee3b-6282-48de-aa16-3c77615c23be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020450Z:2e63ee3b-6282-48de-aa16-3c77615c23be" ], + "x-ms-request-id": [ "cfac6fb7-73f3-4d01-ac59-4ca361b7eae6" ], + "x-ms-correlation-request-id": [ "cfac6fb7-73f3-4d01-ac59-4ca361b7eae6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000727Z:cfac6fb7-73f3-4d01-ac59-4ca361b7eae6" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 257ED6DFD429479DB186EF6E320AEBAE Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:04:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C92CB59FD19474F945BC37DEAD80C82 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:21Z" ], + "Date": [ "Sat, 15 Nov 2025 00:07:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0a074c05-0000-0300-0000-69168e420000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"name\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"AppId\": \"f831a539-3e5d-49d6-bdf4-43ce042be59e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8ab8c13b-cb8c-4057-ace2-9817a5305f7a\",\r\n \"ConnectionString\": \"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\r\n \"Name\": \"Func-PowerShell-NewTest2-zeaoxcpv3i\",\r\n \"CreationDate\": \"2025-11-14T02:04:47.2094865+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-zeaoxcpv3i_f831a539-3e5d-49d6-bdf4-43ce042be59e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-zeaoxcpv3i-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\": \"\\\"3000ec8a-0000-0300-0000-6917c43f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"AppId\": \"166fb684-6993-41b0-a11d-edb087c69973\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bb52893b-0083-49c6-9e99-39e2358c0905\",\r\n \"ConnectionString\": \"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\r\n \"Name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"CreationDate\": \"2025-11-15T00:07:22.1750446+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-fdgw6nz0r1_166fb684-6993-41b0-a11d-edb087c69973_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-fdgw6nz0r1-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-zeaoxcpv3i\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"\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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-fdgw6nz0r1\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -591,39 +591,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B10EE68D5\"" ], + "ETag": [ "\"1DC55C3D52D390B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0057ecfc-07ed-46c4-85ae-ffacc630e025" ], + "x-ms-request-id": [ "d13eeca2-970f-405f-b247-8a866d5f9bb2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fd68c550-3744-4814-b58f-770aa74a9e02" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d716c3cc-88ba-4cc4-b00c-f5d414b64827" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "7eb9d458-a163-4101-8c5c-524db150040d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020532Z:7eb9d458-a163-4101-8c5c-524db150040d" ], + "x-ms-correlation-request-id": [ "43d1454f-c5f0-4c10-9c97-8c20bbf07925" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000808Z:43d1454f-c5f0-4c10-9c97-8c20bbf07925" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A37B5E575731424FA7EE77B84D6D7D9A Ref B: MWH011020806052 Ref C: 2025-11-14T02:04:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:05:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9835A0AE0F594A46BEBB24DB5C350226 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:07:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8502" ], + "Content-Length": [ "8496" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:04:52.35\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:07:28.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "847" ], - "x-ms-client-request-id": [ "63b73d84-f300-4f16-8748-30507fa31ddf" ], + "x-ms-client-request-id": [ "0b7a7f68-585b-4aea-bbea-7730e44e89a3" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "" ], @@ -637,38 +637,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B2853FE2B\"" ], + "ETag": [ "\"1DC55C3EC2C9280\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94e2f648-6b79-4290-bfc7-4149becb083f" ], + "x-ms-request-id": [ "3d2bde62-241a-4bf4-933f-5ab11ec7e4ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c90675a0-6942-469e-bc5a-8f2014f7d91b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020603Z:c90675a0-6942-469e-bc5a-8f2014f7d91b" ], + "x-ms-correlation-request-id": [ "613d5eab-6307-43eb-b34a-33473d7fd49f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000838Z:613d5eab-6307-43eb-b34a-33473d7fd49f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBA373ED670243CDAAA01732C737AEE2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE7F1FB7D3D64636BCC93117BB4532EC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:05:32.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:08.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "848" ], - "x-ms-client-request-id": [ "e136db55-fce0-4c9d-b029-219843ef286c" ], + "x-ms-client-request-id": [ "3cde6988-a1d4-4295-af17-8cf3425e2f99" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -683,38 +683,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B2853FE2B\"" ], + "ETag": [ "\"1DC55C3EC2C9280\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b20e98f7-e037-4e02-816d-df2951b87b28" ], + "x-ms-request-id": [ "fc5732b3-d84c-4985-b60a-4a18ee0d7115" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8477396d-5da8-4682-b0fc-811781f71563" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020603Z:8477396d-5da8-4682-b0fc-811781f71563" ], + "x-ms-correlation-request-id": [ "7ed9cac0-c363-449b-a2fd-516d5594c1ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000839Z:7ed9cac0-c363-449b-a2fd-516d5594c1ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 462A94235C93498480610976921E16DF Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F99B47EB9E0419F8344B6FF286AE820 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:05:32.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:08.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "849" ], - "x-ms-client-request-id": [ "76f3b273-0d66-4a02-963c-7592412d47bd" ], + "x-ms-client-request-id": [ "4cf11495-a870-4458-ad99-0c0e1f6990b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -730,36 +730,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13d029d3-03af-48dd-ae68-02d6d43883da" ], + "x-ms-request-id": [ "acfd7624-7e26-4d8c-b331-7dc7f7ac046a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36a9d5fa-d36d-4ba0-b08f-3e3e3572203f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/370834d5-ce69-4b30-8455-96d8990a72c2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8bd79a16-0982-4177-a9a7-6beefd3898ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020603Z:8bd79a16-0982-4177-a9a7-6beefd3898ac" ], + "x-ms-correlation-request-id": [ "71c89db4-14f3-42f4-96e5-04086a05a27b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000840Z:71c89db4-14f3-42f4-96e5-04086a05a27b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9000AF4951094EAA8B50F426867228B5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 224C4CF9DD074B579D941D7F7871AAEB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "850" ], - "x-ms-client-request-id": [ "ecfc3dc0-2e5c-449d-93dc-02f5e9aa3b88" ], + "x-ms-client-request-id": [ "3d40c3d5-ed05-4c2e-b3f7-9e8629df5416" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -775,37 +775,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "faedef61-5bc8-4019-80a3-fe3bbb50c4ec" ], + "x-ms-request-id": [ "28d1c59b-9fcc-4525-975d-8937bac795e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e876c78-e9a6-4e5d-b1ef-96159b7cf2e1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a7e4dfb5-4e5c-47a2-bc1a-9194889c90ff" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1ee6e286-4af0-4162-adab-beaba9e10387" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:1ee6e286-4af0-4162-adab-beaba9e10387" ], + "x-ms-correlation-request-id": [ "7a981b23-97be-4c5a-91d7-c5994b930215" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000840Z:7a981b23-97be-4c5a-91d7-c5994b930215" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AF09441FBC724AB08E20F10FCDC3F53A Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23FE26BDDED94BE28F33F3FDC27E0ABD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "851" ], - "x-ms-client-request-id": [ "95303489-8fa8-4b5e-ab5a-e5c11f63c1bf" ], + "x-ms-client-request-id": [ "78568d6e-e8e6-462d-a1fb-a04d96f4e689" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -820,38 +820,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B2853FE2B\"" ], + "ETag": [ "\"1DC55C3EC2C9280\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0632a12e-f575-4db5-87e7-998ec79369c8" ], + "x-ms-request-id": [ "331b1571-1459-4514-9789-2bdce1536ee4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2c0afe5-0568-4774-b2e2-62920d65a909" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:b2c0afe5-0568-4774-b2e2-62920d65a909" ], + "x-ms-correlation-request-id": [ "a81441a6-dbeb-4946-94d3-fc1a01feb2ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000840Z:a81441a6-dbeb-4946-94d3-fc1a01feb2ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0C7EAB8749244D19219D94717144EE3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 412F66C5CCB042029865ABDAF3E01ECB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:05:32.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:08.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "852" ], - "x-ms-client-request-id": [ "f3dfa71d-d6c9-4fd2-89eb-346c316afc9d" ], + "x-ms-client-request-id": [ "f20f6d3d-84d6-4ebf-a203-ece727cbd4e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -867,36 +867,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc6c2d30-122c-448c-97e0-f24af1d58d69" ], + "x-ms-request-id": [ "4c688027-bf1c-4d6d-a962-88bef07e6cef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c5b51b1a-9be4-4b74-9bcd-a9742a5b4d47" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "78976ad7-8f77-4a7d-be33-5766ee3aeb71" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:78976ad7-8f77-4a7d-be33-5766ee3aeb71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a31a21ea-3296-45bc-860d-8512bc75c3c8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "51b7ab99-a991-4947-8859-a14e9e4fa08d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000840Z:51b7ab99-a991-4947-8859-a14e9e4fa08d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A23B5DE77EB47F187D139B26077CFEA Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87E9AA7C34BA41DB9AF0E10C808115A5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "853" ], - "x-ms-client-request-id": [ "28e62ad2-2b84-41a8-a627-060304360a02" ], + "x-ms-client-request-id": [ "9d9257b2-1d73-49f2-9bcd-fda506b88774" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -912,37 +912,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b9b21ab-953b-4dd0-bbcb-c235ff221ecf" ], + "x-ms-request-id": [ "03387459-f6e3-4152-b112-ad0dc5ecc1b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db219071-82b6-462e-bf72-1f0e076282d8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6a034447-d5e9-4b39-8876-27b0bd9a89d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020604Z:6a034447-d5e9-4b39-8876-27b0bd9a89d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52443051-7911-4632-9150-18a0e1eb029c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2f474eb4-5b5e-4de1-9f6a-ca726dfc050d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000841Z:2f474eb4-5b5e-4de1-9f6a-ca726dfc050d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E3F0A9138CE4FD6816916DD08AC619D Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 856C6261FA884BFEBC851E6CFFB8B1AF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "854" ], - "x-ms-client-request-id": [ "b7359e57-ce24-4f34-802e-8187f5b3d37e" ], + "x-ms-client-request-id": [ "f2899c98-5570-49e8-878a-7b079538d5ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -958,32 +958,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2fc070ff-e2c1-4770-b7c3-c58c5848fd12" ], + "x-ms-request-id": [ "d626f88e-f94d-4dba-9c8b-22a2b692add4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af36871d-00ad-4406-8f36-8115aad3ea3c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "990487e1-5334-4919-957b-b49e93c14a87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020605Z:990487e1-5334-4919-957b-b49e93c14a87" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb4fba68-556c-45ba-a563-85fccb4cd7b5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "d4961aba-c77d-437e-b9a0-baa88d25e919" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000841Z:d4961aba-c77d-437e-b9a0-baa88d25e919" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F8572069B6A42D1A50A9299AB90D175 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9AF8C24DA5A64605AB510334FE56B9D5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01+23": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-zeaoxcpv3i\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-fdgw6nz0r1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -997,39 +997,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B2853FE2B\"" ], + "ETag": [ "\"1DC55C3EC2C9280\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91a09b3c-203c-491d-87ba-10960bd7636b" ], + "x-ms-request-id": [ "14302bd8-69dc-421e-b1db-289cfdd9664a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fdae5356-1651-4e5c-b846-ef56cebf17ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3824dba7-b1a6-4669-bbe6-563c14986c78" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bc6a0e5e-3fbb-4e01-8ec6-7fefe63f86cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020608Z:bc6a0e5e-3fbb-4e01-8ec6-7fefe63f86cf" ], + "x-ms-correlation-request-id": [ "27941da6-f993-4257-93d4-f403c19e819b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000844Z:27941da6-f993-4257-93d4-f403c19e819b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D201B890A80443281DB363C33E51D7A Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:05Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 935ACF24085C451DA232B145427115D2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:08:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8647" ], + "Content-Length": [ "8636" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"5877ecb1-f0b3-4eef-afa0-d5ac164e9d68\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "856" ], - "x-ms-client-request-id": [ "019bdc7b-cf62-454a-9f35-74be2d03b092" ], + "x-ms-client-request-id": [ "bcddac37-4dd4-475b-a1bf-119fe29f8963" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "" ], @@ -1043,38 +1043,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B3D4C08EB\"" ], + "ETag": [ "\"1DC55C40122946B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e39d2e6-dceb-4c1b-af69-c4627329830b" ], + "x-ms-request-id": [ "997c6cca-7b06-497a-86e0-8edd46a6cf15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff68c51b-83c7-4d26-ac05-235fdb588c55" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020638Z:ff68c51b-83c7-4d26-ac05-235fdb588c55" ], + "x-ms-correlation-request-id": [ "a5136204-90be-45c2-bca2-82b9f6cfe868" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000914Z:a5136204-90be-45c2-bca2-82b9f6cfe868" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4AD920B85414BCA9ABCFC91998F2FE5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6156F89C25BE43FCAA7C2903D9687159 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5877ecb1-f0b3-4eef-afa0-d5ac164e9d68\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "857" ], - "x-ms-client-request-id": [ "5b058534-5019-442d-b1a6-fd35949ec5c2" ], + "x-ms-client-request-id": [ "b2ae89cd-a6dc-4c31-b149-260fbb1fa3b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1089,38 +1089,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B3D4C08EB\"" ], + "ETag": [ "\"1DC55C40122946B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36d11c36-dd08-4fd8-9616-e7204d619280" ], + "x-ms-request-id": [ "e495cccb-5167-4320-b5c2-887f38926b55" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9bff5251-9722-42e5-a335-1600e760edac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020641Z:9bff5251-9722-42e5-a335-1600e760edac" ], + "x-ms-correlation-request-id": [ "a1d3bfea-3846-49de-90a7-4bd469d80d65" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000917Z:a1d3bfea-3846-49de-90a7-4bd469d80d65" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F562234256944148FE24CEA7824E4EC Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB20971AB6984B35AFA20457D32EAB80 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5877ecb1-f0b3-4eef-afa0-d5ac164e9d68\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "858" ], - "x-ms-client-request-id": [ "fa2a3e26-2ca7-4b2a-a55c-d46395707b45" ], + "x-ms-client-request-id": [ "d8009701-de84-41eb-bd2d-e57cef962472" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1136,36 +1136,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd059e9a-99e9-4e39-93ee-d898dfa2ed8e" ], + "x-ms-request-id": [ "64105954-2de8-4c67-9e83-c0e112d1bf67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a366de7b-61c2-4882-b3e5-cd4a7f56552b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/368f2055-4284-4561-a5cf-3a78a9746bf5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "187b48a1-80e0-4dcc-a7b9-b7bfea14c26e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020641Z:187b48a1-80e0-4dcc-a7b9-b7bfea14c26e" ], + "x-ms-correlation-request-id": [ "a4a6fd4e-75a6-4fd6-bac5-0980336aba7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000917Z:a4a6fd4e-75a6-4fd6-bac5-0980336aba7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE78F8196E76416982B802E3403CAC71 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E6F368E67164CE88BA6777AF43EA754 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "859" ], - "x-ms-client-request-id": [ "0aeab111-5d69-43b4-9da3-13777038f2ef" ], + "x-ms-client-request-id": [ "d7af7d74-f4e3-4bda-bf28-76603f8e9be3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1181,37 +1181,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87f4a236-b654-4963-a43c-f19357c8daec" ], + "x-ms-request-id": [ "305cb78b-6bb7-450e-8722-681518b05dfc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92580e65-8ff6-4f55-a069-7b5b5a589ac8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37e5f17e-e909-445e-842b-efb3324097d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d89aacad-d592-4e65-9c55-c861a320ff95" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020641Z:d89aacad-d592-4e65-9c55-c861a320ff95" ], + "x-ms-correlation-request-id": [ "24985945-1940-42ab-a38c-2e6c14d15bd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000918Z:24985945-1940-42ab-a38c-2e6c14d15bd0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA60FDB4385E4B7CB73BE60AB4458026 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A21E857E1A1F41059BF930EA12CD73FA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69468,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":70510,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "860" ], - "x-ms-client-request-id": [ "2636b1e7-cbeb-4018-aad3-84ddb7c86885" ], + "x-ms-client-request-id": [ "efe854fd-70ad-48c9-8e28-80f80355f00d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1226,38 +1226,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B3D4C08EB\"" ], + "ETag": [ "\"1DC55C40122946B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5002144-9af2-470f-852d-ab796f523a03" ], + "x-ms-request-id": [ "8fd3a2c5-a0f9-41d3-966e-da1640f25808" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "608755c7-d192-4fe9-9e16-2ebe0633b06a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:608755c7-d192-4fe9-9e16-2ebe0633b06a" ], + "x-ms-correlation-request-id": [ "bd49111c-1858-46eb-96c2-14c3c4dcdad5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000918Z:bd49111c-1858-46eb-96c2-14c3c4dcdad5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CBB1EEC8D75E41348231618C7B0A49B7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B822597E03240C2A1CD57D985344572 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8621" ], + "Content-Length": [ "8610" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"func-powershell-newtest2-zeaoxcpv3i.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-zeaoxcpv3i.azurewebsites.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-zeaoxcpv3i.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:06:07.5666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-zeaoxcpv3i\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\\\\$Func-PowerShell-NewTest2-zeaoxcpv3i\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest2-zeaoxcpv3i.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"a841ec28-9d0a-4133-a70e-97bcce15457f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"func-powershell-newtest2-fdgw6nz0r1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-fdgw6nz0r1.azurewebsites.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-fdgw6nz0r1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:08:43.5266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-fdgw6nz0r1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\\\\$Func-PowerShell-NewTest2-fdgw6nz0r1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest2-fdgw6nz0r1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"5877ecb1-f0b3-4eef-afa0-d5ac164e9d68\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings/list?api-version=2023-12-01+29": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "861" ], - "x-ms-client-request-id": [ "d0366bb8-8ea5-4576-9465-53d4d42ef6af" ], + "x-ms-client-request-id": [ "a136f6a5-538a-4261-bb56-abfd1a59b43e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1273,36 +1273,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2373dd84-cfbb-44a4-8237-277e833d1fa0" ], + "x-ms-request-id": [ "6eeaacfa-dd26-4090-bb2d-4fb8c52f0dca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94fb39a7-c24e-4d1b-83d3-b1cf4d610c3f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2836ae1-70bf-4270-af10-bc05d5d7e56e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fc9e38ee-be71-41a0-9ad2-8c5bfafddc26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:fc9e38ee-be71-41a0-9ad2-8c5bfafddc26" ], + "x-ms-correlation-request-id": [ "e188bfb2-234a-44e8-a44a-900fcf2403c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000918Z:e188bfb2-234a-44e8-a44a-900fcf2403c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC08D88FC39B44C4BC5295594E3D4CC2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 547004B002614BC5BE6ACCC7BFE8306E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-zeaoxcpv3i\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "862" ], - "x-ms-client-request-id": [ "14c875bc-d701-404c-a4f7-4d0818420b56" ], + "x-ms-client-request-id": [ "27041921-4833-4615-ab3a-ae8eda357e5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1318,37 +1318,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68198599-9c31-447a-82ad-1d03d85585ae" ], + "x-ms-request-id": [ "7e9740c9-9e1d-49d1-a189-45589837d045" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49a88e98-ef62-4998-a2d5-e154f205d5f5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f6e3b11d-f2b8-407c-9091-a1a09e70ca24" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7fffd115-abf4-478f-a61d-7c886548179a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:7fffd115-abf4-478f-a61d-7c886548179a" ], + "x-ms-correlation-request-id": [ "7fb8d7af-0655-4d05-b6c0-d692be745449" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000918Z:7fb8d7af-0655-4d05-b6c0-d692be745449" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 758A258A071445C49D97C6F9D0621F68 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B300608AD3542A3A76489C8F82F5DD4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i/config/web\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":69468,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/web\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":70510,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "863" ], - "x-ms-client-request-id": [ "76c1b92c-8e8a-48c0-a5ea-47984d76c30f" ], + "x-ms-client-request-id": [ "0672963a-deeb-4377-9ca0-f45d8a9e8a55" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1364,36 +1364,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1394043d-4a5a-4244-95d0-596dd281c744" ], + "x-ms-request-id": [ "abdca602-3531-4f1f-89e7-e3b40df55277" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5672fe80-b269-4451-bb59-e5f31f464ebc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020642Z:5672fe80-b269-4451-bb59-e5f31f464ebc" ], + "x-ms-correlation-request-id": [ "17e72749-7248-4baf-a6f8-dc8a9cd84b2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000919Z:17e72749-7248-4baf-a6f8-dc8a9cd84b2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B48F951FF7440C2990FDFD4173661AE Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DAB092BA90D4560B4C155FF618A0E91 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+32": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "864" ], - "x-ms-client-request-id": [ "08d440eb-3cb6-4781-8823-bf5a03bd54a1" ], + "x-ms-client-request-id": [ "05050872-34b6-4428-bb1c-cd09d621bfff" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1408,20 +1408,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B3D4C08EB\"" ], + "ETag": [ "\"1DC55C40122946B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6bec0b9-6d50-4a98-9be1-9bb012a6d646" ], + "x-ms-request-id": [ "592189f2-f88e-4e26-b27a-fcd3d755c13c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef07d960-d135-4282-97b9-9380ca0658cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87116f49-6975-4b4c-9be9-392cb8f21fd9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "60510fe6-8361-4424-b663-f9280139cc9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:60510fe6-8361-4424-b663-f9280139cc9f" ], + "x-ms-correlation-request-id": [ "0eb2fbba-dc9a-4bd3-81a4-21b6ef394d0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000927Z:0eb2fbba-dc9a-4bd3-81a4-21b6ef394d0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC4F4FA7A27C4139B6B50BB724195E74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33CF4FDE17A249798DC3A6C4078A2D64 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1431,15 +1431,15 @@ "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "865" ], - "x-ms-client-request-id": [ "ab4a5fc7-f454-4f95-b2a9-26ac42245e76" ], + "x-ms-client-request-id": [ "2119238e-93c5-485e-836f-31fdb696a3b7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1455,33 +1455,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "f058b749-44dc-4df5-9063-a9db1d71a672" ], - "x-ms-correlation-request-id": [ "f058b749-44dc-4df5-9063-a9db1d71a672" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:f058b749-44dc-4df5-9063-a9db1d71a672" ], + "x-ms-request-id": [ "829e7346-2852-4280-b2b8-9b45c02cd951" ], + "x-ms-correlation-request-id": [ "829e7346-2852-4280-b2b8-9b45c02cd951" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000927Z:829e7346-2852-4280-b2b8-9b45c02cd951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F2AED50DE154A168556E3F70D30740F Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D31FE58A75DF4A028CBDC88982E111CE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:27 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-zeaoxcpv3i\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-fdgw6nz0r1\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-zeaoxcpv3i?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "866" ], - "x-ms-client-request-id": [ "6f394b9d-0e1d-4400-870b-aac5a66d18f7" ], + "x-ms-client-request-id": [ "b223dab8-b52c-4496-8a99-7ab68e8c9cb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1497,21 +1497,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "f04128cc-e88f-448a-ba6a-340414d40b46" ], - "x-ms-correlation-request-id": [ "f04128cc-e88f-448a-ba6a-340414d40b46" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:f04128cc-e88f-448a-ba6a-340414d40b46" ], + "x-ms-request-id": [ "17fa83f7-3cd5-480d-ab1b-6905d2e93584" ], + "x-ms-correlation-request-id": [ "17fa83f7-3cd5-480d-ab1b-6905d2e93584" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000927Z:17fa83f7-3cd5-480d-ab1b-6905d2e93584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 432DCBCB254D405B8C1C4DB9848B6FE3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3A4A1421FA548689E21A2C1DC71FEBC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:27 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-zeaoxcpv3i\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-fdgw6nz0r1\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1519,7 +1519,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-q8hc7lwuof\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1534,18 +1534,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a4e39c1-1752-4bc3-8374-5e200ce460ab" ], + "x-ms-request-id": [ "67ec4fa3-b37a-4075-bdc3-a3c8222b6b72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29b8dd01-4c9a-4b8c-88ed-12fbad9c3901" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e847222e-76c6-4c26-9131-0a29561e7e35" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f2c55833-a24a-4f75-92ea-8660a6cc5204" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020651Z:f2c55833-a24a-4f75-92ea-8660a6cc5204" ], + "x-ms-correlation-request-id": [ "40ce391f-d436-4ca6-b19a-05727dd6875d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000927Z:40ce391f-d436-4ca6-b19a-05727dd6875d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54C0A9C67425407D8DB55C0B73516EE6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C63F6F46117B4EFBBD8B7BB8BFDF3CB1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1564,7 +1564,7 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "868" ], - "x-ms-client-request-id": [ "a01f9162-0e48-4ab8-8a15-77050d52281a" ], + "x-ms-client-request-id": [ "bc30583c-9cfb-4fbd-9a6f-13b97bb5746c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1579,36 +1579,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3ed3443a-28c9-4cc5-a5ce-00b839852d26", "eaf9c6ac-d4f8-4a7c-a1b4-be8a0f3b0082" ], + "x-ms-original-request-ids": [ "144358ad-86a2-4089-95c8-8e43e6b1a721", "ab183c22-f4e2-4146-a403-e6f4435e8098" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ec55010c-b4ee-433c-83da-29ef29d2e284" ], - "x-ms-correlation-request-id": [ "ec55010c-b4ee-433c-83da-29ef29d2e284" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020652Z:ec55010c-b4ee-433c-83da-29ef29d2e284" ], + "x-ms-request-id": [ "8fafd8d2-96b7-41fc-bd90-81de95fedb9b" ], + "x-ms-correlation-request-id": [ "8fafd8d2-96b7-41fc-bd90-81de95fedb9b" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251115T000928Z:8fafd8d2-96b7-41fc-bd90-81de95fedb9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAC754100F674AB99848AB65DA7380D8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B844D99CDA7C4179AAEC4E467F19A2F7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13689" ], + "Content-Length": [ "15375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508082,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508079,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "869" ], - "x-ms-client-request-id": [ "3623bd7f-154c-48db-95b4-a9a6897969ce" ], + "x-ms-client-request-id": [ "c4c5a80d-2260-4dbb-b732-80757c47027c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1624,36 +1624,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da579ad3-fbd1-4fa6-9e6b-56c1dd6f5b28" ], + "x-ms-request-id": [ "c4c4fdfb-1566-4680-b988-53a390b93600" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6e892e32-b3ac-45ce-80e5-b4e47c37cd3a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020652Z:6e892e32-b3ac-45ce-80e5-b4e47c37cd3a" ], + "x-ms-correlation-request-id": [ "42254022-2be7-4abb-a2bb-40e8f4bd8fd4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T000928Z:42254022-2be7-4abb-a2bb-40e8f4bd8fd4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6824C2D0DC874773BC0ADA3E0722E278 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4A45289FA1649BBA0BEDED90178596E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:28Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "870" ], - "x-ms-client-request-id": [ "cafb1bd2-e480-49fd-b451-a4b54208e702" ], + "x-ms-client-request-id": [ "d65a0229-0477-4d40-8553-2b0f8c206779" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1669,36 +1669,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60d344c6-58e8-4d32-943c-83ece46abffa" ], + "x-ms-request-id": [ "e49d2842-d5c8-4756-8f6e-a28b9ade5ba7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "076ed9c5-d686-4242-aea8-2d55dbd48e52" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020652Z:076ed9c5-d686-4242-aea8-2d55dbd48e52" ], + "x-ms-correlation-request-id": [ "7768a2f9-a295-4128-994f-b07b9ff65426" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000929Z:7768a2f9-a295-4128-994f-b07b9ff65426" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDA0A5DFAC914E0E8B131DA5BAD52161 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99B76DD28212445881FAE739812DC010 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "871" ], - "x-ms-client-request-id": [ "2a3a3046-2d2e-440e-b977-8904bdf30d40" ], + "x-ms-client-request-id": [ "02ae088e-c7f4-483f-ac8b-9e22160fc36d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1714,36 +1714,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5d94579c-8388-4b78-9f80-de1bbb80e319" ], + "x-ms-request-id": [ "1809a295-68f4-4e6c-9411-7fe64eb6739f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "057eb436-3c83-4726-af4b-564645ec63f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020652Z:057eb436-3c83-4726-af4b-564645ec63f6" ], + "x-ms-correlation-request-id": [ "858a28a3-7f95-4f2e-af66-6f28ad9eebd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000929Z:858a28a3-7f95-4f2e-af66-6f28ad9eebd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 77AEC59D551044238D896725EE880E22 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D2AD5A2DF42C433F8B765035CA769683 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":76264,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-265_76264\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:08:29.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "872" ], - "x-ms-client-request-id": [ "48391505-78a6-49e0-a06b-8b95f0fb2e23" ], + "x-ms-client-request-id": [ "a31c8468-0700-4610-b7fe-308fc41cf09c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1759,36 +1759,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c20b8544-3f1f-4b2f-ba58-1ff76a1e0267" ], + "x-ms-request-id": [ "be8be1de-b964-4af7-b66a-e9f3cf3e293c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d6b3f546-13f9-422c-93ab-62a39dc5d077" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020652Z:d6b3f546-13f9-422c-93ab-62a39dc5d077" ], + "x-ms-correlation-request-id": [ "eb32d8d0-789d-4aad-b45e-eb1a4e399de2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000929Z:eb32d8d0-789d-4aad-b45e-eb1a4e399de2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2419C40DF9CC4EF1B071DD53F4C7E107 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B048C9F39424DE0A86F635EFB2AD75E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1758" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97020,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97020\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:04:22.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "873" ], - "x-ms-client-request-id": [ "2b53f1f4-923d-4065-97b6-9eeba95ed503" ], + "x-ms-client-request-id": [ "46080fdd-9feb-4488-8c96-cbbf5e4c01d9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1804,36 +1804,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2829640-eb0e-4f17-a476-97b191189c8a" ], + "x-ms-request-id": [ "854b9590-83b7-46cf-a483-ca682bf753b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1ace137-7dd5-4b88-9b27-db9e0131270b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020653Z:c1ace137-7dd5-4b88-9b27-db9e0131270b" ], + "x-ms-correlation-request-id": [ "e5c76d2a-f4cc-4b26-9d68-f638438c4ec0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000929Z:e5c76d2a-f4cc-4b26-9d68-f638438c4ec0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F24E2F5969B455DBC8D46BEC452B241 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD83DB4C7EAB4E32B46225B915174B0C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "874" ], - "x-ms-client-request-id": [ "078cc5a7-8b62-4068-99c0-f99bee61373e" ], + "x-ms-client-request-id": [ "76f045e7-4ca5-46db-a0a9-b3536ccc0b1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1849,36 +1849,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71f0069f-c24f-4f32-af6c-46b6e0b06bca" ], + "x-ms-request-id": [ "aa7aa95a-0104-4091-9122-dff4aa9b49ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "04cde45f-0945-4584-84f2-5fcc73ac0475" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020653Z:04cde45f-0945-4584-84f2-5fcc73ac0475" ], + "x-ms-correlation-request-id": [ "435f7f22-a75d-468e-825f-25d5401eadd4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000929Z:435f7f22-a75d-468e-825f-25d5401eadd4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03EF2A26D28244068946F9B52E4BB9DE Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 747984F03AA34AB1981401EBCC0E4B6D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "875" ], - "x-ms-client-request-id": [ "42a605f6-4b4d-4e1e-be67-2ae40b1fff51" ], + "x-ms-client-request-id": [ "12372334-0dd6-4844-b918-144c8cb39a90" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1894,36 +1894,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a350b24c-9c88-4b0e-ab01-ca09f31e5731" ], + "x-ms-request-id": [ "46b8dd85-959c-4e2a-9753-0a563bd0607b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ae40fd23-3877-4294-ae5f-5cc0cb561562" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020653Z:ae40fd23-3877-4294-ae5f-5cc0cb561562" ], + "x-ms-correlation-request-id": [ "9e637862-4796-4eff-8b67-46de2e7eae86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000930Z:9e637862-4796-4eff-8b67-46de2e7eae86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F7F6FF4D8E84A4997D030B21C09BD93 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA0E03D32CFA4165A855786D17ADD997 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:30Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "876" ], - "x-ms-client-request-id": [ "4f976579-aef9-4eb5-b196-0044f99aef42" ], + "x-ms-client-request-id": [ "c90af9d1-87e5-4856-b4fb-0f333da0f02f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1939,36 +1939,81 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "902f1155-c0e7-43f3-b456-b8382be5a5df" ], + "x-ms-request-id": [ "f642e65f-1af8-43b7-a526-c0bbbd037209" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6e0bcd1a-0d8c-486a-8d3c-e0ead03e06a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020654Z:6e0bcd1a-0d8c-486a-8d3c-e0ead03e06a6" ], + "x-ms-correlation-request-id": [ "cc1faea5-4650-4a08-8782-fec6d485606b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000930Z:cc1faea5-4650-4a08-8782-fec6d485606b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D40421A0C8841A0A4CD58D7B575736D Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D18A19807C584CF4A493B9BF5AB26F36 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:30Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"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/providers/Microsoft.Storage/storageAccounts?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?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-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "877" ], - "x-ms-client-request-id": [ "586acf90-e3f8-4237-b429-08f1724bfd51" ], + "x-ms-client-request-id": [ "64d2351e-5788-4961-bfb2-9931b92350d4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f3704a14-7e7a-42a5-8c92-2d8ea4eb5de3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "459c86f2-c525-4b34-98d7-30efc30197fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000931Z:459c86f2-c525-4b34-98d7-30efc30197fe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D5608B85902F4715988E3CDCF207283A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:30Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1697" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { + "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": [ "878" ], + "x-ms-client-request-id": [ "5f12d93b-e842-492a-b1fb-b84bcb0ac118" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1983,36 +2028,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "345f5b9e-ac71-4d36-97f6-6248fe3fa08e", "60e5b632-0cf6-4513-84f0-2856f80547ef", "5d4266bb-20e7-4559-bba5-fdfc6363dea2" ], + "x-ms-original-request-ids": [ "70e9cc6e-e52a-4e63-9b9f-15a78254d9cf", "c7939bf1-e78d-4eff-942b-f4206af3319d", "1a370aac-2d98-4b18-9158-d03ca1dab55f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ed30d8de-01a4-441c-9a44-faee0f769b8b" ], - "x-ms-correlation-request-id": [ "ed30d8de-01a4-441c-9a44-faee0f769b8b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T020655Z:ed30d8de-01a4-441c-9a44-faee0f769b8b" ], + "x-ms-request-id": [ "7ad39e76-cbb8-4dec-a1a2-2f1a1b71c390" ], + "x-ms-correlation-request-id": [ "7ad39e76-cbb8-4dec-a1a2-2f1a1b71c390" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T000931Z:7ad39e76-cbb8-4dec-a1a2-2f1a1b71c390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1BC756FC150B45C495957F1408A18B5E Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F8FE65556BE4AB8AE7E757571FD1D0B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:31Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "878" ], - "x-ms-client-request-id": [ "36f35258-409c-4648-ad65-1eefd32b754c" ], + "x-ms-unique-id": [ "879" ], + "x-ms-client-request-id": [ "10ead558-380a-4c81-b956-2de02197d5f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2027,30 +2072,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bb2f9594-249a-41e4-b280-bfb95910e3df" ], + "x-ms-request-id": [ "5ea2c76b-9fbc-4fc6-a3f4-0132a0ee2424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/dc7958b2-f822-4ae4-86af-51e7fa2a2b6c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/0b3430c6-5506-42ee-ad9a-ad64998108b6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c35a4640-06f9-440d-aec4-f0a2615006a2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020655Z:c35a4640-06f9-440d-aec4-f0a2615006a2" ], + "x-ms-correlation-request-id": [ "1812530d-6e7e-4626-ac6f-702336d20acf" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T000932Z:1812530d-6e7e-4626-ac6f-702336d20acf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C48BB12E53245C3B6AB589E26528F92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE564C31022541BC89EF1D5D0DBB5221 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:31Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2015-05-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-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2015-05-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-wbuk7grly4?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": { @@ -2070,30 +2115,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14dd46e4-907f-4269-88dd-c2847dbea614" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b25956d8-a51a-4f2e-8d02-75fcbadf0601" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "5b1ae0ac-bdad-4f50-9388-f7f8174b9ce5" ], - "x-ms-correlation-request-id": [ "5b1ae0ac-bdad-4f50-9388-f7f8174b9ce5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020700Z:5b1ae0ac-bdad-4f50-9388-f7f8174b9ce5" ], + "x-ms-request-id": [ "fd3c279b-203f-45f1-b8b7-33fea28f9869" ], + "x-ms-correlation-request-id": [ "fd3c279b-203f-45f1-b8b7-33fea28f9869" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T000938Z:fd3c279b-203f-45f1-b8b7-33fea28f9869" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E6BACCD1A604A759F52A70C1068D79D Ref B: MWH011020806052 Ref C: 2025-11-14T02:06:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:06:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6333B69C85EC4270A984EBF2E2A246AA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:32Z" ], + "Date": [ "Sat, 15 Nov 2025 00:09:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0a07ed29-0000-0300-0000-69168ec40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"name\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"AppId\": \"13f9830f-d3d2-4f00-8604-138ae14192a3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a2d07edd-5a45-4ea6-a03a-d882e0c9c478\",\r\n \"ConnectionString\": \"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\r\n \"Name\": \"Func-PowerShell-NewTest3-q8hc7lwuof\",\r\n \"CreationDate\": \"2025-11-14T02:06:56.1634563+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-q8hc7lwuof_13f9830f-d3d2-4f00-8604-138ae14192a3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-q8hc7lwuof-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\": \"\\\"3000a99b-0000-0300-0000-6917c4c20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"AppId\": \"5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0b410fca-9b3b-412e-8fce-f7c5eb94a422\",\r\n \"ConnectionString\": \"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\r\n \"Name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"CreationDate\": \"2025-11-15T00:09:32.9413769+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-wbuk7grly4_5ae0ffcd-7e7a-4681-840c-63a311aa22dc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-wbuk7grly4-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-q8hc7lwuof\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"\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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-wbuk7grly4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2107,39 +2152,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B5E8DEE35\"" ], + "ETag": [ "\"1DC55C42411C18B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b364642-6efb-47c4-84f6-4915480ceff7" ], + "x-ms-request-id": [ "f0a69404-f278-4092-87ac-538a151c1866" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea700bf7-bb3c-4da0-8b3b-151042fa997e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c4fcc5d-de6c-42bd-8694-b52b09353bf9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "ff463cf3-254e-4a83-8dba-10d894ad225d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020744Z:ff463cf3-254e-4a83-8dba-10d894ad225d" ], + "x-ms-correlation-request-id": [ "7c5afe06-7be6-42e5-9427-019ccb1a0a85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001022Z:7c5afe06-7be6-42e5-9427-019ccb1a0a85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 107E00CAD3FC4A2595AD3E801F9E2C3F Ref B: MWH011020806052 Ref C: 2025-11-14T02:07:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:07:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A25BDC7F67445FAA8F72223CAB3043A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:09:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8502" ], + "Content-Length": [ "8496" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:02.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:09:41.4633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "881" ], - "x-ms-client-request-id": [ "73680c15-9f5c-43b6-b3ee-62861b938a69" ], + "x-ms-unique-id": [ "882" ], + "x-ms-client-request-id": [ "ab577f5e-ffcf-404d-9e28-941080827936" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2153,38 +2198,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B7693BB2B\"" ], + "ETag": [ "\"1DC55C43BAE4560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61c08f99-5804-4d71-b2a8-0207b1549e83" ], + "x-ms-request-id": [ "e6f9f05d-242b-4d01-b2ff-03741b6e0c72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77cf8441-7927-487c-8ddb-65b51d9c390e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020814Z:77cf8441-7927-487c-8ddb-65b51d9c390e" ], + "x-ms-correlation-request-id": [ "a222ca10-7b80-43e1-8093-6c78a349a040" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001052Z:a222ca10-7b80-43e1-8093-6c78a349a040" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20D933F9AEE24BAAAA9F1864D9555853 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D9BBB18E8AB4A5A927D878001AC5E67 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:43.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:21.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "882" ], - "x-ms-client-request-id": [ "cd3e0098-9499-4485-8e5e-3b23f328af57" ], + "x-ms-unique-id": [ "883" ], + "x-ms-client-request-id": [ "6e7bfd99-35e4-4ad5-9f1e-e238ddb7c6c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2199,38 +2244,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B7693BB2B\"" ], + "ETag": [ "\"1DC55C43BAE4560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b98b04d1-5b60-40c0-81e0-dc8fcde3e27d" ], + "x-ms-request-id": [ "01be3c63-b871-4ff6-a4fa-024ee8b3ef03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a1a2e54-7659-4fda-ab33-a63d40958811" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020814Z:8a1a2e54-7659-4fda-ab33-a63d40958811" ], + "x-ms-correlation-request-id": [ "a0c8b7ae-ca0c-4a7e-8b33-889dc3cf5b4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001052Z:a0c8b7ae-ca0c-4a7e-8b33-889dc3cf5b4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E45A9DA98BFE467EAA5254924FB77779 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F960986ED1D4C90854303637DA3A029 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:43.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:21.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "883" ], - "x-ms-client-request-id": [ "531607d2-29dc-4554-b9dc-fe2877b436ec" ], + "x-ms-unique-id": [ "884" ], + "x-ms-client-request-id": [ "7b07cca9-afb1-4dad-9a6b-86c30ee1b4eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2246,36 +2291,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d825873e-a92d-4a12-b343-f1ece8dcdfd7" ], + "x-ms-request-id": [ "b9decedd-90db-42d0-9bcb-d05f0a8b2589" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f66e5d6-629d-4c8c-883e-81ce5af3baca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f87760f-3c7a-48d9-b4bf-38c719d98bd0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "62848429-e65f-4e4f-82ad-4481406b2987" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020814Z:62848429-e65f-4e4f-82ad-4481406b2987" ], + "x-ms-correlation-request-id": [ "cf905ac0-4863-4146-8c9f-1867d7a5d24c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001052Z:cf905ac0-4863-4146-8c9f-1867d7a5d24c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E840FB9B38B434A9EE2E9A41DD0E436 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A48F0308D734AFDAE754EE6A33EAF4D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "884" ], - "x-ms-client-request-id": [ "a6db51e5-8d44-42a8-a81b-5b1f44e41cb5" ], + "x-ms-unique-id": [ "885" ], + "x-ms-client-request-id": [ "45de6e87-f780-4b02-8c7d-d4fb416c45f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2291,37 +2336,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7aa65255-5a0f-49c3-ac83-87fd207d051b" ], + "x-ms-request-id": [ "e6ec7a37-8010-4090-82c4-5f39b31b26e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a67a199-fa1c-4cb2-a343-1d2899ec5d5b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52f59466-897a-448f-8c25-a4c0d36f2044" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e817c75-a5ec-4eea-a1eb-b5174f989001" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:9e817c75-a5ec-4eea-a1eb-b5174f989001" ], + "x-ms-correlation-request-id": [ "00f230c0-cc53-47cf-a52a-284a2fc1708e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001053Z:00f230c0-cc53-47cf-a52a-284a2fc1708e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8D77B0709274C899A9343D9444F8CBE Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9093777FEC034A45BB03CFB21C8189F9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "885" ], - "x-ms-client-request-id": [ "e6bc12af-f6e2-4a98-87d5-2806bded4818" ], + "x-ms-unique-id": [ "886" ], + "x-ms-client-request-id": [ "78e93b39-d4e7-4e69-b722-f24432a6881b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2336,38 +2381,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B7693BB2B\"" ], + "ETag": [ "\"1DC55C43BAE4560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a1ebc439-3c91-4ade-ac0b-238472277523" ], + "x-ms-request-id": [ "2aeae5f9-a6ed-4014-9c3c-7783f9b5014a" ], "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": [ "ee6bec50-d420-482a-a306-7b4d73b2bb08" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:ee6bec50-d420-482a-a306-7b4d73b2bb08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a40f5ce5-4b7b-4455-ae92-193d950dbb1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001053Z:a40f5ce5-4b7b-4455-ae92-193d950dbb1d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 674442C3293B47DA91BF4CD324E1309B Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:15Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1182169106E7432DA2FEE155A18B45D9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:07:43.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:21.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "886" ], - "x-ms-client-request-id": [ "57c08448-30c3-4af7-902c-e5a2256b85d5" ], + "x-ms-unique-id": [ "887" ], + "x-ms-client-request-id": [ "394a7a0d-5350-463b-8b9c-731668cebcd6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2383,36 +2428,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6b81f55-7424-49d8-927c-77fdf645a651" ], + "x-ms-request-id": [ "5d4c888c-c5f0-4c06-938d-cb4857b4809d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70d83bd4-8d21-4c18-bd3b-82f1c9dffe32" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26c33d26-46d9-4294-a970-c8c3bca09f5f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7826c3e3-1943-463d-8720-9b6c99252c27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:7826c3e3-1943-463d-8720-9b6c99252c27" ], + "x-ms-correlation-request-id": [ "5c3203e3-0389-4f54-b2cb-0fd1efc6bd97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001053Z:5c3203e3-0389-4f54-b2cb-0fd1efc6bd97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8EC3A17E23C44B593C8B338CDD50432 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:15Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 167DB613DA1A4F5E8A7D20B8D52F195F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "887" ], - "x-ms-client-request-id": [ "f718bbd8-bb35-4551-8a23-a2d42b9f1d7b" ], + "x-ms-unique-id": [ "888" ], + "x-ms-client-request-id": [ "6e8f340d-7922-4fa5-b866-ce47299060a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2428,37 +2473,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ca1f69f-549c-4095-ae70-80a02f07920c" ], + "x-ms-request-id": [ "02d4c20f-777a-4cf5-af86-6e4c21caf0a4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22d96f53-abf6-412a-84ad-36a1b837fedd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb6dae37-df56-49ba-bfa5-8242c21c4b90" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e42fde2-c11b-4e72-ad38-92b8937dc35a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020815Z:0e42fde2-c11b-4e72-ad38-92b8937dc35a" ], + "x-ms-correlation-request-id": [ "242a3349-f936-4ec1-95db-8db7d82e6e28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001054Z:242a3349-f936-4ec1-95db-8db7d82e6e28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71E5CDC8BC3747A0B284383A5184AA8D Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:15Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E895CF98AEF04E7B8E345C914E54D602 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "888" ], - "x-ms-client-request-id": [ "7873f439-a0ab-4c9b-96b5-c57c71e01195" ], + "x-ms-unique-id": [ "889" ], + "x-ms-client-request-id": [ "447874fc-16d8-48a9-a61d-a05e0ba3d6e5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2474,32 +2519,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6b62659-1d1b-4fe9-895e-4eefc3d324d3" ], + "x-ms-request-id": [ "cf86fd86-4a0c-4524-b5f2-4a284453f475" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a83fa017-2fe5-483d-bd0f-c258bee3a259" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd28578a-626c-4587-ac3b-b9e631b84645" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "adc96c12-8fac-4572-8159-e61f53349aef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020816Z:adc96c12-8fac-4572-8159-e61f53349aef" ], + "x-ms-correlation-request-id": [ "5e77a0f8-2e85-4aaf-adc6-5dc0be2a64cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001054Z:5e77a0f8-2e85-4aaf-adc6-5dc0be2a64cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D2D697AC6D94B7582A9060184B1C90C Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:16Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 20B7CD2C435949B3BA889297DAA7E4C8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:54Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-q8hc7lwuof\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-ry1xpa/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-wbuk7grly4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2513,39 +2558,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B7693BB2B\"" ], + "ETag": [ "\"1DC55C43BAE4560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a94ff94-98f6-4fc5-8fa7-f0879f13956a" ], + "x-ms-request-id": [ "658cfcba-3409-4c74-80fe-88c783b34d36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d213f28b-1a83-4cde-b772-60285427a3c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/647b63f8-9c8b-4efd-91d6-a173811cc2a8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b1069f34-345e-4048-8723-2610040a054f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020818Z:b1069f34-345e-4048-8723-2610040a054f" ], + "x-ms-correlation-request-id": [ "696a1b6e-6f92-45fe-afeb-7f59910256e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001056Z:696a1b6e-6f92-45fe-afeb-7f59910256e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0457C799835540A994F867FF7EC839DD Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:16Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB55020A97834E0BB96D24F598A78480 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:10:54Z" ], + "Date": [ "Sat, 15 Nov 2025 00:10:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8844" ], + "Content-Length": [ "8833" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:56.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "890" ], - "x-ms-client-request-id": [ "ab37e775-7768-49e0-9f95-24a57c94b390" ], + "x-ms-unique-id": [ "891" ], + "x-ms-client-request-id": [ "65592876-1797-455a-89bd-02e2bdd13fe3" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2559,38 +2604,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B8B0EA6AB\"" ], + "ETag": [ "\"1DC55C4501BF775\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f0f0ef8-f590-4a88-9620-79d94b0147df" ], + "x-ms-request-id": [ "b92498d9-75b4-41fe-b347-2a764569c7b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d98ba16a-2f04-424d-8422-0ac639a3a9a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:d98ba16a-2f04-424d-8422-0ac639a3a9a2" ], + "x-ms-correlation-request-id": [ "999fbddf-64f9-45dc-a005-283f63d14315" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001128Z:999fbddf-64f9-45dc-a005-283f63d14315" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A3AD76A085447438AC147DFF6D46C09 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9858D66BA3844D4CABEB624CB5175088 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8807" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:56.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "891" ], - "x-ms-client-request-id": [ "7e3700ad-bd29-47df-bb41-00d43fcb9224" ], + "x-ms-unique-id": [ "892" ], + "x-ms-client-request-id": [ "8018c135-d7e6-4d71-aeea-89c434b3f822" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2605,38 +2650,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B8B0EA6AB\"" ], + "ETag": [ "\"1DC55C4501BF775\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7f544a7-c62b-44f1-b4d1-064a6e920c72" ], + "x-ms-request-id": [ "76797899-081c-48f2-a061-fc88c11f1820" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f1c4cb51-c239-46b3-b018-f515e80c2d1f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:f1c4cb51-c239-46b3-b018-f515e80c2d1f" ], + "x-ms-correlation-request-id": [ "8e3c81b4-4630-4872-9f13-d573b011bffb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001128Z:8e3c81b4-4630-4872-9f13-d573b011bffb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9094A1BA6A324A25A72EBC688A3051CF Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71453BD45DC34A289D367B98203FE307 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:28Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8807" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:56.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01+27": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "892" ], - "x-ms-client-request-id": [ "33564f73-15cc-4859-b148-35d66f512b77" ], + "x-ms-unique-id": [ "893" ], + "x-ms-client-request-id": [ "45b7e40c-8efd-43e1-85c6-bddbaab2b232" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2652,36 +2697,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a91246c-5588-4b2c-924a-e0e14858270c" ], + "x-ms-request-id": [ "f9006b0f-1c51-499c-ae82-e1100f178075" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3faa12a5-3398-401a-8bd9-e0d18ed16ebd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e45b471-a752-4fbc-ae02-5f4bfd1768d2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e5bda086-f10d-4859-b02c-126bd74ac66d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:e5bda086-f10d-4859-b02c-126bd74ac66d" ], + "x-ms-correlation-request-id": [ "863c9065-b115-4cb7-9286-3fbf7285b160" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001128Z:863c9065-b115-4cb7-9286-3fbf7285b160" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EEF328F81FA4DB68CAE2FEF99D9691E Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2EE3110BDB424C10BF8C4FB13B25C600 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:28Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "893" ], - "x-ms-client-request-id": [ "539c0ce4-2a09-4a23-9eb3-3e51fa369639" ], + "x-ms-unique-id": [ "894" ], + "x-ms-client-request-id": [ "64c825dd-34bf-45ff-b81d-ba0012beb8a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2697,37 +2742,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "09e632d2-a6ca-4207-befa-7ef813f375d6" ], + "x-ms-request-id": [ "62d67ad1-c115-4930-a724-63d6c217af6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34569ad1-ce21-40a2-9b79-dc1accf1ace3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd5b0b57-ea12-43e7-aed9-25a5b23fd25e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020849Z:bd5b0b57-ea12-43e7-aed9-25a5b23fd25e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8fbde436-4921-40c2-ab3c-2aac7041cf48" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2d270a64-1dab-4668-a4dc-258fe7068eb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001129Z:2d270a64-1dab-4668-a4dc-258fe7068eb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC8501973A03417EB59890EBAA0436A2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 116381A73F7C440A8C4E6A774CD4806E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69469,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":70511,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "894" ], - "x-ms-client-request-id": [ "a0d8a099-935c-4ab1-b5b0-6fd78fc85434" ], + "x-ms-unique-id": [ "895" ], + "x-ms-client-request-id": [ "74665e75-aeff-4423-ad87-2bd4d8cb4db8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2742,38 +2787,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B8B0EA6AB\"" ], + "ETag": [ "\"1DC55C4501BF775\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3714eef1-c695-441a-83d5-0662fa6e1def" ], + "x-ms-request-id": [ "5b3cebd6-7ea9-48a1-8f3f-81a9434a1f42" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b8ab6ba-0c38-4e77-9d10-e34859240cfd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:5b8ab6ba-0c38-4e77-9d10-e34859240cfd" ], + "x-ms-correlation-request-id": [ "fe5d926f-108d-4145-bd97-f4c9099935be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001129Z:fe5d926f-108d-4145-bd97-f4c9099935be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2817F3CF30B84A28A51592827130EBFD Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58471AE5679A44539019E06A8C0FC8A6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8818" ], + "Content-Length": [ "8807" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest3-q8hc7lwuof\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"func-powershell-newtest3-q8hc7lwuof.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-q8hc7lwuof.azurewebsites.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-q8hc7lwuof.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:08:18.0266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-q8hc7lwuof\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest3-q8hc7lwuof\\\\$Func-PowerShell-NewTest3-q8hc7lwuof\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest3-q8hc7lwuof.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"32f8d9da-35d3-41c0-989c-25e3ed74edba\",\"clientId\":\"03a6c42e-ee57-4c44-be18-1e994b809a8b\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest3-wbuk7grly4\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"func-powershell-newtest3-wbuk7grly4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-wbuk7grly4.azurewebsites.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-wbuk7grly4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:10:56.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest3-wbuk7grly4\\\\$Func-PowerShell-NewTest3-wbuk7grly4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest3-wbuk7grly4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"61169926-c85a-4a5d-a53d-fdbcd266f581\",\"clientId\":\"75ecd9fd-38ba-4818-895e-2792e06feaac\"}}}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "895" ], - "x-ms-client-request-id": [ "14805455-3ac3-4c7a-a9d9-96cf818123d0" ], + "x-ms-unique-id": [ "896" ], + "x-ms-client-request-id": [ "e14b595c-785d-4b75-9ffc-0830799736ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2789,36 +2834,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2dd18303-8b70-4219-97ad-0187e0f154e6" ], + "x-ms-request-id": [ "341c7505-e91e-4e00-a1a5-70f6c6b80109" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a1761d2d-bcb0-41ab-b9ff-d6983925d119" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/312bda0a-427b-476c-8ffa-25811e159893" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1e6cdb72-358b-4535-89a8-f42185d3ffb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:1e6cdb72-358b-4535-89a8-f42185d3ffb3" ], + "x-ms-correlation-request-id": [ "2fad1d67-4c49-4958-82e2-09a2e15633d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001129Z:2fad1d67-4c49-4958-82e2-09a2e15633d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1354D1BE28034EA88AB7A555FD6C0B2D Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 169AB580E30E43B9A4E827FAC9B6F302 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-q8hc7lwuof\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "896" ], - "x-ms-client-request-id": [ "abf3214c-e665-4f7c-827f-b2c99801cf4e" ], + "x-ms-unique-id": [ "897" ], + "x-ms-client-request-id": [ "044a727f-cde2-46d5-b440-0971dcbc4bd5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2834,37 +2879,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "945dba43-10f2-478d-882a-636905927986" ], + "x-ms-request-id": [ "fc773c1b-f44a-4529-8271-6a75a312bcd9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9da4faf8-ebd2-4e9a-82c4-5181b4a39cf5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a241dc40-28a1-470e-9c35-2d941510fc1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b79accb-fcfe-41c0-9d09-caacef399261" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:9b79accb-fcfe-41c0-9d09-caacef399261" ], + "x-ms-correlation-request-id": [ "e044b3b1-469c-4a52-8b4c-de1a23cc2c53" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001129Z:e044b3b1-469c-4a52-8b4c-de1a23cc2c53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C04C4E2F3A045F284B731E3F9255A93 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97342994665C4D5095261830B18098D7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof/config/web\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":69469,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/web\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":70511,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "897" ], - "x-ms-client-request-id": [ "984b5da5-6ead-4511-88e0-39e5c9fe7900" ], + "x-ms-unique-id": [ "898" ], + "x-ms-client-request-id": [ "1cb331da-d49c-4f4c-ab75-f38d2241b82b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2880,36 +2925,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9794e958-d993-4e17-8006-db00d94142a5" ], + "x-ms-request-id": [ "2074db23-db8f-45fc-8a7b-6add7e9f2ca5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c402975d-8794-4528-b2ac-66293be91ee9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020850Z:c402975d-8794-4528-b2ac-66293be91ee9" ], + "x-ms-correlation-request-id": [ "2b9bbc08-4fd3-4721-8875-5f525bddb4a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001130Z:2b9bbc08-4fd3-4721-8875-5f525bddb4a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6F7AC13B6534F2FBA769234A3FEDBFF Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:08:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC43B0FAB6B948C2A70F9791096A2736 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:30Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?deleteEmptyServerFarm=False\u0026api-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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+33": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "898" ], - "x-ms-client-request-id": [ "5da35bf3-e078-4aa7-961b-e4e38e13a3b8" ], + "x-ms-unique-id": [ "899" ], + "x-ms-client-request-id": [ "8915aad5-6ecf-4f28-8f29-0b595d3a9772" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2924,20 +2969,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550B8B0EA6AB\"" ], + "ETag": [ "\"1DC55C4501BF775\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3f02a73-4080-47af-a30a-8b1dd839580d" ], + "x-ms-request-id": [ "a8e99635-b1fb-4885-8544-9f93a5e24aa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bd8b6a2-fd15-4aed-94a2-ecaa7c6d0788" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df51843a-1bef-4435-85d8-12439a1e719d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8a749fe4-c9de-407b-ae06-6b23e8a2ec79" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:8a749fe4-c9de-407b-ae06-6b23e8a2ec79" ], + "x-ms-correlation-request-id": [ "c675860c-ce5c-437b-91b0-2dc2ae745ea6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001138Z:c675860c-ce5c-437b-91b0-2dc2ae745ea6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CD9AB27082444DC801E673CF18CDBA8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:08:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9E0F6D071D34FF78D897870BF69A350 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:30Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2947,15 +2992,15 @@ "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "899" ], - "x-ms-client-request-id": [ "65dc1703-d7d8-41e9-b13e-066399045484" ], + "x-ms-unique-id": [ "900" ], + "x-ms-client-request-id": [ "68eb511e-c219-4e3b-ae86-175a1bc325f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2971,33 +3016,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "95e1cddd-80fe-4a5d-9d06-601409a734b4" ], - "x-ms-correlation-request-id": [ "95e1cddd-80fe-4a5d-9d06-601409a734b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:95e1cddd-80fe-4a5d-9d06-601409a734b4" ], + "x-ms-request-id": [ "06c095f1-a4bd-4ef2-8b79-4eacb8160bde" ], + "x-ms-correlation-request-id": [ "06c095f1-a4bd-4ef2-8b79-4eacb8160bde" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001138Z:06c095f1-a4bd-4ef2-8b79-4eacb8160bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6C5EF69CFBD4DAD82373787C2FA231F Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0632250E576416EB6AC6D47C5E681CE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11: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-q8hc7lwuof\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-wbuk7grly4\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-q8hc7lwuof?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "900" ], - "x-ms-client-request-id": [ "4aa3a280-e576-4e61-9c56-877be23e6561" ], + "x-ms-unique-id": [ "901" ], + "x-ms-client-request-id": [ "12749e0a-be2a-4b1a-bf95-1a30c4f3051d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3013,21 +3058,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "dfe32920-eb5c-4123-a1e3-7295d1762249" ], - "x-ms-correlation-request-id": [ "dfe32920-eb5c-4123-a1e3-7295d1762249" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:dfe32920-eb5c-4123-a1e3-7295d1762249" ], + "x-ms-request-id": [ "05adf2ae-6441-4f60-b46e-7485ae208a4d" ], + "x-ms-correlation-request-id": [ "05adf2ae-6441-4f60-b46e-7485ae208a4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001138Z:05adf2ae-6441-4f60-b46e-7485ae208a4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0B32E456C4A490292B2C844333F30E8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D10F2D3C424943809A3D1913A9046CAD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11: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-q8hc7lwuof\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-wbuk7grly4\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -3038,8 +3083,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "901" ], - "x-ms-client-request-id": [ "dab329a3-8627-4093-8a22-c3ead70fe2f8" ], + "x-ms-unique-id": [ "902" ], + "x-ms-client-request-id": [ "40f1ccd9-cb64-4e65-8283-5be6c6d027a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3055,32 +3100,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f584f38-4ec4-408f-a01a-9785164a9716" ], + "x-ms-request-id": [ "c5a4f537-6c59-4dff-93bb-f0aaded0e872" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d28ca70e-1e77-41ed-8352-96471dd69a9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9bd1a85a-cfb6-4fa5-90a6-9f66a471a0ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "56b93087-46f2-4317-82e9-23c14c18d462" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020903Z:56b93087-46f2-4317-82e9-23c14c18d462" ], + "x-ms-correlation-request-id": [ "af73e587-fa1d-4d5a-a4dd-76c11ccf1662" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001138Z:af73e587-fa1d-4d5a-a4dd-76c11ccf1662" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68BFB15FB481408184C017C4CB3C57E3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 012DF575ADA74AB28FAAE159290DA291 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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": { @@ -3095,40 +3140,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BA7B99EB5\"" ], + "ETag": [ "\"1DC55C46B27634B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "accf3cea-9573-40ee-be6b-ad93669b3f24" ], + "x-ms-request-id": [ "402e91e6-59d2-4fce-815c-e6091525bcd7" ], "X-AspNet-Version": [ "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/ea67cfd6-8506-4cfb-b216-863c62c8a06b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/ec9a360d-5848-4e54-9326-dcf7c5f40afe" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "76d125ad-f7ff-41ce-92f8-731facc56506" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020907Z:76d125ad-f7ff-41ce-92f8-731facc56506" ], + "x-ms-correlation-request-id": [ "382c4825-b974-479c-b394-16ab1096f6a3" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T001142Z:382c4825-b974-479c-b394-16ab1096f6a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCC3DD56F308402BA4CA5AE9B5079626 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F53B4E91AA914F34B35AF75827F62DA7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:11:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:11:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "1915" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"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-15T00:11:40.6166667\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "903" ], - "x-ms-client-request-id": [ "4665a080-4c64-4324-ba82-a632ff047132" ], + "x-ms-unique-id": [ "904" ], + "x-ms-client-request-id": [ "a468fe0c-b438-40de-8c8f-4ff6b987d224" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3143,37 +3188,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "470d2487-5729-4791-86dd-a99f0a0536d4" ], + "x-ms-request-id": [ "bef9974a-8510-4645-960a-12c462073670" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68454bd6-a006-4789-b08a-486861547819" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020938Z:68454bd6-a006-4789-b08a-486861547819" ], + "x-ms-correlation-request-id": [ "8f7207d8-1e06-4015-93c9-3c0763aabd43" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001212Z:8f7207d8-1e06-4015-93c9-3c0763aabd43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5558D0C8AF584EC1B9AC5B2E8C445143 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C05588EE8F314AE0BDEFAA74E0FCC9C4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:11:40.6166667\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "904" ], - "x-ms-client-request-id": [ "4665a080-4c64-4324-ba82-a632ff047132" ], + "x-ms-unique-id": [ "905" ], + "x-ms-client-request-id": [ "a468fe0c-b438-40de-8c8f-4ff6b987d224" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3188,24 +3233,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b4a7f1c-07b9-4026-a591-83e733b3923b" ], + "x-ms-request-id": [ "b0be3705-7b0d-4aee-baab-dcfb2336bae8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "afc31077-1178-4522-ae91-1b78bb77ad2a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020938Z:afc31077-1178-4522-ae91-1b78bb77ad2a" ], + "x-ms-correlation-request-id": [ "c57aa5d5-0b76-4ef2-98cb-0cbf0e3ec123" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001213Z:c57aa5d5-0b76-4ef2-98cb-0cbf0e3ec123" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D25B186EF0A24122A528D0FA7124585F Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC8538AE2F3E4C80A6C46ECA734E03E7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:11:40.6166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -3213,7 +3258,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-0vcunwydg7\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3228,18 +3273,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3ca5d83-759f-476a-8506-c2cc0e43f1a9" ], + "x-ms-request-id": [ "f25d5acf-3b1b-4e84-8a88-8db6284dcb3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/191ea1e5-9136-465a-920a-5554be73af1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc86c4d8-9a2b-4ef8-9ea9-a5399cbb7bf0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "925af204-ae0b-4447-82ac-cf08e8a3d075" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020938Z:925af204-ae0b-4447-82ac-cf08e8a3d075" ], + "x-ms-correlation-request-id": [ "bcec2023-158d-4ce4-b243-4d05cea38c74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001213Z:bcec2023-158d-4ce4-b243-4d05cea38c74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 506660F519D04ADEA493241D686853DA Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 986FB3479B3F4AF4B0ABEB50918F6924 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3257,8 +3302,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "906" ], - "x-ms-client-request-id": [ "3b9ce27d-5619-45db-bc3c-df06905bb418" ], + "x-ms-unique-id": [ "907" ], + "x-ms-client-request-id": [ "93afcc20-cdd9-4354-b3bf-2713bf9cf098" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3273,36 +3318,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "68f1b838-f732-4bdd-a44d-fc830c569e18", "0d869e5e-f7dc-4be3-a268-c8d052c6e8ef" ], + "x-ms-original-request-ids": [ "1c59cef5-eb99-47e4-a528-985b42c61cfa", "a1e229cf-546a-43ad-8f2d-bdc2c0e0e0d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "092b7af4-5a10-45c0-a5ce-940eef7b15af" ], - "x-ms-correlation-request-id": [ "092b7af4-5a10-45c0-a5ce-940eef7b15af" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020939Z:092b7af4-5a10-45c0-a5ce-940eef7b15af" ], + "x-ms-request-id": [ "31866b48-3786-435c-bc9f-7658434929d0" ], + "x-ms-correlation-request-id": [ "31866b48-3786-435c-bc9f-7658434929d0" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T001214Z:31866b48-3786-435c-bc9f-7658434929d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70348AB20C33499EB3CDA4A45E52797A Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9660F6F3A991462B9BD05ED37C192914 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "17140" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506100,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506104,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508082,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508079,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508088,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "907" ], - "x-ms-client-request-id": [ "4bcf9d73-c134-473a-9963-c8e4ae767fe1" ], + "x-ms-unique-id": [ "908" ], + "x-ms-client-request-id": [ "0dfc6234-2aae-47a5-b35e-0784da248d31" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3318,36 +3363,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78f94626-9ae9-4325-9132-cf7f2d3eea2e" ], + "x-ms-request-id": [ "61ca43b4-d4e0-4043-9c62-ea17043cad45" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "33dd48ff-8786-40f4-80d0-c1350c760bb2" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T020939Z:33dd48ff-8786-40f4-80d0-c1350c760bb2" ], + "x-ms-correlation-request-id": [ "07da6d6d-d507-4395-8d49-8b269deec3f1" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T001214Z:07da6d6d-d507-4395-8d49-8b269deec3f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45ACCF7F96354AC7B23BDEEED5E2C21E Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0E768E21A0542E582361042267FE6FA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "908" ], - "x-ms-client-request-id": [ "59a4e830-2919-4da8-b531-e9569553c600" ], + "x-ms-unique-id": [ "909" ], + "x-ms-client-request-id": [ "b456867f-5870-4601-a3c5-878d298ae3b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3363,36 +3408,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98cbc479-4e05-4fe5-a864-433afc49c4b1" ], + "x-ms-request-id": [ "39b107db-9be1-4b22-b1f2-c289856b57b7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c5a0261f-8cc4-46dd-8fa1-42b86342cdc5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020939Z:c5a0261f-8cc4-46dd-8fa1-42b86342cdc5" ], + "x-ms-correlation-request-id": [ "900e876b-e9fe-4108-95e1-92ae954b4f7b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001214Z:900e876b-e9fe-4108-95e1-92ae954b4f7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46880822CDB04996B2E25145E46066F4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F4B87217AF0402A889D285BBC3B33F4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "909" ], - "x-ms-client-request-id": [ "afc1a5ef-c54f-445c-8777-7e24702aa559" ], + "x-ms-unique-id": [ "910" ], + "x-ms-client-request-id": [ "e9224b5e-7c91-4fa0-8f8a-920655d81e1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3408,36 +3453,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6548255-243d-4dfa-aa3e-0c904796753d" ], + "x-ms-request-id": [ "4010db61-17ad-4dc3-b245-1ef8e09a5c01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b871f91-32d6-41aa-b6ce-b6e23c2130df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:9b871f91-32d6-41aa-b6ce-b6e23c2130df" ], + "x-ms-correlation-request-id": [ "19e7b8a1-b392-46fb-8db3-4aee62df05e3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001214Z:19e7b8a1-b392-46fb-8db3-4aee62df05e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFE0B6FBBAB64CF787F21CB652D19EA9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DCE9C3934E8749E8997518098D5A0076 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":76264,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-265_76264\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:08:29.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?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-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "910" ], - "x-ms-client-request-id": [ "578b18e7-c345-40f2-a716-12ce46117859" ], + "x-ms-unique-id": [ "911" ], + "x-ms-client-request-id": [ "3cb588f9-6c27-430d-8a0d-210750b1c6c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3453,36 +3498,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a32fa112-ccf6-4db8-bcae-9ec7a76e10d0" ], + "x-ms-request-id": [ "b22d45c3-6547-4df2-8ee5-ffdd9beff46e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "836b8bf6-6869-4988-b2f8-40b8cc7e1abe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:836b8bf6-6869-4988-b2f8-40b8cc7e1abe" ], + "x-ms-correlation-request-id": [ "194db95f-5d14-4495-9a82-1c68165a09fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001214Z:194db95f-5d14-4495-9a82-1c68165a09fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05CFE32FB2394AD5807AFD5B132F7D11 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E99E2389D1446C3B7D122A5FD971C17 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1752" ], + "Content-Length": [ "1758" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83429,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_83429\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:07:09.5333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97020,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97020\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:04:22.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "911" ], - "x-ms-client-request-id": [ "873fc2e1-07eb-43f2-a2d8-ee808edba893" ], + "x-ms-unique-id": [ "912" ], + "x-ms-client-request-id": [ "49686607-8945-422a-a122-61bffb5c94b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3498,36 +3543,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eaa63818-96b9-4bc8-8950-c46be31be17c" ], + "x-ms-request-id": [ "27a5b59e-db9d-4ffd-a0ef-1335f88f9185" ], "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": [ "29455f2b-5d62-4dc8-bc2b-9bc1edcd26bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:29455f2b-5d62-4dc8-bc2b-9bc1edcd26bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6b75e19b-c5e6-4d8e-afe6-9fd9c862f894" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001215Z:6b75e19b-c5e6-4d8e-afe6-9fd9c862f894" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1CED0060928645618F6741ACE76D0E3D Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E196CED54CF144419C46A02E878EBD06 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "912" ], - "x-ms-client-request-id": [ "b9faa053-12c8-4a32-9f0a-d48c39ce8736" ], + "x-ms-unique-id": [ "913" ], + "x-ms-client-request-id": [ "fcf21df6-1d89-4ab4-9734-f5d055d51d5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3543,36 +3588,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a623459-8752-4927-a747-f626360b87ae" ], + "x-ms-request-id": [ "9d7f8946-0c08-452c-9142-418d2e4fe944" ], "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": [ "fc0c5078-9e85-41e9-aa54-e7e7178f700a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:fc0c5078-9e85-41e9-aa54-e7e7178f700a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cb4c5bb9-e026-4848-99fc-f5f5ae0293d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001215Z:cb4c5bb9-e026-4848-99fc-f5f5ae0293d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 229AE7F9A8B342FBABC413638F457A4A Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31E32B6AB10D4ED1961065FBA26A9036 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "913" ], - "x-ms-client-request-id": [ "2aa0805d-3ed5-48dc-9de3-6f662c2a65b9" ], + "x-ms-unique-id": [ "914" ], + "x-ms-client-request-id": [ "39b3377d-ef5c-48a7-abef-9198e1a4c02d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3588,36 +3633,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60748b10-2a9e-47b2-be7b-1397915259fa" ], + "x-ms-request-id": [ "3918e4ca-623b-40a0-9fdc-dd9a17fd4d96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88df86d1-12e2-49a4-b825-41c00c0327d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020940Z:88df86d1-12e2-49a4-b825-41c00c0327d3" ], + "x-ms-correlation-request-id": [ "d2570825-3140-47e9-be74-93323c124cd8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001215Z:d2570825-3140-47e9-be74-93323c124cd8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E917770A8684EFF8F6D2F3E1773057E Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F70C26C682F240FFA0E01CA358974435 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "914" ], - "x-ms-client-request-id": [ "7a729a72-e495-40c2-acb7-0adf9f656f0c" ], + "x-ms-unique-id": [ "915" ], + "x-ms-client-request-id": [ "7e57f44a-354a-4fe2-a630-4a10142b577d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3633,36 +3678,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08d13f23-a716-4f7b-9834-37e76eb2aee0" ], + "x-ms-request-id": [ "a9335a4f-4555-40f5-9f62-f5e7c5e6891b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ca183fde-1da2-47ff-a2e9-dfeaa46c8e26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020941Z:ca183fde-1da2-47ff-a2e9-dfeaa46c8e26" ], + "x-ms-correlation-request-id": [ "1cfe1ecc-dd35-4389-86f8-1db7a9f8cae7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001215Z:1cfe1ecc-dd35-4389-86f8-1db7a9f8cae7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AAF3ABF6F14D42C691D856603B6596B9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A356B2C85A374C3E8A4453DC47B58D0D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "915" ], - "x-ms-client-request-id": [ "f6b2e06a-141f-432e-887f-8148d385cab7" ], + "x-ms-unique-id": [ "916" ], + "x-ms-client-request-id": [ "67f7d934-eab4-4174-895e-161c0c77c0c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3678,36 +3723,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3cdd9817-ded6-4200-b03d-e182ea7522a2" ], + "x-ms-request-id": [ "a0a3d067-cde8-4f7c-a32c-aa335317a95f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa53ef64-370a-40f1-ab37-141086e6844d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020941Z:aa53ef64-370a-40f1-ab37-141086e6844d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "55ddb6f2-8d1e-432b-826f-7ff3eb7cbd8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001216Z:55ddb6f2-8d1e-432b-826f-7ff3eb7cbd8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAB55B0878B94D4793B2E5FFA6747C83 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 909BC4E3164A49388346D9323B51F57B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:11:40.6166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "916" ], - "x-ms-client-request-id": [ "048abf2d-877f-430e-ae85-a9960e7455d0" ], + "x-ms-unique-id": [ "917" ], + "x-ms-client-request-id": [ "6eecacca-f1f0-4d14-be87-6db089a4224d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3723,24 +3768,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44687ff8-017a-416d-9f20-546e7449d620" ], + "x-ms-request-id": [ "814aff30-55df-4c56-a27b-cf99b20f8148" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "16a31d36-d824-4da7-88fb-123d53b86646" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020942Z:16a31d36-d824-4da7-88fb-123d53b86646" ], + "x-ms-correlation-request-id": [ "685f07f8-210c-419d-87ad-505e4621b3cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001216Z:685f07f8-210c-419d-87ad-505e4621b3cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83A61D76933345FCAACF3598B909AC65 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C22C1EDD872E463F83C37216D9B25230 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -3751,8 +3796,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "917" ], - "x-ms-client-request-id": [ "6e1bfca5-848b-4434-8b91-4988a67618d0" ], + "x-ms-unique-id": [ "918" ], + "x-ms-client-request-id": [ "f664ebb3-ce10-4a7e-ac91-8431c008ad5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3767,36 +3812,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "804760f5-76ff-49c5-a1e2-1b529f1093fd", "8f495dde-4d09-4501-903e-8939ee8e1aef", "69d5f858-271f-428d-a748-2b284869df87" ], + "x-ms-original-request-ids": [ "f610ea37-cc22-4db8-9926-524d36e6159f", "490a42a0-c000-49ff-bd9e-fa7b84c79ad4", "343d4c88-2480-4f51-b9e9-0c5cd8c6f8fa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e81e88e2-31d7-48bf-b04b-a6c34d4ec839" ], - "x-ms-correlation-request-id": [ "e81e88e2-31d7-48bf-b04b-a6c34d4ec839" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T020943Z:e81e88e2-31d7-48bf-b04b-a6c34d4ec839" ], + "x-ms-request-id": [ "a08cd080-9e73-4312-8230-0edbf179acb4" ], + "x-ms-correlation-request-id": [ "a08cd080-9e73-4312-8230-0edbf179acb4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T001217Z:a08cd080-9e73-4312-8230-0edbf179acb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B44CB5F2B7304F9A8BFA5D54328FE6F8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 884D6E9F7D01432299FA3516734A7089 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "918" ], - "x-ms-client-request-id": [ "4c4b2ead-4607-49aa-b124-0b679fa4b03e" ], + "x-ms-unique-id": [ "919" ], + "x-ms-client-request-id": [ "ec2fc1f4-a448-4eb6-819a-e68789ff3888" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3811,30 +3856,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "67cfa1dc-4bde-4b94-90b0-351aaf606e0e" ], + "x-ms-request-id": [ "f3dd0751-5dfc-4ce8-83d8-38b02c1e2dcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/61ec09d4-ef02-45ff-8b0b-f6fd7f0fe25d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f24302a8-2302-450c-b80c-d3f64c326dd4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8f8a461d-10d6-45a6-8e23-a5adab97e88f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T020943Z:8f8a461d-10d6-45a6-8e23-a5adab97e88f" ], + "x-ms-correlation-request-id": [ "dc1a2563-53cb-4e6f-9fe8-a18e28ccaa61" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T001217Z:dc1a2563-53cb-4e6f-9fe8-a18e28ccaa61" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 211906796B814A7B803553B4737EF922 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F92DD172B82D41B1A4162EA373D01D4A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2015-05-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-195kucxe6q?api-version=2015-05-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-195kucxe6q?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": { @@ -3854,30 +3899,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/99a96412-3772-416b-b7cd-97c7d4add23a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/285aa447-0ad0-43d7-8da3-ad84236b6f63" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "8f082886-cee9-4c0b-8b7f-29186fa95c7a" ], - "x-ms-correlation-request-id": [ "8f082886-cee9-4c0b-8b7f-29186fa95c7a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T020949Z:8f082886-cee9-4c0b-8b7f-29186fa95c7a" ], + "x-ms-request-id": [ "961346e0-c67b-457f-a6f2-f24d3d0b5002" ], + "x-ms-correlation-request-id": [ "961346e0-c67b-457f-a6f2-f24d3d0b5002" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001223Z:961346e0-c67b-457f-a6f2-f24d3d0b5002" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8025A878AC3E43869881BD1E0CB06AF0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:09:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3043A579EC4742E6AF69DC2AF49F8FA6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:12:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0a07bf58-0000-0300-0000-69168f6d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"name\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"AppId\": \"692703d7-d09f-4ca6-8db1-f6818eb06864\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"841bc0cc-9927-438f-8358-7fda9e4d46c0\",\r\n \"ConnectionString\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\r\n \"Name\": \"Func-PowerShell-NewTest5-0vcunwydg7\",\r\n \"CreationDate\": \"2025-11-14T02:09:44.1454383+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-0vcunwydg7_692703d7-d09f-4ca6-8db1-f6818eb06864_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-0vcunwydg7-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\": \"\\\"30005bb0-0000-0300-0000-6917c5660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"AppId\": \"30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d30b5173-58dd-434e-a1bd-f659bfc9254b\",\r\n \"ConnectionString\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\r\n \"Name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"CreationDate\": \"2025-11-15T00:12:18.4919987+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-195kucxe6q_30ef05f9-a5c0-46ae-a803-b842e50d91b4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-195kucxe6q-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\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": { }, @@ -3891,39 +3936,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BC3875620\"" ], + "ETag": [ "\"1DC55C485B5AFE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cafdfcc-0733-44e1-b9db-e7796b79f71d" ], + "x-ms-request-id": [ "ed5cf340-c038-4c25-a5ab-a51a1ba82a61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06413e3c-39bf-4d89-9caf-dd3a75f379ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cfc13e2-b758-471c-8e58-239f806b20fa" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "f5839fd7-0d86-4ae4-995d-fa36abdaaed0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021032Z:f5839fd7-0d86-4ae4-995d-fa36abdaaed0" ], + "x-ms-correlation-request-id": [ "525916c0-c848-48c4-8d4f-417a8a6a4630" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001305Z:525916c0-c848-48c4-8d4f-417a8a6a4630" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0F8864CB83C4422B6D91ED52632791B Ref B: MWH011020806052 Ref C: 2025-11-14T02:09:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:10:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 985DF0136FAE43E28A35A10A937E03D1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:12:23Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8749" ], + "Content-Length": [ "8732" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:09:51.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:12:25.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "921" ], - "x-ms-client-request-id": [ "b6f18e69-0ab4-4e9f-b684-8e4038aa8868" ], + "x-ms-unique-id": [ "922" ], + "x-ms-client-request-id": [ "92298ba5-3f47-4330-9a0c-7086ea5f6554" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3937,38 +3982,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BDAE03440\"" ], + "ETag": [ "\"1DC55C49D0E8E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "099a2fd8-b9ec-4d3c-921d-07633ea99eb5" ], + "x-ms-request-id": [ "f4308206-f3b5-4bff-8265-cc46f1150e8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "36d6a7f5-697d-43df-908f-8cebe9956b39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021102Z:36d6a7f5-697d-43df-908f-8cebe9956b39" ], + "x-ms-correlation-request-id": [ "5681770b-e892-4514-99ad-2da98bccec83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001335Z:5681770b-e892-4514-99ad-2da98bccec83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF77E5741BA6496AB383AA7A54B4B210 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FF5A7C672654B47B91BF775AE0A7EDC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:13:35Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8718" ], + "Content-Length": [ "8707" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:10:31.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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:13:05.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "922" ], - "x-ms-client-request-id": [ "3736901b-39af-49c5-8e20-f466535929ca" ], + "x-ms-unique-id": [ "923" ], + "x-ms-client-request-id": [ "e8101288-3a7f-40a6-b98c-33a362c89e9f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3983,38 +4028,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BDAE03440\"" ], + "ETag": [ "\"1DC55C49D0E8E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80cd18bf-c2d1-4ba2-91a3-bd74f1808481" ], + "x-ms-request-id": [ "7aab1cef-1b12-4118-acb9-0ae1515fe43a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f209736d-c359-4fd1-978b-8032d8a43d7b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021102Z:f209736d-c359-4fd1-978b-8032d8a43d7b" ], + "x-ms-correlation-request-id": [ "ed50b39a-6f73-4cac-a8d0-0ec4d751be4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001335Z:ed50b39a-6f73-4cac-a8d0-0ec4d751be4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED30348E1AE54183BDEF25541F3E8940 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71C186F1CA554615839E0905A025B3D2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:13:35Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8718" ], + "Content-Length": [ "8707" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:10:31.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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:13:05.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "923" ], - "x-ms-client-request-id": [ "4867868a-039d-4039-9398-31694818c3b4" ], + "x-ms-unique-id": [ "924" ], + "x-ms-client-request-id": [ "c7cbb081-e0d3-4304-9f23-fd53a94aad42" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4030,36 +4075,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3d8e50a-2c24-4922-b01d-f98bdafae414" ], + "x-ms-request-id": [ "3cb48272-2443-444e-8c7e-f75315378c1a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f00096-efd8-48be-aef2-e7636d38d66a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff4e7b74-b359-45f2-a82f-b8ca687cbd7b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d38be513-9454-4ede-a5d6-266fc648fab6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021103Z:d38be513-9454-4ede-a5d6-266fc648fab6" ], + "x-ms-correlation-request-id": [ "965ac02d-eb10-43b6-9b53-fd004d18a410" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001336Z:965ac02d-eb10-43b6-9b53-fd004d18a410" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A798414AFE054BB4A257324313032735 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A40E31A857B42578B5433423BB4AA86 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:13:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "924" ], - "x-ms-client-request-id": [ "c412169d-eca8-47eb-a02e-df21199d2080" ], + "x-ms-unique-id": [ "925" ], + "x-ms-client-request-id": [ "0457b63d-d7a9-47b4-8775-b5e5eb0f7f42" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4075,25 +4120,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b92a4f4-6e2c-4e9d-8251-b5062b9af007" ], + "x-ms-request-id": [ "7bf948aa-f03b-44e7-a6b2-deddc3085e99" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/abfb00b5-933e-4c48-b46a-bf24537cb8fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f810bef-aec6-492f-84b4-d2056f86cae4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd113d36-a7cc-49ca-9cde-511517592c6b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021103Z:bd113d36-a7cc-49ca-9cde-511517592c6b" ], + "x-ms-correlation-request-id": [ "6a7d22a4-932d-486f-825e-26ae96db4e4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001336Z:6a7d22a4-932d-486f-825e-26ae96db4e4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83E91347C5D34E7EA4E582027AA71594 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3F8A2E2E4F949769FED56EA5D64823E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:13:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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\":70512,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -4104,8 +4149,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "925" ], - "x-ms-client-request-id": [ "e0b815b4-0495-4f89-aea4-ec6ff7be54c5" ], + "x-ms-unique-id": [ "926" ], + "x-ms-client-request-id": [ "743ece4d-4f9a-4c0e-a4e1-a7938ebf188f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4121,32 +4166,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e7cce9d-2fda-4606-9561-351d7c1931f2" ], + "x-ms-request-id": [ "8acd3969-0c96-46c5-8258-f1a8d6790944" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2475a9ae-f658-418e-830e-99c6761aa10f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "a5e6dda5-912c-4285-9740-b7d7209577a0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021103Z:a5e6dda5-912c-4285-9740-b7d7209577a0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc005750-ac61-4a0e-900b-490b92b3492e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "46ef3500-361d-48b3-8736-fa0a98f32ec6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001336Z:46ef3500-361d-48b3-8736-fa0a98f32ec6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2011C58685534ECC8F618A68CEB1B3C7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36C837B8F0DC4E5E87509D3FA95684C7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:13:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01+26": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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": { @@ -4161,40 +4206,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BEF2B502B\"" ], + "ETag": [ "\"1DC55C4B186EE75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82a310f0-f0fe-4d86-aec5-0c5e4e8b5f7e" ], + "x-ms-request-id": [ "307a37b2-51f9-48f6-abb1-efbce9254cee" ], "X-AspNet-Version": [ "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/949266bd-eb3a-43ca-8e5c-921690f285e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9dab1919-3429-424f-b11e-be1fd2536fa9" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e93282dc-99c7-4e5c-acd0-450754ff687d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021107Z:e93282dc-99c7-4e5c-acd0-450754ff687d" ], + "x-ms-correlation-request-id": [ "32a277e2-3fb4-4e46-9467-ca5054e99128" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T001340Z:32a277e2-3fb4-4e46-9467-ca5054e99128" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2A823062B7F432D986852DF1E496F2A Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07DBC6D58EDF472D8983399AFBA7B092 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:13:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:13:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1913" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"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-15T00:13:38.5933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "927" ], - "x-ms-client-request-id": [ "776cc752-0892-4501-8637-231941cc0756" ], + "x-ms-unique-id": [ "928" ], + "x-ms-client-request-id": [ "2cf4e062-bbc6-44c4-b180-86bf2bffd161" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4209,37 +4254,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e1424fd-20c3-4d6d-a98f-504b47713831" ], + "x-ms-request-id": [ "a97c094e-63b1-4a1e-887e-5403b1ffbdd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1e0852ed-de16-4bcb-a410-ff8a2924133f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021137Z:1e0852ed-de16-4bcb-a410-ff8a2924133f" ], + "x-ms-correlation-request-id": [ "db710d8e-d4f1-4155-bbd7-35267fd4a26b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001411Z:db710d8e-d4f1-4155-bbd7-35267fd4a26b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D93C6A88FB47402082D875C0BF5D19B7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07553C7F34C941E1AB824F9947F57A35 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:10Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:13:38.5933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "928" ], - "x-ms-client-request-id": [ "776cc752-0892-4501-8637-231941cc0756" ], + "x-ms-unique-id": [ "929" ], + "x-ms-client-request-id": [ "2cf4e062-bbc6-44c4-b180-86bf2bffd161" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4254,36 +4299,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "781c7247-2d4f-4022-8153-41d69aa95682" ], + "x-ms-request-id": [ "558b91ea-68da-4c1b-9710-e809516fcf8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "960b13c6-7223-406f-b479-b279ad3e002a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021137Z:960b13c6-7223-406f-b479-b279ad3e002a" ], + "x-ms-correlation-request-id": [ "319a4e25-89d9-4e7a-8a8f-8e2e6079f312" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001411Z:319a4e25-89d9-4e7a-8a8f-8e2e6079f312" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1219A7178F7A42498902104054A8AC5E Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C025B2E124DE466C9623A26BB6C9039D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:13:38.5933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "929" ], - "x-ms-client-request-id": [ "04b0975d-e230-4245-a8e1-605b6926a667" ], + "x-ms-unique-id": [ "930" ], + "x-ms-client-request-id": [ "5019a9b9-3462-49c3-9f42-440316763cfc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4299,36 +4344,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "89138816-9479-48e1-a3e4-d6bce2972f1c" ], + "x-ms-request-id": [ "b1e55a4c-d126-4e2d-91de-fe62ecdf1cf1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "26b26cea-b75e-446e-91ee-645c97a13ae8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021137Z:26b26cea-b75e-446e-91ee-645c97a13ae8" ], + "x-ms-correlation-request-id": [ "2c0f8228-3de4-4e05-a35d-b41e9f58e83e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001411Z:2c0f8228-3de4-4e05-a35d-b41e9f58e83e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCF4431F9A9B428D858E7729DA5D8091 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5142773EF4EE4D47B9FD471AAF10EDE1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:13:38.5933333\",\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "930" ], - "x-ms-client-request-id": [ "bcb434b9-5bdd-4418-8873-8cb11d312b5a" ], + "x-ms-unique-id": [ "931" ], + "x-ms-client-request-id": [ "2a775331-202c-4e22-b79a-a29a20034b53" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4343,38 +4388,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BDAE03440\"" ], + "ETag": [ "\"1DC55C49D0E8E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77d3a55a-dae4-40c2-986c-53dbe40d2333" ], + "x-ms-request-id": [ "e38603ea-0d6d-424b-a65e-cd56b19899f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d6f86e07-3e27-42ba-b187-38b34d7eaf6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021138Z:d6f86e07-3e27-42ba-b187-38b34d7eaf6f" ], + "x-ms-correlation-request-id": [ "316231a3-b235-4b38-adff-bc471375a8ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001412Z:316231a3-b235-4b38-adff-bc471375a8ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5625DFB74F7D49BFB64228902128E389 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 038A18486762472391021F81CFD87C1E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8718" ], + "Content-Length": [ "8707" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:10:31.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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:13:05.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "931" ], - "x-ms-client-request-id": [ "20c3efc2-351f-4e44-93b1-cb51ce992a07" ], + "x-ms-unique-id": [ "932" ], + "x-ms-client-request-id": [ "2d11c0e4-46b0-48e0-8781-b1992188bbba" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4390,36 +4435,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b24572f-fe85-44f1-bd74-aa7064a429aa" ], + "x-ms-request-id": [ "08bc7ecb-c9fe-4f48-8a80-a24a0c28a9f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f33454b-30ee-41b8-95fd-696670132d6d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce45072d-4d03-46a4-9183-0743b33e00e6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ecd52c8d-8d90-4fc8-9c53-bdea701dec20" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021138Z:ecd52c8d-8d90-4fc8-9c53-bdea701dec20" ], + "x-ms-correlation-request-id": [ "cc3c369a-8bbd-451d-9310-160530663bea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001412Z:cc3c369a-8bbd-451d-9310-160530663bea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBBB0CBF732940E495C231FD3101A642 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 549696A89BAA482FA516DA26F0EA8917 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "932" ], - "x-ms-client-request-id": [ "8421308f-e278-4ab5-ba7f-bfa8ef947db0" ], + "x-ms-unique-id": [ "933" ], + "x-ms-client-request-id": [ "4c5a2dd6-1dfc-46cf-a1d0-b3e0a6398a6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4435,25 +4480,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2fd32c2-bd42-436c-b1f4-4916d83ab6f1" ], + "x-ms-request-id": [ "597822af-2e5f-4c19-a435-6de140a8fb1e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0d3b1da-f70b-4da3-a164-e101795fe968" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef0003f2-7707-4863-b795-957ea4e1c466" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "42379870-7fa2-4905-9ce9-ea2a49349299" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021138Z:42379870-7fa2-4905-9ce9-ea2a49349299" ], + "x-ms-correlation-request-id": [ "fa1e88d3-382c-46de-937b-a840900dd77d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001412Z:fa1e88d3-382c-46de-937b-a840900dd77d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87C8E5D4DD7143D1830573F4586E18A9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 062F8059C59B4130846206DE3CEB6DC3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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\":70512,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -4464,8 +4509,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "933" ], - "x-ms-client-request-id": [ "423d64cb-f8b6-4c7e-8b38-d01834a27ef2" ], + "x-ms-unique-id": [ "934" ], + "x-ms-client-request-id": [ "1c00ca64-b965-4c82-a4ba-b60123bef9f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4480,36 +4525,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "26fe2481-3637-4fa1-af49-eb727de091cd", "362d70e7-94b1-4003-8705-1a6811dc81ae" ], + "x-ms-original-request-ids": [ "73b4b13d-aba9-4878-9aa1-4d0fddb7b33f", "0be05115-468c-4cb2-96fe-645e1aed3ebb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "583b5fb4-f966-4c44-8290-aec94aef0277" ], - "x-ms-correlation-request-id": [ "583b5fb4-f966-4c44-8290-aec94aef0277" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021139Z:583b5fb4-f966-4c44-8290-aec94aef0277" ], + "x-ms-request-id": [ "c2622594-a1b9-4428-9f26-c5cd0dc3479c" ], + "x-ms-correlation-request-id": [ "c2622594-a1b9-4428-9f26-c5cd0dc3479c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001413Z:c2622594-a1b9-4428-9f26-c5cd0dc3479c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DC7B35F18744F61BA10EC973FDB86E2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 807FF95232124857BDE4680D8B934CD2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "18902" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506100,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506104,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506106,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508082,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508079,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508088,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508090,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "934" ], - "x-ms-client-request-id": [ "7cd8ab32-4491-45ea-9c3c-8da384964884" ], + "x-ms-unique-id": [ "935" ], + "x-ms-client-request-id": [ "72fe1b50-0952-46a6-affe-a0cf0f58c8b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4525,36 +4570,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5873d953-f343-4e80-ada6-cc16f0594f67" ], + "x-ms-request-id": [ "6dafd62d-0d61-46c3-be87-caed1e52b2c6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9bbbbec5-db4e-485e-8e2c-9293bc1b271a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021140Z:9bbbbec5-db4e-485e-8e2c-9293bc1b271a" ], + "x-ms-correlation-request-id": [ "9076e45e-e35a-4615-a392-d58d5dbd893a" ], + "x-ms-routing-request-id": [ "WESTUS:20251115T001414Z:9076e45e-e35a-4615-a392-d58d5dbd893a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40461518C5B549E1967AF1648DB180D0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13827763A0074D28A0C4FEC082641A7E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "935" ], - "x-ms-client-request-id": [ "57f404f8-3d22-4ed6-8669-eb8948e12da9" ], + "x-ms-unique-id": [ "936" ], + "x-ms-client-request-id": [ "cd0ba171-5572-43e0-a924-51f13de4dd11" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4570,36 +4615,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe6140e3-fd55-4092-83ff-4b44de46fd36" ], + "x-ms-request-id": [ "f66ad396-2c78-4a11-87d9-aa9262715e66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cc2654ad-91bf-40ea-aa55-048c399d2bb9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:cc2654ad-91bf-40ea-aa55-048c399d2bb9" ], + "x-ms-correlation-request-id": [ "391cf8d3-c771-43a8-986b-cec1a8a5cbb8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001414Z:391cf8d3-c771-43a8-986b-cec1a8a5cbb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3B78523DBB84570974362FA82D04525 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63EAEEDFB3914577A847D646A9154525 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?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-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "936" ], - "x-ms-client-request-id": [ "e6171867-3989-45fd-9e1b-a2f6a3130e2f" ], + "x-ms-unique-id": [ "937" ], + "x-ms-client-request-id": [ "aad51d0c-7a25-4900-ad86-88c64fb8647c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4615,36 +4660,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "078b00bd-1169-49ee-8f01-d497dde95a15" ], + "x-ms-request-id": [ "ed6c4419-3a2c-4ae6-b6b0-6f0bd02ef377" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7286bbb9-76b7-4eaa-b317-4847e863aa0f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:7286bbb9-76b7-4eaa-b317-4847e863aa0f" ], + "x-ms-correlation-request-id": [ "d8ac0b61-1b4e-4e07-a08b-d7d2ddb14d90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001414Z:d8ac0b61-1b4e-4e07-a08b-d7d2ddb14d90" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCC77940CD7E4E95BC259F290E17B089 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAE76C4615FE4BEBAC5726BC00121271 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":76264,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-265_76264\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:08:29.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?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-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "937" ], - "x-ms-client-request-id": [ "846a10b6-7378-4398-9c7a-63d2840e63d1" ], + "x-ms-unique-id": [ "938" ], + "x-ms-client-request-id": [ "fb8e09b1-da9d-466f-a249-04385be09d32" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4660,36 +4705,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "610f91a1-9a94-4ebe-8869-272316ac683c" ], + "x-ms-request-id": [ "b13913c2-d9ea-4c1d-a7c7-cc86d516f881" ], "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": [ "1029ecbb-c126-4ab5-84a2-9b182af6bed8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:1029ecbb-c126-4ab5-84a2-9b182af6bed8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b8528983-72e0-4adf-a647-a2ffc7bba0c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001414Z:b8528983-72e0-4adf-a647-a2ffc7bba0c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A4FF4E5665E4CDEBFEEE748991B820C Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA254481B14C4C10AC7242A63A6388BA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1752" ], + "Content-Length": [ "1758" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83429,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_83429\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:07:09.5333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97020,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97020\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:04:22.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "938" ], - "x-ms-client-request-id": [ "e89e1f94-522f-4381-a9f9-567899fcd8cd" ], + "x-ms-unique-id": [ "939" ], + "x-ms-client-request-id": [ "d647ca03-d162-40be-b731-4d64d25b8a01" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4705,36 +4750,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ac8226a-bf89-4ee8-b6f3-fc9d47928ba4" ], + "x-ms-request-id": [ "59490d24-083a-4759-bc3f-0ed361b9b077" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "584239b9-ec32-4bca-9403-b7fcb67621e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:584239b9-ec32-4bca-9403-b7fcb67621e6" ], + "x-ms-correlation-request-id": [ "8452533a-dc57-45cb-bcf8-dffe02dae613" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001414Z:8452533a-dc57-45cb-bcf8-dffe02dae613" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D7BB6366F4C46349DB9EF98887B3BF0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACF2586CF7024103A5A85160245A1095 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "939" ], - "x-ms-client-request-id": [ "54d794a2-93ad-431f-a0aa-92f175c62dd9" ], + "x-ms-unique-id": [ "940" ], + "x-ms-client-request-id": [ "105c5b92-609a-4720-8224-653523dd353e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4750,36 +4795,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6e7317f-6c71-4f2b-9866-a4d5ebfa7243" ], + "x-ms-request-id": [ "3c544e5e-b8c3-4694-a291-4a55c2663dd9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2bf47e85-12f7-4cdd-9ede-21c26320fec7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021140Z:2bf47e85-12f7-4cdd-9ede-21c26320fec7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "14a0e783-350a-47cb-991b-1c464bc6ba85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001415Z:14a0e783-350a-47cb-991b-1c464bc6ba85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C44940386C7E4078A8C866731432CF4B Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F9B810A0BCE43DC921C7AF1FBDEF8B9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+40": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "940" ], - "x-ms-client-request-id": [ "dea03616-4aa2-4dde-9550-d5d5e738bdaf" ], + "x-ms-unique-id": [ "941" ], + "x-ms-client-request-id": [ "084b1578-07d5-488b-a890-e3b8241eda3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4795,36 +4840,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbb5482f-6246-4c96-9596-90387e1fe19a" ], + "x-ms-request-id": [ "b92c4676-0c96-47d6-adf8-b5899f285846" ], "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": [ "926bc31c-d726-418a-b15c-24b73763aa22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021141Z:926bc31c-d726-418a-b15c-24b73763aa22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b78c6987-c9ca-409c-84a6-f7563e93b2c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001415Z:b78c6987-c9ca-409c-84a6-f7563e93b2c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07F32FC7F2CB4E15B8C819D733A9F0BE Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8CAA8141C63C4B06977F382810B601E0 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "941" ], - "x-ms-client-request-id": [ "3982cbc4-7934-4dad-b0e6-c86cf688de4a" ], + "x-ms-unique-id": [ "942" ], + "x-ms-client-request-id": [ "aff8c6f4-965b-43e1-92c2-9b3efca3054b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4840,36 +4885,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "358b3dc9-fad0-404e-83ef-cf6ba71ff844" ], + "x-ms-request-id": [ "896bfd90-80cb-4e3c-8d2b-c5e93f6bb7c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "20c56740-0500-4820-8483-f0c551380918" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021141Z:20c56740-0500-4820-8483-f0c551380918" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "561e76e9-8216-4240-8ba7-32a5e776a810" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001415Z:561e76e9-8216-4240-8ba7-32a5e776a810" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF065613ED8C42A9A350E8250AD5C8DB Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D592FDC98550402BB7E1E71A9AAD3C2A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+42": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "942" ], - "x-ms-client-request-id": [ "fec8a316-1dce-4b22-b4ce-f0406a402fb4" ], + "x-ms-unique-id": [ "943" ], + "x-ms-client-request-id": [ "ffece998-415c-4e41-bea3-866534e92d42" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4885,36 +4930,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e13b7dc3-5c7d-4728-9538-a2327bc4a879" ], + "x-ms-request-id": [ "b46dd9b7-e3c5-481b-89b5-642b5e8c5b13" ], "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": [ "8ff89a75-b659-4ad6-8d07-73f328ab0b0e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021141Z:8ff89a75-b659-4ad6-8d07-73f328ab0b0e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "04cb48ac-1991-4f79-a2b7-c7df3b2c8571" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001415Z:04cb48ac-1991-4f79-a2b7-c7df3b2c8571" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4818AAC552341FDA839EC7B9230490B Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD5092FA5CB041A1977A4D62BC4C2ECF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:11:40.6166667\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+43": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "943" ], - "x-ms-client-request-id": [ "480d5407-4c57-4f93-b043-1ee2cd0d6a64" ], + "x-ms-unique-id": [ "944" ], + "x-ms-client-request-id": [ "1c00993b-c020-4e92-84ca-e518d4dabd03" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4930,36 +4975,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0bb9a737-6560-4405-8630-7c365bb819fd" ], + "x-ms-request-id": [ "daafbaa9-2bd0-4ed8-a188-c0cad273fb1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "de4b572c-d517-414e-809d-0e6c395aaa79" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021142Z:de4b572c-d517-414e-809d-0e6c395aaa79" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8801dfdf-a733-4106-ba00-22c3a410d3ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001416Z:8801dfdf-a733-4106-ba00-22c3a410d3ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95645B4C451249C9B3E5FCBEF8CE5230 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C31CD94680E4032B2CFAACE74997805 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:13:38.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+44": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "944" ], - "x-ms-client-request-id": [ "63c378c5-8e37-4447-ad12-601e66cced9d" ], + "x-ms-unique-id": [ "945" ], + "x-ms-client-request-id": [ "c7d43d97-a060-482a-85ba-e84bc6a831d2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4975,36 +5020,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6018255e-562c-43e2-b251-71a1de47c3f1" ], + "x-ms-request-id": [ "a8b19591-91da-42e4-93ed-a76a6e100ae3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "711803fc-5824-43c8-9727-72cb5bb30eb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021143Z:711803fc-5824-43c8-9727-72cb5bb30eb3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7089bd1c-7d9a-4c46-9bf9-3baef42cc19e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001417Z:7089bd1c-7d9a-4c46-9bf9-3baef42cc19e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAFEF1753F5E4B58965900B2BCEC53FD Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5ED39CD7F0FE423091299AF607FA81B6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "945" ], - "x-ms-client-request-id": [ "bea2c212-9de3-49f5-90ab-f7cab13aa618" ], + "x-ms-unique-id": [ "946" ], + "x-ms-client-request-id": [ "45c0691e-4d1d-4ae3-9d4c-5c0222ae1f6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5020,36 +5065,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba8fc53d-1a98-4346-907c-17496ef0177f" ], + "x-ms-request-id": [ "efe2be5e-be91-4a18-bd69-e08abc9e41f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8203fd25-661e-4ff2-a6d0-e38dcc98c46d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T021144Z:8203fd25-661e-4ff2-a6d0-e38dcc98c46d" ], + "x-ms-correlation-request-id": [ "36412da2-f27c-4195-b5e1-792a25e3700d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T001418Z:36412da2-f27c-4195-b5e1-792a25e3700d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 921F51D52AD744A18A6C5B7A89236E35 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD9731B090934C70A777B4F26B7AC54B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:11:40.6166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+46": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "946" ], - "x-ms-client-request-id": [ "fb80ba3d-8b2a-4d89-8d9c-0c417b02dd5f" ], + "x-ms-unique-id": [ "947" ], + "x-ms-client-request-id": [ "367622a0-9bda-4a1a-aec3-a164b785e2d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5065,32 +5110,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b4f58fa-0505-4761-a843-01b787baea13" ], + "x-ms-request-id": [ "f930d3c0-663c-474c-b56a-ad4646a0da0e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90a28ca6-99f9-4bed-897b-270f3fa42a4f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c2c83890-af95-4726-9961-1c3ebfc73aee" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "21a9b1f2-aafc-49d3-a68c-c094e1b1ba3c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021144Z:21a9b1f2-aafc-49d3-a68c-c094e1b1ba3c" ], + "x-ms-correlation-request-id": [ "8f83dac7-8ae8-4fd4-b68d-6a39d3ab084e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001419Z:8f83dac7-8ae8-4fd4-b68d-6a39d3ab084e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E3B5BB370994F8EA7A9036069B92B95 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F370DBD5AD0348CAB8985A0F10627025 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+47": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01+47": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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": { }, @@ -5104,39 +5149,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550BDAE03440\"" ], + "ETag": [ "\"1DC55C49D0E8E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "041943ad-ec22-4a76-9f81-b841c413f5f2" ], + "x-ms-request-id": [ "29eb1bf1-718f-433c-9b3d-ec8016b17b5a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db03a336-deda-4fb0-a445-28d441318197" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b359949d-b187-4231-ae7d-80e645feab32" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ba5da4bb-3f05-458d-8d2d-d273a9d4edf4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021147Z:ba5da4bb-3f05-458d-8d2d-d273a9d4edf4" ], + "x-ms-correlation-request-id": [ "22082ffb-b51d-4203-8ea6-54a556e309b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001421Z:22082ffb-b51d-4203-8ea6-54a556e309b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFFE77C9004F417BA8392F5DA7A26633 Ref B: MWH011020806052 Ref C: 2025-11-14T02:11:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:11:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57D951762BE24405A3F584FABA1EEBAB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8748" ], + "Content-Length": [ "8732" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:20.33\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01+48": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "948" ], - "x-ms-client-request-id": [ "8aa916a7-8ad1-46ea-b67b-0c8371334045" ], + "x-ms-unique-id": [ "949" ], + "x-ms-client-request-id": [ "d69709d0-67a4-42fe-97b4-1dd3e7cb48b8" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5150,38 +5195,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C0737B9D5\"" ], + "ETag": [ "\"1DC55C4C9E2B0A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78d85eb7-0ebc-4f9f-b807-1a491d53ce86" ], + "x-ms-request-id": [ "9de786e6-ad5c-4f33-a4a2-71d77a23595a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "14424b99-1283-4051-98ec-03a0ea15859d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021217Z:14424b99-1283-4051-98ec-03a0ea15859d" ], + "x-ms-correlation-request-id": [ "337f09c3-3f1f-4bed-ba66-9856ae38aef2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001451Z:337f09c3-3f1f-4bed-ba66-9856ae38aef2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F96807717C6643998C55AE9732681B6F Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:17Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FFBBE473DF144ACA4CCF6260968FCBA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8722" ], + "Content-Length": [ "8706" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:20.33\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+49": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "949" ], - "x-ms-client-request-id": [ "d342d04e-3943-430c-afa2-149c745388f2" ], + "x-ms-unique-id": [ "950" ], + "x-ms-client-request-id": [ "48748b7e-d28a-4dc0-9300-af76df5dabe0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5196,38 +5241,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C0737B9D5\"" ], + "ETag": [ "\"1DC55C4C9E2B0A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ef5b6e6-a46b-4318-afb5-66c3a86516b9" ], + "x-ms-request-id": [ "faed0b2a-be31-4079-9bbb-87a3eb88e2a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "590e4f77-7cbf-4331-a148-dce0d4625254" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021217Z:590e4f77-7cbf-4331-a148-dce0d4625254" ], + "x-ms-correlation-request-id": [ "c7b02d88-e7c6-4ca3-920d-4b7470ab05d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001451Z:c7b02d88-e7c6-4ca3-920d-4b7470ab05d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0542D2E9110F4CAC8799801EAA5F4E92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:17Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54175D00BCDF494FBAE9F0E16D0411EB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8722" ], + "Content-Length": [ "8706" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:20.33\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+50": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+50": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "950" ], - "x-ms-client-request-id": [ "9ef614ad-41d4-4d70-9bfb-66d8801f5d9a" ], + "x-ms-unique-id": [ "951" ], + "x-ms-client-request-id": [ "a92a845d-5449-4101-868a-77f8e72efe4d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5243,36 +5288,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd70152c-bf26-452d-95ae-bfbe8558ce59" ], + "x-ms-request-id": [ "37267366-5447-4c6e-aa0a-98dc1483dc22" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65d500b7-adaf-4553-8941-484c765a1c63" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f24e1156-1fbc-4f5a-9162-79ee95a7fa40" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8512aab9-c43d-458a-9bc2-c535a54fd55f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021218Z:8512aab9-c43d-458a-9bc2-c535a54fd55f" ], + "x-ms-correlation-request-id": [ "c6e1e899-4c3d-476d-82b8-cfaeadfa3346" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001451Z:c6e1e899-4c3d-476d-82b8-cfaeadfa3346" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 594DEC2D09A84F34B4ED03271BC86785 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:17Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D678436578D4CA18F9CAADAEA9B7575 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+51": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "951" ], - "x-ms-client-request-id": [ "2d75606e-d6ef-4351-8fd7-a46a3f073a12" ], + "x-ms-unique-id": [ "952" ], + "x-ms-client-request-id": [ "0bb22add-c0f9-406d-81ee-b4177dec3afd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5288,37 +5333,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd2575b3-978a-4e20-8718-41f365e0ad9b" ], + "x-ms-request-id": [ "432461eb-ba31-4d36-9ed8-6f4fae472bd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7d438fd9-8879-4b94-8084-3acba7490bb6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e37dd07-0d23-45e5-a07e-53ed2b6905f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c9574acf-da7e-4d44-aa6e-f4ee55261ccf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021218Z:c9574acf-da7e-4d44-aa6e-f4ee55261ccf" ], + "x-ms-correlation-request-id": [ "b85d97be-7b68-40c2-b938-41bad13762c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001452Z:b85d97be-7b68-40c2-b938-41bad13762c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8130A23C6AED4E6DB9B2B19FAC8A98D3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:18Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D211AAC0FFA442BDAFE9E6733D980A7F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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\":70512,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+52": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "952" ], - "x-ms-client-request-id": [ "4242c544-b23a-4dea-9ebe-8d17f3e853b3" ], + "x-ms-unique-id": [ "953" ], + "x-ms-client-request-id": [ "e4a5a250-63fe-4183-9a29-996356397356" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5333,38 +5378,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C0737B9D5\"" ], + "ETag": [ "\"1DC55C4C9E2B0A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f2f22dc-972e-4ecd-a679-25187f89b4ee" ], + "x-ms-request-id": [ "611bc844-a8f4-4a3c-b5c2-96fdcbd66fea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5311bb4d-bb43-4560-9eb1-bf713ee305b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:5311bb4d-bb43-4560-9eb1-bf713ee305b0" ], + "x-ms-correlation-request-id": [ "88695b42-a0ec-43b9-9ca2-327fb9774417" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001452Z:88695b42-a0ec-43b9-9ca2-327fb9774417" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C0446F0EB794C79908460661BC8E953 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:18Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E0AF55C2EDE4846B28EC1B0B3F21978 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8722" ], + "Content-Length": [ "8706" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:11:46.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"46e31440-602e-472b-b96b-22b03e7449c5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:20.33\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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\":\"d5835470-beb9-46d4-8c64-66456dd05d96\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+53": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "953" ], - "x-ms-client-request-id": [ "d4f6d25b-b9dc-4d89-a14d-53117ff8a4f0" ], + "x-ms-unique-id": [ "954" ], + "x-ms-client-request-id": [ "4f5b891f-a4e9-4a8c-9819-e2f20354f959" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5380,36 +5425,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6f9315d7-0b2f-486e-b2ce-6de77f1029a5" ], + "x-ms-request-id": [ "b2bf4df9-4e24-47a9-8ac5-0f6108bd2089" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/526edf03-9912-49b3-8cde-95c57651630f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3100d87-6de9-4da5-9b8a-5c5ee6ae6649" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc6b138f-da4d-4704-8dcf-7a4498b9374d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:dc6b138f-da4d-4704-8dcf-7a4498b9374d" ], + "x-ms-correlation-request-id": [ "d518a465-f1c2-4a42-9dd7-e58a48c08d87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001452Z:d518a465-f1c2-4a42-9dd7-e58a48c08d87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA914478D33C47848FB3A9A5FB38B3A5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:19Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D636D199B784E6FBDD7E64C11020116 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+54": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01+54": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "954" ], - "x-ms-client-request-id": [ "30cc938e-99a4-43f8-9bd5-c4173487c6f0" ], + "x-ms-unique-id": [ "955" ], + "x-ms-client-request-id": [ "4848d73d-542a-4400-89de-a0c9cf968da0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5425,37 +5470,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1071d0fc-c2a3-4143-a71e-2059845e725d" ], + "x-ms-request-id": [ "377a31be-fab4-436c-91b5-a145d4315d72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f27c67a0-989d-4438-b107-b250cd7cd37a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2d7cac3b-564a-4f4a-bfc3-ad5f9b1cbc39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:2d7cac3b-564a-4f4a-bfc3-ad5f9b1cbc39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a17337d4-d200-4225-be51-6530b3818423" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a61c1649-30aa-462f-84b9-0d115a567192" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001452Z:a61c1649-30aa-462f-84b9-0d115a567192" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A823BACD47044E0A268C24C5B396CC6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:19Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58B7806D200548D892B3DDCB06F25AEF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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\":69470,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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\":70512,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+55": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "955" ], - "x-ms-client-request-id": [ "3e050196-0c76-4efb-83b8-38c1098bd0c8" ], + "x-ms-unique-id": [ "956" ], + "x-ms-client-request-id": [ "70a3f99f-dee5-42b1-ae1c-6e849b923d97" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5471,32 +5516,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "898f3652-7568-42c8-a26c-e23b0490dbde" ], + "x-ms-request-id": [ "170cfd5e-c6ef-4e02-ba97-1c55999fd51b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cbea1c8-6248-4642-9db4-c084ab70f665" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9352ebe6-4f53-4f46-a082-ec4c3c304c42" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "33227511-68b5-41c6-a56d-f4055108fb27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021219Z:33227511-68b5-41c6-a56d-f4055108fb27" ], + "x-ms-correlation-request-id": [ "1df1e778-f801-4f63-a84a-8cc2de93dff6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001453Z:1df1e778-f801-4f63-a84a-8cc2de93dff6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2541F0D3EB63418B8C1FF256FD588556 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:19Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5AE307F7C4D145FE9EA94EF1A6A5CD1D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+56": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01+56": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\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": { }, @@ -5510,39 +5555,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C0737B9D5\"" ], + "ETag": [ "\"1DC55C4C9E2B0A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8fc1e56-b887-4084-b358-3fbe25a64605" ], + "x-ms-request-id": [ "1dd23a88-4f11-4e6f-9e84-0636b934fd7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93f3323f-da16-48a3-8ead-accd424f53dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c64c582a-4241-4729-b7ca-1b54e7ce85f6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6630c45e-8d9d-4257-96e6-12c12b82ca74" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021222Z:6630c45e-8d9d-4257-96e6-12c12b82ca74" ], + "x-ms-correlation-request-id": [ "97acd154-14fb-40c7-aff8-a073e8e9add2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001455Z:97acd154-14fb-40c7-aff8-a073e8e9add2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E11E4007A6EE4ABF894AA73C70A69953 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:20Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E353488136D44855A20A9A2F8DC3EC51 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:14:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:14:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8608" ], + "Content-Length": [ "8597" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:54.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "957" ], - "x-ms-client-request-id": [ "72e32b0f-bdcb-4ba6-89db-b7696ecba2b2" ], + "x-ms-unique-id": [ "958" ], + "x-ms-client-request-id": [ "b72d513c-c07d-496a-a360-387afb795133" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5556,38 +5601,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C1C609895\"" ], + "ETag": [ "\"1DC55C4DE8C674B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0680b9c7-5e2b-4aa2-8399-de6d30bd8184" ], + "x-ms-request-id": [ "68ec451b-2af5-4db6-95a8-1d3b0b2a8b24" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b56f0d8f-7300-4924-a24b-bee16becea80" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021252Z:b56f0d8f-7300-4924-a24b-bee16becea80" ], + "x-ms-correlation-request-id": [ "e9541462-99c2-4553-96c5-ced6de8d962d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001526Z:e9541462-99c2-4553-96c5-ced6de8d962d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAC5DD35640C4E6EBF2478F314E5791E Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B434409383DF428EB782F461126B86A7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:25Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8582" ], + "Content-Length": [ "8571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:54.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+58": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "958" ], - "x-ms-client-request-id": [ "15c6966b-8b6c-4f0e-b9da-f07a1cf6d713" ], + "x-ms-unique-id": [ "959" ], + "x-ms-client-request-id": [ "a622c620-c0f8-47c4-8ec1-26f469925010" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5602,38 +5647,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C1C609895\"" ], + "ETag": [ "\"1DC55C4DE8C674B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dbae95cc-fce7-46a8-9297-a59d6bfd7d05" ], + "x-ms-request-id": [ "070822bb-ab11-475d-b049-7166051a6be8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "10176b39-83ce-476d-9c48-4ff003ad6b47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021253Z:10176b39-83ce-476d-9c48-4ff003ad6b47" ], + "x-ms-correlation-request-id": [ "aff082a5-b6bb-442a-8e27-a1cf9390d9f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001526Z:aff082a5-b6bb-442a-8e27-a1cf9390d9f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BACFCBE4D4C3476F9C3E13CB9D6261B4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C091A729C28C458C84D581BCEA1A80E7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:26Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8582" ], + "Content-Length": [ "8571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:54.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+59": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+59": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "959" ], - "x-ms-client-request-id": [ "a8d37cdd-cf6d-4f67-abb5-4a32f0803dc1" ], + "x-ms-unique-id": [ "960" ], + "x-ms-client-request-id": [ "914ea8b2-3426-44bc-8955-d056201648b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5649,36 +5694,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d27b5543-31a0-4417-86da-3219c143edce" ], + "x-ms-request-id": [ "294b71c9-054d-4e19-9356-941c854728f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46611f32-2609-4d92-818b-0b129cc2a822" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5ec236ef-0732-45ca-9f08-6139b1d4a390" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5aa79c69-9ad4-4719-b59b-8e1bca8faa40" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021253Z:5aa79c69-9ad4-4719-b59b-8e1bca8faa40" ], + "x-ms-correlation-request-id": [ "3e690d2d-dcee-45e0-b631-317098b92255" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001526Z:3e690d2d-dcee-45e0-b631-317098b92255" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E422F8003BB4EB5A50B1AABA795B61D Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6275594620A54B319C5CF395691AB749 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:26Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+60": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "960" ], - "x-ms-client-request-id": [ "2002e008-d791-48b9-aa8d-c575b5bc881d" ], + "x-ms-unique-id": [ "961" ], + "x-ms-client-request-id": [ "a4019994-8bfd-42a7-9a9b-ed9c0d1d02cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5694,37 +5739,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41ed7d2e-4434-4e7b-b159-31272e55df59" ], + "x-ms-request-id": [ "c0cf3ca8-dac7-42d0-9124-7323daef71cf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab5efa3b-a55f-43ab-a2fb-3bcdb9c39572" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6190171-26a3-4e0c-b2f8-5fa2d77db8e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0372b630-120b-4d5f-8f9f-4426935b72f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021253Z:0372b630-120b-4d5f-8f9f-4426935b72f9" ], + "x-ms-correlation-request-id": [ "8ed677db-05f8-4644-9e1f-9bfef473ebc2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001527Z:8ed677db-05f8-4644-9e1f-9bfef473ebc2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07C0299B5A464116934BCBAA85809705 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B09177706814D86924DF193FFFA4A63 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:26Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "961" ], - "x-ms-client-request-id": [ "ed64df39-aada-4c2a-9e4a-b4c72fae6c1b" ], + "x-ms-unique-id": [ "962" ], + "x-ms-client-request-id": [ "c39e1a92-80bd-4529-8cc2-b9ed2e422bca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5739,38 +5784,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C1C609895\"" ], + "ETag": [ "\"1DC55C4DE8C674B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "883b674b-1e7f-4e12-a34f-3ffbb5a41786" ], + "x-ms-request-id": [ "0c0e4b59-a980-490b-bff6-3780321c7bc0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7395e665-e749-436e-84e8-f43dd35f13cc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:7395e665-e749-436e-84e8-f43dd35f13cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3f028acc-5402-4f6d-9a83-36884647ad40" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001527Z:3f028acc-5402-4f6d-9a83-36884647ad40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0CD213E13A314D39AF130F330663A023 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A930F3A66CC49A093810B3404079FF4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8582" ], + "Content-Length": [ "8571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:21.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:14:54.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+62": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "962" ], - "x-ms-client-request-id": [ "0dfc03f8-b1d9-45cf-a0b3-a3dbcaff8535" ], + "x-ms-unique-id": [ "963" ], + "x-ms-client-request-id": [ "33a72afe-df1f-4afc-b50c-a89af2ba7977" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5786,36 +5831,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "09acee7e-1363-4335-b061-2a78b2b556a8" ], + "x-ms-request-id": [ "4596de52-2ccb-4256-8bd9-8a27e81b6042" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59f7c6e1-c072-479a-861f-8108df9d595d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4235f83-0d9f-44db-adb8-0d85124dce81" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4be9b1b1-9cd8-4287-af25-903c51a41e63" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:4be9b1b1-9cd8-4287-af25-903c51a41e63" ], + "x-ms-correlation-request-id": [ "4f1bb6f1-895d-43f8-a19a-ba85be67ef6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001527Z:4f1bb6f1-895d-43f8-a19a-ba85be67ef6d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D979C4976334C7F9A3DCD9036253525 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AAF2C105C8534155A9C9373904C72606 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+63": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "963" ], - "x-ms-client-request-id": [ "4fe0a354-1a96-40e0-a2d4-e56bfe21562d" ], + "x-ms-unique-id": [ "964" ], + "x-ms-client-request-id": [ "0a5b3292-e59d-493f-942f-8d1e2b51776f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5831,37 +5876,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c740bb1-9c57-4daf-90e4-56b2494aa5da" ], + "x-ms-request-id": [ "a3f02668-2fe1-4699-898a-1ebe42ab5b88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f298236a-766c-47a9-a110-803cce3b8c85" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09613c11-59dc-4efd-aae8-03c3dea69ce5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07a365be-337e-4bf6-80d8-e426bc224fd0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:07a365be-337e-4bf6-80d8-e426bc224fd0" ], + "x-ms-correlation-request-id": [ "fc5b6ee9-4ee2-42f2-a29f-022e2778e67b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001527Z:fc5b6ee9-4ee2-42f2-a29f-022e2778e67b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E61CCE8054146C1BDF61A724523E7ED Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36A4712965D7436E806191DBB57F9997 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "964" ], - "x-ms-client-request-id": [ "c57bffac-b30b-48ea-8f90-0f1a71ab88e8" ], + "x-ms-unique-id": [ "965" ], + "x-ms-client-request-id": [ "87a4a0aa-921c-4f55-a5d9-b8b692b339d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5877,24 +5922,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3709b85d-cda3-42ef-850d-4efa34e743a9" ], + "x-ms-request-id": [ "57a4ef77-4f88-4321-9f94-c74816009308" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/668d7f1b-7fe7-455f-a7c1-b85e529ed99b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96f2e345-e208-4ed9-9eba-6d46b57a58b9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "140142c0-b17e-41df-8aa3-18ebe29302d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021254Z:140142c0-b17e-41df-8aa3-18ebe29302d3" ], + "x-ms-correlation-request-id": [ "f4015232-b8b0-42b3-b04f-e2c45fb3fe00" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001528Z:f4015232-b8b0-42b3-b04f-e2c45fb3fe00" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49534449EC9147159979FF93FEBE0517 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E148D95619A4C98A948F181BE9694E4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:27Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -5905,8 +5950,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "965" ], - "x-ms-client-request-id": [ "bdc810a0-e3c9-4fa2-a2c2-dae3da4dfe18" ], + "x-ms-unique-id": [ "966" ], + "x-ms-client-request-id": [ "fccde220-793c-4941-8dac-d6c5fac56445" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5924,29 +5969,29 @@ "x-ms-original-request-ids": [ "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9eab5643-05e0-475a-83c2-e6bf16929e94" ], - "x-ms-correlation-request-id": [ "9eab5643-05e0-475a-83c2-e6bf16929e94" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021256Z:9eab5643-05e0-475a-83c2-e6bf16929e94" ], + "x-ms-request-id": [ "72b0eaec-cb62-4f27-be15-4e20f34eea35" ], + "x-ms-correlation-request-id": [ "72b0eaec-cb62-4f27-be15-4e20f34eea35" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001529Z:72b0eaec-cb62-4f27-be15-4e20f34eea35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 134E3EB6AA124BD6AD7E7B12CFAE4CA2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD782F547E33454B81378496AEE828C5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:28Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "42939" ], + "Content-Length": [ "42941" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"0607097e-0000-0300-0000-6916815d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-zq9mby\",\"AppId\":\"577086da-1113-4767-8fd2-5be3162b711a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7\",\"ConnectionString\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\",\"Name\":\"Functions-PowerShell-74-zq9mby\",\"CreationDate\":\"2025-11-14T01:09:45.6834528+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-zq9mby_577086da-1113-4767-8fd2-5be3162b711a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-zq9mby-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607b791-0000-0300-0000-691681ac0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-nvsk38\",\"AppId\":\"6b2a637a-aba1-4db7-9981-515565c4013a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"91220207-0288-4ea6-97e6-e3dfcec0044e\",\"ConnectionString\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\",\"Name\":\"Functions-Node-22-nvsk38\",\"CreationDate\":\"2025-11-14T01:11:04.0715359+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-nvsk38_6b2a637a-aba1-4db7-9981-515565c4013a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-nvsk38-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607d2a1-0000-0300-0000-691681e90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-r0w8sa\",\"AppId\":\"77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"868ce2c0-1023-4398-80d6-d3e35eebb25b\",\"ConnectionString\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\",\"Name\":\"Functions-DotNet-8-r0w8sa\",\"CreationDate\":\"2025-11-14T01:12:03.525488+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-r0w8sa_77455f5c-2f64-431c-bd21-50a9fab514e9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-r0w8sa-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607dcb6-0000-0300-0000-6916823c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-wq8ygc\",\"AppId\":\"c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c03b9d8e-8300-4a6d-b792-e0ff245d67ee\",\"ConnectionString\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\",\"Name\":\"Functions-Python-312-wq8ygc\",\"CreationDate\":\"2025-11-14T01:13:27.6629314+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-wq8ygc_c4683401-bb3c-41e0-8a2a-2a9d2824c97e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-wq8ygc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0607a1ca-0000-0300-0000-691682830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b-new\",\"name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"AppId\":\"c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"ConnectionString\":\"InstrumentationKey=a866cc82-d5d8-4255-9a52-47cf08de5202;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c1f3521a-f04c-4aef-bcc1-e1cca9013861\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b-new\",\"CreationDate\":\"2025-11-14T01:14:39.0556967+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-1hufk4w38b-new_c1f3521a-f04c-4aef-bcc1-e1cca9013861_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"07075f14-0000-0300-0000-691683930000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest1-12q6pcrzoi\",\"name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"AppId\":\"fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"312a33ec-580c-489c-9e80-b4756c09f157\",\"ConnectionString\":\"InstrumentationKey=312a33ec-580c-489c-9e80-b4756c09f157;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60\",\"Name\":\"Func-PowerShell-NewTest1-12q6pcrzoi\",\"CreationDate\":\"2025-11-14T01:19:10.9931567+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-12q6pcrzoi_fc4d2b0d-6be1-443d-a27a-7c83d1fb3e60_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-12q6pcrzoi-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"080761f6-0000-0300-0000-69168a730000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-CustomImage-pj3v91g7zb\",\"name\":\"Functions-CustomImage-pj3v91g7zb\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-pj3v91g7zb\",\"AppId\":\"1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6bd7b803-b629-43e7-84ea-118a7438aa22\",\"ConnectionString\":\"InstrumentationKey=6bd7b803-b629-43e7-84ea-118a7438aa22;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1f792c5a-5a52-4eb1-9d5c-f64d8f611bad\",\"Name\":\"Functions-CustomImage-pj3v91g7zb\",\"CreationDate\":\"2025-11-14T01:48:31.1219098+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-pj3v91g7zb_1f792c5a-5a52-4eb1-9d5c-f64d8f611bad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-pj3v91g7zb-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09076a0d-0000-0300-0000-69168ac50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/microsoft.insights/components/Functions-Python-nds0y973f2\",\"name\":\"Functions-Python-nds0y973f2\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-nds0y973f2\",\"AppId\":\"283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"340c93e1-8d5d-4ae5-a29c-2e1ff98c031b\",\"ConnectionString\":\"InstrumentationKey=340c93e1-8d5d-4ae5-a29c-2e1ff98c031b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=283f8cdb-2bf3-4fd5-9d19-55f6363e54ed\",\"Name\":\"Functions-Python-nds0y973f2\",\"CreationDate\":\"2025-11-14T01:49:51.846514+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-nds0y973f2_283f8cdb-2bf3-4fd5-9d19-55f6363e54ed_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-nds0y973f2-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0907c61f-0000-0300-0000-69168b0b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b\",\"AppId\":\"744366ec-3e02-4658-a275-248f2af753fc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f24655db-a8fa-483b-8beb-f2513e70e623\",\"ConnectionString\":\"InstrumentationKey=f24655db-a8fa-483b-8beb-f2513e70e623;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=744366ec-3e02-4658-a275-248f2af753fc\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b\",\"CreationDate\":\"2025-11-14T01:51:04.2627991+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-1hufk4w38b_744366ec-3e02-4658-a275-248f2af753fc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09076952-0000-0300-0000-69168bc30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b\",\"name\":\"Functions-PowerShellTest-1hufk4w38b\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-1hufk4w38b\",\"AppId\":\"f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d0f0b38e-158d-4cae-9767-5abe5d3b54f8\",\"ConnectionString\":\"InstrumentationKey=d0f0b38e-158d-4cae-9767-5abe5d3b54f8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f5dda4ed-baee-401a-9b17-14d8809b3c0b\",\"Name\":\"Functions-PowerShellTest-1hufk4w38b\",\"CreationDate\":\"2025-11-14T01:52:36.9752274+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-1hufk4w38b_f5dda4ed-baee-401a-9b17-14d8809b3c0b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09070a6c-0000-0300-0000-69168c270000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-DotNet-ah7tpo8wyj\",\"name\":\"Functions-DotNet-ah7tpo8wyj\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-ah7tpo8wyj\",\"AppId\":\"3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"938fb9f4-abbc-4b77-8eaf-23fe410af510\",\"ConnectionString\":\"InstrumentationKey=938fb9f4-abbc-4b77-8eaf-23fe410af510;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3a9c27b8-7e9f-4a7b-8db4-7b31939efa18\",\"Name\":\"Functions-DotNet-ah7tpo8wyj\",\"CreationDate\":\"2025-11-14T01:55:47.0020078+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-ah7tpo8wyj_3a9c27b8-7e9f-4a7b-8db4-7b31939efa18_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-ah7tpo8wyj-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0907f997-0000-0300-0000-69168cc70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Java-la9uw4623c\",\"name\":\"Functions-Java-la9uw4623c\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-la9uw4623c\",\"AppId\":\"05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"648968d1-9cd1-4892-b588-9346d9996b83\",\"ConnectionString\":\"InstrumentationKey=648968d1-9cd1-4892-b588-9346d9996b83;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=05eee5e2-fef4-4c8b-b5fb-f8c7393746f2\",\"Name\":\"Functions-Java-la9uw4623c\",\"CreationDate\":\"2025-11-14T01:58:26.5139808+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-la9uw4623c_05eee5e2-fef4-4c8b-b5fb-f8c7393746f2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-la9uw4623c-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09077fad-0000-0300-0000-69168d0d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/microsoft.insights/components/Functions-Node-zur6igjh15\",\"name\":\"Functions-Node-zur6igjh15\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-zur6igjh15\",\"AppId\":\"aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"65307571-de3f-45bb-a709-be13ce2fa192\",\"ConnectionString\":\"InstrumentationKey=65307571-de3f-45bb-a709-be13ce2fa192;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=aa7e26c1-6166-4bf1-826a-9504ce5b2585\",\"Name\":\"Functions-Node-zur6igjh15\",\"CreationDate\":\"2025-11-14T01:59:36.5096857+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-zur6igjh15_aa7e26c1-6166-4bf1-826a-9504ce5b2585_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-zur6igjh15-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"09071ec2-0000-0300-0000-69168d580000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-DotNet-Isolateduhnte46q0o\",\"name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolateduhnte46q0o\",\"AppId\":\"20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66\",\"ConnectionString\":\"InstrumentationKey=725b9b26-1ff3-4bf5-8b9a-414ea3d8bf66;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=20f53ecf-4616-4b66-83b2-6b97bbcb3dc7\",\"Name\":\"Functions-DotNet-Isolateduhnte46q0o\",\"CreationDate\":\"2025-11-14T02:00:53.143562+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-isolateduhnte46q0o_20f53ecf-4616-4b66-83b2-6b97bbcb3dc7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolateduhnte46q0o-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0907b6de-0000-0300-0000-69168db80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-CustomHandleri5nz8vgkem\",\"name\":\"Functions-CustomHandleri5nz8vgkem\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandleri5nz8vgkem\",\"AppId\":\"06745c29-799b-43b3-b8c9-54843eeb4670\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f372138b-4ab7-40fd-b010-fee6cc2bb239\",\"ConnectionString\":\"InstrumentationKey=f372138b-4ab7-40fd-b010-fee6cc2bb239;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=06745c29-799b-43b3-b8c9-54843eeb4670\",\"Name\":\"Functions-CustomHandleri5nz8vgkem\",\"CreationDate\":\"2025-11-14T02:02:28.5948796+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandleri5nz8vgkem_06745c29-799b-43b3-b8c9-54843eeb4670_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandleri5nz8vgkem-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0a07270b-0000-0300-0000-69168e590000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest2-zeaoxcpv3i\",\"name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"AppId\":\"f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8ab8c13b-cb8c-4057-ace2-9817a5305f7a\",\"ConnectionString\":\"InstrumentationKey=8ab8c13b-cb8c-4057-ace2-9817a5305f7a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f831a539-3e5d-49d6-bdf4-43ce042be59e\",\"Name\":\"Func-PowerShell-NewTest2-zeaoxcpv3i\",\"CreationDate\":\"2025-11-14T02:04:47.2094865+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-zeaoxcpv3i_f831a539-3e5d-49d6-bdf4-43ce042be59e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-zeaoxcpv3i-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0a07ed29-0000-0300-0000-69168ec40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest3-q8hc7lwuof\",\"name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"AppId\":\"13f9830f-d3d2-4f00-8604-138ae14192a3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a2d07edd-5a45-4ea6-a03a-d882e0c9c478\",\"ConnectionString\":\"InstrumentationKey=a2d07edd-5a45-4ea6-a03a-d882e0c9c478;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=13f9830f-d3d2-4f00-8604-138ae14192a3\",\"Name\":\"Func-PowerShell-NewTest3-q8hc7lwuof\",\"CreationDate\":\"2025-11-14T02:06:56.1634563+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-q8hc7lwuof_13f9830f-d3d2-4f00-8604-138ae14192a3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-q8hc7lwuof-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0a07bf58-0000-0300-0000-69168f6d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"AppId\":\"692703d7-d09f-4ca6-8db1-f6818eb06864\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"841bc0cc-9927-438f-8358-7fda9e4d46c0\",\"ConnectionString\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"Name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"CreationDate\":\"2025-11-14T02:09:44.1454383+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-0vcunwydg7_692703d7-d09f-4ca6-8db1-f6818eb06864_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-0vcunwydg7-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803fa6c-0000-0200-0000-691684290000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-fqti\",\"name\":\"Functions-Flex-DotNetIsolated-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-fqti\",\"AppId\":\"823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0efc83b9-d2e9-496d-b76a-e87df304b77e\",\"ConnectionString\":\"InstrumentationKey=0efc83b9-d2e9-496d-b76a-e87df304b77e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=823ef2bc-8959-4971-9e37-d58eb123f38b\",\"Name\":\"Functions-Flex-DotNetIsolated-fqti\",\"CreationDate\":\"2025-11-14T01:21:33.3685541+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-fqti_823ef2bc-8959-4971-9e37-d58eb123f38b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033075-0000-0200-0000-691684ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Node-fqti\",\"name\":\"Functions-Flex-Node-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-fqti\",\"AppId\":\"968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aa497dca-41c0-4f25-ad85-ea184f06d59b\",\"ConnectionString\":\"InstrumentationKey=aa497dca-41c0-4f25-ad85-ea184f06d59b;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=968cb2e5-19cd-47be-8eca-ca4b54c56198\",\"Name\":\"Functions-Flex-Node-fqti\",\"CreationDate\":\"2025-11-14T01:23:48.8943199+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-fqti_968cb2e5-19cd-47be-8eca-ca4b54c56198_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78033d7f-0000-0200-0000-6916852e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Python-fqti\",\"name\":\"Functions-Flex-Python-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-fqti\",\"AppId\":\"c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a897e4a4-c870-4a15-b6df-76a54fac74ca\",\"ConnectionString\":\"InstrumentationKey=a897e4a4-c870-4a15-b6df-76a54fac74ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c8d3eeb1-cc4b-4546-ae45-fd80c21d286a\",\"Name\":\"Functions-Flex-Python-fqti\",\"CreationDate\":\"2025-11-14T01:25:56.8152138+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-fqti_c8d3eeb1-cc4b-4546-ae45-fd80c21d286a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78030586-0000-0200-0000-691685b30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Java-fqti\",\"name\":\"Functions-Flex-Java-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-fqti\",\"AppId\":\"506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5f545946-1221-4899-8409-2baa332ca728\",\"ConnectionString\":\"InstrumentationKey=5f545946-1221-4899-8409-2baa332ca728;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=506250a4-0ecc-4d16-8014-fb7524d4703c\",\"Name\":\"Functions-Flex-Java-fqti\",\"CreationDate\":\"2025-11-14T01:28:08.7465952+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-fqti_506250a4-0ecc-4d16-8014-fb7524d4703c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78036d8f-0000-0200-0000-6916863e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-PowerShell-fqti\",\"name\":\"Functions-Flex-PowerShell-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-fqti\",\"AppId\":\"f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5e7b4cd9-73cb-403a-af0a-64ff32c02c12\",\"ConnectionString\":\"InstrumentationKey=5e7b4cd9-73cb-403a-af0a-64ff32c02c12;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f22e7b45-3b1f-44aa-bf06-d4dd323abd9f\",\"Name\":\"Functions-Flex-PowerShell-fqti\",\"CreationDate\":\"2025-11-14T01:30:28.5375832+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-fqti_f22e7b45-3b1f-44aa-bf06-d4dd323abd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78035797-0000-0200-0000-691686c10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Flex-Custom-fqti\",\"name\":\"Functions-Flex-Custom-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-fqti\",\"AppId\":\"14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"143ef9ce-b044-489b-a861-98f08c756b79\",\"ConnectionString\":\"InstrumentationKey=143ef9ce-b044-489b-a861-98f08c756b79;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=14dddbd1-fcb1-48dc-995c-951171fe2050\",\"Name\":\"Functions-Flex-Custom-fqti\",\"CreationDate\":\"2025-11-14T01:32:39.371848+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-fqti_14dddbd1-fcb1-48dc-995c-951171fe2050_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"7803b09f-0000-0200-0000-691687430000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-fqti\",\"name\":\"Functions-Python-Flex-Scaling-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-fqti\",\"AppId\":\"f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bd21d36f-2dc5-44b2-9972-cf28dac8d726\",\"ConnectionString\":\"InstrumentationKey=bd21d36f-2dc5-44b2-9972-cf28dac8d726;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=f5571936-d55e-4e8c-8611-251a7ef7afc0\",\"Name\":\"Functions-Python-Flex-Scaling-fqti\",\"CreationDate\":\"2025-11-14T01:34:50.0402919+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-fqti_f5571936-d55e-4e8c-8611-251a7ef7afc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"78031fa7-0000-0200-0000-691687c70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Node-SystemIdentity-fqti\",\"name\":\"Functions-Node-SystemIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-fqti\",\"AppId\":\"269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a1b15bef-4df1-46f5-8ef7-d8e8f302abca\",\"ConnectionString\":\"InstrumentationKey=a1b15bef-4df1-46f5-8ef7-d8e8f302abca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=269d91da-c89b-4f48-ae9b-b80601d7c805\",\"Name\":\"Functions-Node-SystemIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:37:01.0199716+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-fqti_269d91da-c89b-4f48-ae9b-b80601d7c805_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780384ae-0000-0200-0000-691688480000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-fqti\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"AppId\":\"4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c59dec64-225e-4f2a-9c2b-65004cec61ca\",\"ConnectionString\":\"InstrumentationKey=c59dec64-225e-4f2a-9c2b-65004cec61ca;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=4eae3893-4654-43e2-94cf-9c61db1775ec\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-fqti\",\"CreationDate\":\"2025-11-14T01:39:10.2457191+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-fqti_4eae3893-4654-43e2-94cf-9c61db1775ec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780310b6-0000-0200-0000-691688ce0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-PS-CustomConfig-fqti\",\"name\":\"Functions-PS-CustomConfig-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-fqti\",\"AppId\":\"986f7406-ebeb-4294-ab2d-3752dc766278\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7d557552-614c-4aa8-b52b-bfb83f30b33e\",\"ConnectionString\":\"InstrumentationKey=7d557552-614c-4aa8-b52b-bfb83f30b33e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=986f7406-ebeb-4294-ab2d-3752dc766278\",\"Name\":\"Functions-PS-CustomConfig-fqti\",\"CreationDate\":\"2025-11-14T01:41:24.4271273+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-fqti_986f7406-ebeb-4294-ab2d-3752dc766278_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"780305c8-0000-0200-0000-69168a110000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/microsoft.insights/components/Functions-Remove-FlexPlan-fqti\",\"name\":\"Functions-Remove-FlexPlan-fqti\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-fqti\",\"AppId\":\"0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e49ed1a3-64f6-4bb2-9926-8c63360b2424\",\"ConnectionString\":\"InstrumentationKey=e49ed1a3-64f6-4bb2-9926-8c63360b2424;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0823e19a-ea36-42d1-8cc8-def2dda9bd9f\",\"Name\":\"Functions-Remove-FlexPlan-fqti\",\"CreationDate\":\"2025-11-14T01:46:46.7503128+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-fqti_0823e19a-ea36-42d1-8cc8-def2dda9bd9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-fqti-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"2e00aeba-0000-0300-0000-6917b6a60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-1atxo6\",\"AppId\":\"e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"53405245-5093-44e0-a9cc-cd426c74b85c\",\"ConnectionString\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Name\":\"Functions-PowerShell-74-1atxo6\",\"CreationDate\":\"2025-11-14T23:09:20.4769102+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-1atxo6_e667224e-63d9-4b58-bb3e-e4bea5f2998e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-1atxo6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0068c6-0000-0300-0000-6917b6f60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-fh9m0d\",\"AppId\":\"0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"36242a54-f281-419e-b84a-a18b99e16280\",\"ConnectionString\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Name\":\"Functions-Node-22-fh9m0d\",\"CreationDate\":\"2025-11-14T23:10:40.9294639+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-fh9m0d_0c3e3e43-71c6-4f32-8603-6f0551f7cdf7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-fh9m0d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0039cf-0000-0300-0000-6917b7310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-du5asv\",\"AppId\":\"1ec6fdef-6987-470b-8410-eea09542cb04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e62ada86-7580-495a-8077-5b5a93de6f32\",\"ConnectionString\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\",\"Name\":\"Functions-DotNet-8-du5asv\",\"CreationDate\":\"2025-11-14T23:11:41.0752283+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-du5asv_1ec6fdef-6987-470b-8410-eea09542cb04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-du5asv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0083da-0000-0300-0000-6917b7860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-w61tuq\",\"AppId\":\"e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"279763ee-9e4a-474e-a4ce-8ee813ab10e6\",\"ConnectionString\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Name\":\"Functions-Python-312-w61tuq\",\"CreationDate\":\"2025-11-14T23:13:05.5690645+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-w61tuq_e07f516a-6724-4c46-8f4a-555cb3096b98_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-w61tuq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e005fe4-0000-0300-0000-6917b7cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"AppId\":\"7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"ConnectionString\":\"InstrumentationKey=f45b116a-0da0-498b-9bda-9d9ebe6bf3de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"CreationDate\":\"2025-11-14T23:14:15.0740314+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-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2f007d1a-0000-0300-0000-6917b94c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"AppId\":\"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\"ConnectionString\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"CreationDate\":\"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003e08-0000-0300-0000-6917c0250000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-fbul4mq5e0\",\"AppId\":\"b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dab7d157-c584-47fb-b28a-55b4bfbb1f8c\",\"ConnectionString\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\"Name\":\"Functions-CustomImage-fbul4mq5e0\",\"CreationDate\":\"2025-11-14T23:49:51.5267214+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-fbul4mq5e0_b9c165d8-9fe2-4e81-9efb-511bd51fa2d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-fbul4mq5e0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003e14-0000-0300-0000-6917c0830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-kbt35oepnm\",\"AppId\":\"cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9a08513b-9f3a-4de1-9110-97f554e1b81f\",\"ConnectionString\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\"Name\":\"Functions-Python-kbt35oepnm\",\"CreationDate\":\"2025-11-14T23:51:11.7052492+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-kbt35oepnm_cd104da8-da7e-46c9-88dc-c16ff0b911e3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-kbt35oepnm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30001b1d-0000-0300-0000-6917c0cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"AppId\":\"983a9748-76c5-4f91-bee1-5844312f2f2b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"14318ae2-abd9-4e03-a2f0-b97dee371cc7\",\"ConnectionString\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"CreationDate\":\"2025-11-14T23:52:37.7229979+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-0d6xycl2n4_983a9748-76c5-4f91-bee1-5844312f2f2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30009033-0000-0300-0000-6917c1870000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"AppId\":\"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\"ConnectionString\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"CreationDate\":\"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000d93e-0000-0300-0000-6917c1e80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-k691hsj4cf\",\"AppId\":\"813fb594-7633-494f-83ae-4d8aeacffe06\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0a9d18f6-4326-48ef-8f02-14db1b1e8b6b\",\"ConnectionString\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\",\"Name\":\"Functions-DotNet-k691hsj4cf\",\"CreationDate\":\"2025-11-14T23:57:24.5180411+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-k691hsj4cf_813fb594-7633-494f-83ae-4d8aeacffe06_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-k691hsj4cf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30004159-0000-0300-0000-6917c2ae0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-l6hz0unsba\",\"AppId\":\"6b9952e2-bfa7-4603-bd71-774073340bf3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f944282d-33a8-4add-8c95-407d930a05aa\",\"ConnectionString\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\",\"Name\":\"Functions-Java-l6hz0unsba\",\"CreationDate\":\"2025-11-15T00:00:41.738444+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-l6hz0unsba_6b9952e2-bfa7-4603-bd71-774073340bf3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-l6hz0unsba-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003c63-0000-0300-0000-6917c2fe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-8b1039t6ur\",\"AppId\":\"662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5\",\"ConnectionString\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\"Name\":\"Functions-Node-8b1039t6ur\",\"CreationDate\":\"2025-11-15T00:02:00.6987807+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-8b1039t6ur_662d84aa-a98e-4dbf-869e-8efad7a8e1b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-8b1039t6ur-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30006c6d-0000-0300-0000-6917c34f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"AppId\":\"e8e92f95-a7da-4018-9057-bc9a6e1490db\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"54b9b2d9-4424-43ab-9077-c29c4fca9160\",\"ConnectionString\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\",\"Name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"CreationDate\":\"2025-11-15T00:03:23.1804035+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-isolatedhfo7435u8j_e8e92f95-a7da-4018-9057-bc9a6e1490db_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedhfo7435u8j-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30005779-0000-0300-0000-6917c3ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandler325nikcosm\",\"AppId\":\"6cb10d77-b206-4054-875d-5578f21336b7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77\",\"ConnectionString\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\",\"Name\":\"Functions-CustomHandler325nikcosm\",\"CreationDate\":\"2025-11-15T00:04:56.5740499+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandler325nikcosm_6cb10d77-b206-4054-875d-5578f21336b7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandler325nikcosm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000018e-0000-0300-0000-6917c4560000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"AppId\":\"166fb684-6993-41b0-a11d-edb087c69973\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bb52893b-0083-49c6-9e99-39e2358c0905\",\"ConnectionString\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\"Name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"CreationDate\":\"2025-11-15T00:07:22.1750446+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-fdgw6nz0r1_166fb684-6993-41b0-a11d-edb087c69973_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-fdgw6nz0r1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000a99b-0000-0300-0000-6917c4c20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"AppId\":\"5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0b410fca-9b3b-412e-8fce-f7c5eb94a422\",\"ConnectionString\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"Name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"CreationDate\":\"2025-11-15T00:09:32.9413769+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-wbuk7grly4_5ae0ffcd-7e7a-4681-840c-63a311aa22dc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-wbuk7grly4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000dab3-0000-0300-0000-6917c5820000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"AppId\":\"30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d30b5173-58dd-434e-a1bd-f659bfc9254b\",\"ConnectionString\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"Name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"CreationDate\":\"2025-11-15T00:12:18.4919987+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-195kucxe6q_30ef05f9-a5c0-46ae-a803-b842e50d91b4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-195kucxe6q-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-8wks\",\"AppId\":\"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\"ConnectionString\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Name\":\"Functions-Flex-DotNetIsolated-8wks\",\"CreationDate\":\"2025-11-14T23:22:43.5766283+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-8wks\",\"AppId\":\"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\"ConnectionString\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Name\":\"Functions-Flex-Node-8wks\",\"CreationDate\":\"2025-11-14T23:24:55.9628013+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-8wks\",\"AppId\":\"0fd5bb15-8254-462a-b124-f01de57491fa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6646e0da-7c3a-4442-b697-9e3161408467\",\"ConnectionString\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\",\"Name\":\"Functions-Flex-Python-8wks\",\"CreationDate\":\"2025-11-14T23:27:10.9745115+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-8wks\",\"AppId\":\"a21649a5-21a9-4a06-9682-73121bf51140\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\"ConnectionString\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\",\"Name\":\"Functions-Flex-Java-8wks\",\"CreationDate\":\"2025-11-14T23:29:21.9297403+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-8wks\",\"AppId\":\"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8aeec65a-58b3-4406-be83-a2af16406d60\",\"ConnectionString\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Name\":\"Functions-Flex-PowerShell-8wks\",\"CreationDate\":\"2025-11-14T23:31:32.4922476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-8wks\",\"AppId\":\"67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"246f07f9-7f47-4fe4-b736-28824b450760\",\"ConnectionString\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Name\":\"Functions-Flex-Custom-8wks\",\"CreationDate\":\"2025-11-14T23:33:45.854673+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-8wks\",\"AppId\":\"33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dc1718c9-6151-4735-9017-ed993ce3056c\",\"ConnectionString\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Name\":\"Functions-Python-Flex-Scaling-8wks\",\"CreationDate\":\"2025-11-14T23:36:00.7780637+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-8wks\",\"AppId\":\"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72f873d8-e77f-4cd1-b81b-333b88113567\",\"ConnectionString\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Name\":\"Functions-Node-SystemIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:38:16.9557851+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"AppId\":\"6496531f-759a-4e89-9157-c2dd51765c50\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\"ConnectionString\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:40:27.9512322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-8wks\",\"AppId\":\"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\"ConnectionString\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Name\":\"Functions-PS-CustomConfig-8wks\",\"CreationDate\":\"2025-11-14T23:42:44.0467968+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03628b-0000-0200-0000-6917bfbe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-8wks\",\"AppId\":\"3b443da0-e327-4130-9731-2a9a6a063cbb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e\",\"ConnectionString\":\"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\",\"Name\":\"Functions-Remove-FlexPlan-8wks\",\"CreationDate\":\"2025-11-14T23:48:03.2101122+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-8wks_3b443da0-e327-4130-9731-2a9a6a063cbb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-8wks-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+66": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01+66": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"a866cc82-d5d8-4255-9a52-47cf08de5202\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-0vcunwydg7\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\"\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\"\r\n },\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5960,39 +6005,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C1C609895\"" ], + "ETag": [ "\"1DC55C4DE8C674B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48d883c0-fc56-42e4-8cea-d73a88893c8c" ], + "x-ms-request-id": [ "2886d2a4-8aec-4b0e-90ae-3c5546a438d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4776a82e-8cbc-4015-b199-1fe6a329092c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8d42d5fd-2776-4eb2-ab96-8b7a868a8035" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "31f376f9-4a49-43f1-90b2-315dea01e7ca" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T021259Z:31f376f9-4a49-43f1-90b2-315dea01e7ca" ], + "x-ms-correlation-request-id": [ "6b0861b3-f73e-40cf-974c-3887d7dd6391" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T001532Z:6b0861b3-f73e-40cf-974c-3887d7dd6391" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8561835DA166478CB4812BFFEABF8B90 Ref B: MWH011020806052 Ref C: 2025-11-14T02:12:56Z" ], - "Date": [ "Fri, 14 Nov 2025 02:12:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB001400C6B94D6F962E2F2025C12093 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:15:29Z" ], + "Date": [ "Sat, 15 Nov 2025 00:15:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8603" ], + "Content-Length": [ "8592" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:15:30.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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "967" ], - "x-ms-client-request-id": [ "1d1380d4-6019-485d-89b4-f979c5a9be10" ], + "x-ms-unique-id": [ "968" ], + "x-ms-client-request-id": [ "8b011128-9429-4381-b997-e55f60b8a66d" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6006,38 +6051,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C31C90B60\"" ], + "ETag": [ "\"1DC55C4F3CCABA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cac745f6-5a14-4df7-b4ec-19fbeca6109e" ], + "x-ms-request-id": [ "7b8e2cd0-12bb-4460-ac84-fb833b44f329" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46a01022-434f-4cae-8e4d-e4c291b4d339" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021329Z:46a01022-434f-4cae-8e4d-e4c291b4d339" ], + "x-ms-correlation-request-id": [ "b02e7369-cfd3-4034-8f22-7b9971ec8e73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001603Z:b02e7369-cfd3-4034-8f22-7b9971ec8e73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0600D8F9CCA4101AAB37DC05F444EBC Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:29Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04D8A3C97CCD43EC965F0A0840D44F6E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8577" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:15:30.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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+68": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "968" ], - "x-ms-client-request-id": [ "19c04486-dcb3-4b1b-ae11-9bc7ada5b636" ], + "x-ms-unique-id": [ "969" ], + "x-ms-client-request-id": [ "86b23ac8-a25e-49ef-98c8-b65572c74623" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6053,36 +6098,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82acb56b-0add-4b7e-86c0-98301453b11c" ], + "x-ms-request-id": [ "74a7cacf-d764-432a-b4e0-969b7aaaea38" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cfe12dd4-90d8-428e-b532-2b805c840858" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2a0d4693-b77c-4c41-8ea5-5e7111ef3c4b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a92b39fd-f183-45a7-93e4-37b0dd48da31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021330Z:a92b39fd-f183-45a7-93e4-37b0dd48da31" ], + "x-ms-correlation-request-id": [ "9ee2146e-3d5d-47d2-9e11-5c8df36593b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001603Z:9ee2146e-3d5d-47d2-9e11-5c8df36593b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21A8F48ABFA14A0599780B88255E6ADC Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:29Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE261937BBFA4933917F1E8FE6756C0E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "969" ], - "x-ms-client-request-id": [ "027ead96-6c70-4175-a916-ae0bd3ec8ebe" ], + "x-ms-unique-id": [ "970" ], + "x-ms-client-request-id": [ "6b077762-e181-423a-ab66-5cbd7f458694" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6097,38 +6142,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C31C90B60\"" ], + "ETag": [ "\"1DC55C4F3CCABA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2bc8a30-88bc-4622-a389-60d299ba09c2" ], + "x-ms-request-id": [ "3d968810-6a39-4be7-a1db-af0da17075b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0bb64d23-e4d2-4807-9de2-bba3737eaf3c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021330Z:0bb64d23-e4d2-4807-9de2-bba3737eaf3c" ], + "x-ms-correlation-request-id": [ "99d1b6c7-5830-4dc8-bd01-c24be0ba3ed4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001603Z:99d1b6c7-5830-4dc8-bd01-c24be0ba3ed4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55F61C1CDBB84C77BA4E32B812127D4F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27FA783FE76947058C7FA2FD057C4469 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8577" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:15:30.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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+70": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+70": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "970" ], - "x-ms-client-request-id": [ "50fa54dd-9cce-41d8-bcf7-8a8e8bbcb783" ], + "x-ms-unique-id": [ "971" ], + "x-ms-client-request-id": [ "94b9ab40-b7e7-4fb0-97ee-b2cfd1c650c5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6144,36 +6189,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58a833a1-ab75-4b0f-a585-7a2830980809" ], + "x-ms-request-id": [ "7c189f50-b695-468e-9d96-0b6fa521290f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f52bcee-2e0c-4b16-8fcc-06b6fd22c07a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4bb547bb-7271-466a-a8b9-02a43b803ca0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ae612ae1-f337-47d4-a344-5a4e78a80cd1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021330Z:ae612ae1-f337-47d4-a344-5a4e78a80cd1" ], + "x-ms-correlation-request-id": [ "45fe5e17-0ed4-4b6c-89c1-ad9ecd2c31a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001604Z:45fe5e17-0ed4-4b6c-89c1-ad9ecd2c31a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FACEC7B554EB453081D7FF18F8387D72 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E1463AB4CF54A1EB4DB728E7A7A609D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+71": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "971" ], - "x-ms-client-request-id": [ "712c005f-e00b-40bc-9978-402fe1d2459a" ], + "x-ms-unique-id": [ "972" ], + "x-ms-client-request-id": [ "7533cc76-c64a-4f6d-86fc-d0037dbaa1d2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6189,37 +6234,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3852ba2-0cf5-4582-93d0-21d2387dcda0" ], + "x-ms-request-id": [ "c28d43cf-67bc-4dfe-849d-c14e6d0df455" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1dfc606f-9da4-4c30-b9c0-6e1d70478c5d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3bcf7a6-44f9-43a0-ae84-7b0baa59ea0c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "600ba9a2-5108-4d6a-9ba8-74eeaa60a338" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021331Z:600ba9a2-5108-4d6a-9ba8-74eeaa60a338" ], + "x-ms-correlation-request-id": [ "fa84af34-a9cf-4274-bffd-4deba14cd44f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001604Z:fa84af34-a9cf-4274-bffd-4deba14cd44f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C43327A397D41E79AB70D86720CC4A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDB41759739C4A7F9C07277D8D2EA4CF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01+72": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "972" ], - "x-ms-client-request-id": [ "481e7e86-4d91-4f10-b305-f2ec6d1b299c" ], + "x-ms-unique-id": [ "973" ], + "x-ms-client-request-id": [ "85647cb7-1eae-4b71-aa4a-dca4240e0fe9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6234,38 +6279,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C31C90B60\"" ], + "ETag": [ "\"1DC55C4F3CCABA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c42c91f-c8ee-45e5-9b4f-bfed6a856bee" ], + "x-ms-request-id": [ "edf19d92-9101-474b-8117-0e958f824e9e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77d77633-f97a-43b5-87dd-75bd31b667f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021331Z:77d77633-f97a-43b5-87dd-75bd31b667f1" ], + "x-ms-correlation-request-id": [ "95111f5a-02ab-4fbd-9742-f5feda88c3d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001604Z:95111f5a-02ab-4fbd-9742-f5feda88c3d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27CE85DB3F8D45498A9A9A2DCD276F3B Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:31Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DED0F83A38CF467BB26062FB1B08185A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8577" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest5-0vcunwydg7\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"func-powershell-newtest5-0vcunwydg7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-0vcunwydg7.azurewebsites.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-0vcunwydg7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:12:57.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-0vcunwydg7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest5-0vcunwydg7\\\\$Func-PowerShell-NewTest5-0vcunwydg7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest5-0vcunwydg7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest5-195kucxe6q\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"func-powershell-newtest5-195kucxe6q.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-195kucxe6q.azurewebsites.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-195kucxe6q.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:15:30.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-195kucxe6q\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest5-195kucxe6q\\\\$Func-PowerShell-NewTest5-195kucxe6q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest5-195kucxe6q.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01+73": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01+73": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "973" ], - "x-ms-client-request-id": [ "7f3c3fb6-0405-4807-be0b-b04d2c9a2cde" ], + "x-ms-unique-id": [ "974" ], + "x-ms-client-request-id": [ "d900c404-e129-4326-91a7-f38ae7078b7b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6281,36 +6326,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2674ca0-c2a8-48a3-9fe1-faf8f97d7900" ], + "x-ms-request-id": [ "7e353021-5b10-4f13-8d23-484665c7eb8b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b207ff3-20d9-46d2-8cf8-d8a39e9b4b25" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9e3a1e1-71b4-4c74-8d16-c2d7709709e4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1afa5832-9f6d-4835-9d57-ca31528091ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021332Z:1afa5832-9f6d-4835-9d57-ca31528091ab" ], + "x-ms-correlation-request-id": [ "a6b77b95-e260-4f12-ac92-620ac7fa518e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001604Z:a6b77b95-e260-4f12-ac92-620ac7fa518e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96531D10FB3840E39ED76EEB4697644F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:32Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BBB8DB0D56184A7C9B881A0B93FEE310 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a866cc82-d5d8-4255-9a52-47cf08de5202\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-0vcunwydg7\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=841bc0cc-9927-438f-8358-7fda9e4d46c0;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=692703d7-d09f-4ca6-8db1-f6818eb06864\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01+74": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01+74": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "974" ], - "x-ms-client-request-id": [ "4244137b-2f1f-4fbc-94de-586d762015fe" ], + "x-ms-unique-id": [ "975" ], + "x-ms-client-request-id": [ "423e3268-2d56-4867-962f-7b0acff4a8dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6326,37 +6371,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13252450-986e-462c-9ca1-49c83e64f643" ], + "x-ms-request-id": [ "89e5145b-b2d9-4fcd-a248-86130df2eda5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54f4f4e6-4310-4a12-8386-4352ed3553ca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/503c29b6-de3c-4521-b174-27e531e9cba6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0f13c0a6-2442-47c4-9adb-621cc05915ba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021332Z:0f13c0a6-2442-47c4-9adb-621cc05915ba" ], + "x-ms-correlation-request-id": [ "13198ded-f439-42f5-89ff-14ac7ee6f093" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001605Z:13198ded-f439-42f5-89ff-14ac7ee6f093" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C011D72B2A6C4372AA9EEF5D8EF34B75 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:32Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A306C7C0A4F4F3E8061BCD254C6BA23 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7/config/web\",\"name\":\"Func-PowerShell-NewTest5-0vcunwydg7\",\"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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/web\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+75": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01+75": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "975" ], - "x-ms-client-request-id": [ "77e7f026-7d71-4499-a384-75fbb5d6a643" ], + "x-ms-unique-id": [ "976" ], + "x-ms-client-request-id": [ "bcb134aa-6f21-434f-b043-02fb8c1298b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6372,36 +6417,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50f43942-af04-4fe0-a050-0ce25ed9bdf3" ], + "x-ms-request-id": [ "166038f0-ec3e-4a1b-916d-9f8ba6cbad8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "de00a874-5b0a-490f-8ecd-8e5f678e2d36" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021333Z:de00a874-5b0a-490f-8ecd-8e5f678e2d36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5359fea0-1060-4cd9-a9e5-a2b020872d1a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001605Z:5359fea0-1060-4cd9-a9e5-a2b020872d1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 512D3BDAF05541169593E246AA06D04F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:32Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3A4934B7D80402CAC23AE9345066C6D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:13:38.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+76": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+76": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-0vcunwydg7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "976" ], - "x-ms-client-request-id": [ "44a249e3-e042-4851-9f7e-507270fe6945" ], + "x-ms-unique-id": [ "977" ], + "x-ms-client-request-id": [ "92011044-bf61-440c-8874-498372c64a4b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6416,20 +6461,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C31C90B60\"" ], + "ETag": [ "\"1DC55C4F3CCABA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b7ad12a-371e-4330-9e85-fbecc84fcaf8" ], + "x-ms-request-id": [ "37733a6c-86e9-4225-bf49-2865b6b3905d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8dfe2b11-cbbb-4407-bd3a-2e2fba532f4e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f8ede06b-c20d-40db-8976-255c23ecb649" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "45cfaf4e-55cb-4966-82c0-3e2b65adf529" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021342Z:45cfaf4e-55cb-4966-82c0-3e2b65adf529" ], + "x-ms-correlation-request-id": [ "9378eb89-be10-4b37-afd8-a5ca254031b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001613Z:9378eb89-be10-4b37-afd8-a5ca254031b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C13FBC87E5B47DA99BA3F8E10D6E1A2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E812B93524748B39163C8BDD52945EA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6439,15 +6484,15 @@ "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+77": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01+77": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "977" ], - "x-ms-client-request-id": [ "e28e7d83-b749-48a6-9861-cde6bbe49f61" ], + "x-ms-unique-id": [ "978" ], + "x-ms-client-request-id": [ "1fe63eee-2578-4006-ad7d-80022c682328" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6463,36 +6508,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acfc2eb7-14f4-4fe0-bf58-40376be6c6ea" ], + "x-ms-request-id": [ "e524af8b-b91d-49f5-b751-2a9cc19f8d6f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "152a563b-57a8-402e-afdc-426dcc2de141" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021342Z:152a563b-57a8-402e-afdc-426dcc2de141" ], + "x-ms-correlation-request-id": [ "18a9cb9b-61cb-41a7-87b4-ead35e14f194" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001614Z:18a9cb9b-61cb-41a7-87b4-ead35e14f194" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF8EF8BFD62F46139906FF44D23BDC7F Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14F3B82B194D49E68176D0BF4CEFDEB9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr\",\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98956,\"name\":\"Func-Windows-Premium-New3-5b9pkr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98956\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:09:05.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94041,\"name\":\"Func-Windows-Premium-New3-rbyjn8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94041\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:11:40.6166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01+78": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01+78": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-5b9pkr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "978" ], - "x-ms-client-request-id": [ "5f544003-199e-4367-8aad-f1bec93e5a7b" ], + "x-ms-unique-id": [ "979" ], + "x-ms-client-request-id": [ "6459c0b1-2041-4f1e-8c58-6a8e61fffe0c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6508,18 +6553,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e14053e-f4d5-4ce0-98fb-82ac0aa3beee" ], + "x-ms-request-id": [ "89b9595c-f76a-41ee-b393-12d7c7a1bbe9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2750911b-af2c-49c5-9852-ce6e88eb0c0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b77de1a-59dd-4757-a9b6-382c3d5b9b31" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8f67c0d6-5450-43ab-886b-2e7860bd285a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021352Z:8f67c0d6-5450-43ab-886b-2e7860bd285a" ], + "x-ms-correlation-request-id": [ "d4f7ae55-f1fe-46ec-9a7e-c84a89cf5d32" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001620Z:d4f7ae55-f1fe-46ec-9a7e-c84a89cf5d32" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9387DD6EC934265930D45EB8FD12E37 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4202B4F9AB9C43C8BE53F30650675BC7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6529,15 +6574,15 @@ "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+79": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01+79": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "979" ], - "x-ms-client-request-id": [ "a3fcdd2b-b899-480f-8486-c60fe0add667" ], + "x-ms-unique-id": [ "980" ], + "x-ms-client-request-id": [ "adf33b47-a129-45f9-9aa9-df8ec976d0ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6553,36 +6598,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a012e844-8f43-4f2c-b413-df94270b7f96" ], + "x-ms-request-id": [ "d2a37d96-64e3-491e-a3eb-837223f778fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2e309db5-9f4b-4e89-b0a0-232cb0942cda" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021352Z:2e309db5-9f4b-4e89-b0a0-232cb0942cda" ], + "x-ms-correlation-request-id": [ "37318d40-5134-441f-9bb9-8cf1bdb1c11f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001620Z:37318d40-5134-441f-9bb9-8cf1bdb1c11f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6956D83D218145A28940B765208C2217 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27BF35646F934BBAA52B889DB86840AF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:20Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98957,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98957\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:11:05.0066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94042,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94042\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:13:38.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01+80": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01+80": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "980" ], - "x-ms-client-request-id": [ "4e382e18-f305-404e-9969-aa625b866584" ], + "x-ms-unique-id": [ "981" ], + "x-ms-client-request-id": [ "af1cb45b-c53a-4542-8e18-5637c83207cf" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6598,18 +6643,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e2b183d-dfd7-4b37-8fdb-07633dd6ee25" ], + "x-ms-request-id": [ "b2809e6f-e10c-4a65-9900-d56bb2c5822d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51ff76cf-370b-46d7-9c62-15efbfd3f1a8" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "09a660ce-9307-4f30-aad7-6a14c3da36f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021359Z:09a660ce-9307-4f30-aad7-6a14c3da36f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83ca8c4a-bccc-46a2-95cf-15424aba9e61" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "32feedd7-cd8a-47ff-8aa6-c9124350fe6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001625Z:32feedd7-cd8a-47ff-8aa6-c9124350fe6d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD398F2D17C64DE2B6F785A19A9CF532 Ref B: MWH011020806052 Ref C: 2025-11-14T02:13:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:13:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0774B19DECF142DCBFC42F43BBF97C52 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:20Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:24 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 61ef1ee0d593..1d1ac8297be5 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,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "981" ], - "x-ms-client-request-id": [ "5b2b27b2-65a1-4c1f-8410-eb4ace39527b" ], + "x-ms-unique-id": [ "982" ], + "x-ms-client-request-id": [ "6932c9fe-da99-4f2d-88dd-8b70ab9eef07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e92aea4-b0bf-40a7-962b-7c34943e9b6b" ], + "x-ms-request-id": [ "b80fd12a-7cc6-4565-8aa3-cdf6b58e4e87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/092d5973-41e3-4cfc-974a-905c267f7106" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2488364-0301-4624-9298-146760abd7e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "22b80a61-b3de-4fb5-82a3-189bef9c2398" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021400Z:22b80a61-b3de-4fb5-82a3-189bef9c2398" ], + "x-ms-correlation-request-id": [ "d48b4300-90e4-4a5b-83fe-cd94aa307f6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001626Z:d48b4300-90e4-4a5b-83fe-cd94aa307f6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 43B5D11BA90349F39AF98CBC66123519 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 427BC5EA34FC4873A95DAC38CE861192 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:26Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C589D20D5\"" ], + "ETag": [ "\"1DC55C51649EA15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f117994-2144-490f-b96e-aa463a7f3de2" ], + "x-ms-request-id": [ "bfd4e33a-4aa9-4efc-987d-0260314ba521" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/8b81a46a-4241-4174-bd31-46ef8d4c9e66" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/540dbeea-963f-4650-97da-cc3584955efa" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8a3f4b77-b649-46c5-81f0-82f1c0ec90e3" ], - "x-ms-routing-request-id": [ "WESTUS:20251114T021404Z:8a3f4b77-b649-46c5-81f0-82f1c0ec90e3" ], + "x-ms-correlation-request-id": [ "99055747-1afe-4cf2-8f6a-c045a0c5dccf" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T001630Z:99055747-1afe-4cf2-8f6a-c045a0c5dccf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F7EBDB2844F6454585F7D61311DAF89A Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2B64C10056541498D5DB4925302B3B2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:16:26Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1906" ], + "Content-Length": [ "1911" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "983" ], - "x-ms-client-request-id": [ "273b9169-dc04-42d6-a232-639d1ab71451" ], + "x-ms-unique-id": [ "984" ], + "x-ms-client-request-id": [ "4d6555dd-234b-4ed0-bebf-838b931b5f15" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -111,37 +111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "325d81a4-16f1-4fa5-a9d4-78ea27d4a774" ], + "x-ms-request-id": [ "8c569725-a321-4e9a-8f0a-307e0570918b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3f0658db-7910-4795-8857-51ebdb970c60" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021434Z:3f0658db-7910-4795-8857-51ebdb970c60" ], + "x-ms-correlation-request-id": [ "70086013-ef4e-4233-bc16-335345a0dc07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001700Z:70086013-ef4e-4233-bc16-335345a0dc07" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A91D909C9FB54A10AF0B5740D45433C4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D35E7F68EE754F6A90965189D585A5BD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "984" ], - "x-ms-client-request-id": [ "273b9169-dc04-42d6-a232-639d1ab71451" ], + "x-ms-unique-id": [ "985" ], + "x-ms-client-request-id": [ "4d6555dd-234b-4ed0-bebf-838b931b5f15" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -156,36 +156,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "540323ba-4ad2-4a97-9cca-386c9bdefd21" ], + "x-ms-request-id": [ "3ef1e126-9884-42c0-a367-a1ac7e9f5f2c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd7147af-df32-4542-8b90-f1cb86142fdc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021434Z:bd7147af-df32-4542-8b90-f1cb86142fdc" ], + "x-ms-correlation-request-id": [ "43e2c46d-d80b-456e-9a3d-2126fb86c15b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001700Z:43e2c46d-d80b-456e-9a3d-2126fb86c15b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8DE6BE79FE84FD9AA67D3D362C2CC83 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5D3020A49DDC40A697923F53BE55B7D5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "985" ], - "x-ms-client-request-id": [ "9b988baa-e979-41a1-9440-58f0abc2de1a" ], + "x-ms-unique-id": [ "986" ], + "x-ms-client-request-id": [ "edfe9ff8-ae5e-4694-a655-9b3a77492dcf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -201,36 +201,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0435400e-f556-4408-874c-a2ef1a26c5d4" ], + "x-ms-request-id": [ "ab0172c4-4cdc-4dce-931d-d53029cee4d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25666f78-ec7f-44fc-9cad-98eef18b56b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021435Z:25666f78-ec7f-44fc-9cad-98eef18b56b0" ], + "x-ms-correlation-request-id": [ "d92dcb1b-f9be-4a6c-b446-74806a3e380d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001700Z:d92dcb1b-f9be-4a6c-b446-74806a3e380d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 075A670E364449218B9B0D88ABFA1D1A Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3CA5DB40EB144687AAAA2D8AC18055F0 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "986" ], - "x-ms-client-request-id": [ "38ff63c7-ed61-4868-b5fe-0fceeffb6e93" ], + "x-ms-unique-id": [ "987" ], + "x-ms-client-request-id": [ "f5311249-3f2e-4bbd-8732-f2b3e7ef95b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -246,31 +246,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efc4016d-68ec-40d0-88c9-9f667dfee553" ], + "x-ms-request-id": [ "7a41b746-30a4-42f9-bd05-45f7c3230436" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63b55dab-3b28-4cb0-82de-3057a91705c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021435Z:63b55dab-3b28-4cb0-82de-3057a91705c5" ], + "x-ms-correlation-request-id": [ "a6d66895-fe76-44b7-92bb-e1e036dd1fb2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001700Z:a6d66895-fe76-44b7-92bb-e1e036dd1fb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93B903A8BCAB4E85BCED0619D6091D6C Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 053052C16E4E4F96A40133A403585DE1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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,38 +286,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6eca7316-5e96-4c99-931f-9231098469e3" ], + "x-ms-request-id": [ "385c8ace-39e4-4dec-a37e-41190036ac65" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb628456-43bd-4e67-bb6b-ad83b44e8946" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f11d2a98-4537-4397-a8a9-32e7e09d181f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c036b555-5611-4b99-82ed-915111e1f4ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021437Z:c036b555-5611-4b99-82ed-915111e1f4ce" ], + "x-ms-correlation-request-id": [ "de8c9325-96af-4d41-a239-36d52f03dbf7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001702Z:de8c9325-96af-4d41-a239-36d52f03dbf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17296668F4F9479495D9B0CD8ADB2EE3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:14:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:14:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F66E6713BE3F4C46B36EA357B84F6FAC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1900" ], + "Content-Length": [ "1905" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "988" ], - "x-ms-client-request-id": [ "b913404d-49f8-4062-9ef1-caee667b18e7" ], + "x-ms-unique-id": [ "989" ], + "x-ms-client-request-id": [ "07f493f5-75be-4216-bb33-955c30bbaaac" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -332,37 +332,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35c1b898-09cd-407e-a69e-4ceab126e916" ], + "x-ms-request-id": [ "35abad9c-0247-4b6f-858a-6ed23d696c12" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], - "x-ms-correlation-request-id": [ "a95fd3cf-e7b5-451a-a1fd-7af9d7eec505" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021515Z:a95fd3cf-e7b5-451a-a1fd-7af9d7eec505" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "adf540cf-3aee-4073-98a4-23409b3d1050" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001732Z:adf540cf-3aee-4073-98a4-23409b3d1050" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19D0560C6ADC48E993C3E9344D0B4E75 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:07Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48C4461F6E5E46BF8F90ACC1E58A6F75 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:32Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "989" ], - "x-ms-client-request-id": [ "b913404d-49f8-4062-9ef1-caee667b18e7" ], + "x-ms-unique-id": [ "990" ], + "x-ms-client-request-id": [ "07f493f5-75be-4216-bb33-955c30bbaaac" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -377,36 +377,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c7c20bf-0c94-447a-a678-953e2cee56d1" ], + "x-ms-request-id": [ "8823deaa-a1b0-47a3-86a2-68f38b38a468" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25a923de-0b16-4365-93a2-47c95bf581eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021515Z:25a923de-0b16-4365-93a2-47c95bf581eb" ], + "x-ms-correlation-request-id": [ "76f5a0b3-e4a4-4a8b-8f21-a2e4f36d5358" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001733Z:76f5a0b3-e4a4-4a8b-8f21-a2e4f36d5358" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 182492499D8D42FCA654B45C625756DC Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:15Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7140CC0BB00F4D4FB20280781570912E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:32Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "990" ], - "x-ms-client-request-id": [ "5a448e8d-c805-4b9c-83e3-1d99c6eaa8d0" ], + "x-ms-unique-id": [ "991" ], + "x-ms-client-request-id": [ "8b139e5c-a820-44b0-975e-7ac2cadc6b75" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -422,36 +422,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13624729-54b4-40fe-9517-8cc56a00b638" ], + "x-ms-request-id": [ "87d52c33-53f4-4b8d-8f51-b853f1027c3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b606e82d-e85d-43e4-9753-2fa08f4162fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021516Z:b606e82d-e85d-43e4-9753-2fa08f4162fd" ], + "x-ms-correlation-request-id": [ "7da3bd0d-41ed-41bf-b92f-ae14e5718431" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001733Z:7da3bd0d-41ed-41bf-b92f-ae14e5718431" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C49F0B9072142358F84B5C9B4775DA3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:15Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECBA51B2D96E47F3BAF0B095F3FE4440 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:33Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "991" ], - "x-ms-client-request-id": [ "d904c55c-237e-4d6f-a0bc-677136cd49f6" ], + "x-ms-unique-id": [ "992" ], + "x-ms-client-request-id": [ "85c5557a-8fbd-4550-8725-9640aeb3d4d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -467,36 +467,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9af433a-bfd0-4239-8a6e-b096dd650e32" ], + "x-ms-request-id": [ "5cca654b-d38e-45f7-b97e-8983e2958185" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "150a3cb1-6cfe-49b6-b3f5-f2b6f477fcb7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021519Z:150a3cb1-6cfe-49b6-b3f5-f2b6f477fcb7" ], + "x-ms-correlation-request-id": [ "87eacc07-1dce-4c8e-b608-1ba83955facf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001733Z:87eacc07-1dce-4c8e-b608-1ba83955facf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A6AFD21E1504D1BA3E700ADF6102909 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:16Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0541F4E66BC043B88F38E3635E6FE049 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:33Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1820" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98958,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98958\",\"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-14T02:14:02.06\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94043,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94043\",\"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-15T00:16:27.7433333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "992" ], - "x-ms-client-request-id": [ "fcb25ec0-ac3c-4b5f-a009-090418e2434e" ], + "x-ms-unique-id": [ "993" ], + "x-ms-client-request-id": [ "49d75c0f-9572-47d8-9b13-a561f8b8f781" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -512,18 +512,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30d37f53-1d53-4a05-8a9e-6ec0a18d879d" ], + "x-ms-request-id": [ "10e82705-76f7-4ed5-b274-1919d29027fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc3b80f6-494c-4d6f-bffa-2e221f97526f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df4939d7-23f3-43f7-b655-43ccd8207421" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "747aadfa-2745-4c93-ab98-62f52d846020" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021528Z:747aadfa-2745-4c93-ab98-62f52d846020" ], + "x-ms-correlation-request-id": [ "f7c3959d-09b2-4a6d-a87e-c0562c578acb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001740Z:f7c3959d-09b2-4a6d-a87e-c0562c578acb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 361241ED7BE24A6D8F380159A138E866 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:19Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6EEC11C67784F3E8B9103298567E28C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:33Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -540,8 +540,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "993" ], - "x-ms-client-request-id": [ "f07a0e7a-bda2-4164-91ad-8c6ba6de66f4" ], + "x-ms-unique-id": [ "994" ], + "x-ms-client-request-id": [ "6c05d940-caf8-4db9-aacb-101d2b15a100" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -557,32 +557,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b3273e97-68ad-41ad-8dd9-85b6550cfb88" ], + "x-ms-request-id": [ "b2d47106-b3e4-4ded-8b50-224e7303f4e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/219d65eb-67dd-4d13-a8fc-aa2991f66fce" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ca1b4182-111b-473c-b6ae-339660515685" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46bb556f-4e45-4679-b196-5acc6b5c9c2a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021528Z:46bb556f-4e45-4679-b196-5acc6b5c9c2a" ], + "x-ms-correlation-request-id": [ "702de02b-c0a0-4697-b139-fb1019632c44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001741Z:702de02b-c0a0-4697-b139-fb1019632c44" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B28ECA1415964CA0B77B89155BD5F896 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBCF02963A1F487D8C69EFD2B77727FB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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,40 +597,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550C8D6A6180\"" ], + "ETag": [ "\"1DC55C54318F6A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a720d0fa-a47b-4639-aa85-6f99e420ac98" ], + "x-ms-request-id": [ "a4fd5489-b57a-40f4-9538-a74e5cf8f8cf" ], "X-AspNet-Version": [ "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/79d5b4f6-da8c-4456-b932-5246c9b4f422" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/786a990f-4d47-43a3-8125-2f919e6af112" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "cd374166-47aa-4635-b3bf-d30902ca740d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021533Z:cd374166-47aa-4635-b3bf-d30902ca740d" ], + "x-ms-correlation-request-id": [ "2eac91e0-fb94-4c5f-9caf-a98e51d2792c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T001744Z:2eac91e0-fb94-4c5f-9caf-a98e51d2792c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D79BDF4321F4972BE296268F1B0ABF7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:15:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:15:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA6C62AC557D4454825A1F651FBA0BD2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:17:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:17:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1911" ], + "Content-Length": [ "1906" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "995" ], - "x-ms-client-request-id": [ "1a127277-9279-4f91-89d8-caed729ab0d7" ], + "x-ms-unique-id": [ "996" ], + "x-ms-client-request-id": [ "c489198f-138e-4c71-b3c7-3865c7d1fce0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -645,37 +645,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46cdcd81-845c-4416-850b-bac21adf12ff" ], + "x-ms-request-id": [ "b58b5e99-6ee6-4662-9d60-01804236333b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6227bb4-8e7c-4979-8613-121f495e0205" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021603Z:c6227bb4-8e7c-4979-8613-121f495e0205" ], + "x-ms-correlation-request-id": [ "4977f123-f81b-47ca-8528-bb52eacfa4bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001814Z:4977f123-f81b-47ca-8528-bb52eacfa4bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 346D3B7D0E8448218A99B14E7260E0EA Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5BAFA126A931444DB1AD9D6D43420286 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "996" ], - "x-ms-client-request-id": [ "1a127277-9279-4f91-89d8-caed729ab0d7" ], + "x-ms-unique-id": [ "997" ], + "x-ms-client-request-id": [ "c489198f-138e-4c71-b3c7-3865c7d1fce0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -690,36 +690,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "15e95a8a-4455-41a4-b156-d0c0915c046e" ], + "x-ms-request-id": [ "cc21bdb2-55d1-4405-958c-93909b0930f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "90078e9a-e1e8-4e14-bc29-5e80b3096193" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021603Z:90078e9a-e1e8-4e14-bc29-5e80b3096193" ], + "x-ms-correlation-request-id": [ "8a190696-145e-4812-a71a-ba76f8bfeb54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001815Z:8a190696-145e-4812-a71a-ba76f8bfeb54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D817B617492A4EBA8A8A6C6DAE287BD2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD3C8C7C9D614FE99B0B2A5327D4CC7A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "997" ], - "x-ms-client-request-id": [ "66ac7b58-0ce6-483b-8acb-92b6552a4487" ], + "x-ms-unique-id": [ "998" ], + "x-ms-client-request-id": [ "d5c9fd25-368d-4ea9-8809-13c6cc6ef1c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -735,31 +735,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63580c6b-973b-489c-b9a1-ceb5690f778e" ], + "x-ms-request-id": [ "a3efdbb8-1e8d-412d-a7e0-6d0fc738a6e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "385da556-8f6f-4344-a937-c3aea71e6e83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021604Z:385da556-8f6f-4344-a937-c3aea71e6e83" ], + "x-ms-correlation-request-id": [ "6fa9bb9d-461a-4554-a5f8-842d450fa336" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001815Z:6fa9bb9d-461a-4554-a5f8-842d450fa336" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1ECFF269797A412D9132BD0B5F05E3FA Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9996AA3B50A54C53B124DD5BB7C70A45 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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,38 +775,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "618508ed-13cd-4383-9ffc-55c92dff61e9" ], + "x-ms-request-id": [ "c390eaa7-2343-410a-83cb-1bc6f9da8d7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f088264-3ad2-4e82-8273-0d9b71038633" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97baebb2-65ed-4a69-8300-ad52a01d0f6e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a1bcec2a-562e-46af-8b12-6000810dad11" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021605Z:a1bcec2a-562e-46af-8b12-6000810dad11" ], + "x-ms-correlation-request-id": [ "c11fbda4-9f2e-4449-a027-8a4d82fb2bce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001817Z:c11fbda4-9f2e-4449-a027-8a4d82fb2bce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1123845667F04E2A9B8B5DE38A23A6A8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84ADFDA9D26A4B0B9347C93424B4DD7E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1905" ], + "Content-Length": [ "1900" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "999" ], - "x-ms-client-request-id": [ "05cbd574-1e18-40e3-88b0-a9a1b6f524f4" ], + "x-ms-unique-id": [ "1000" ], + "x-ms-client-request-id": [ "713ac4b1-6631-457a-9e0f-ad4850831ef1" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -821,37 +821,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a7e086e-fcff-4559-85d4-650f5b2588ba" ], + "x-ms-request-id": [ "3f176617-0c32-41f6-99dc-ab0d58a3f9b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8ed149fd-fc4e-47c4-96fa-07ae4f07da90" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021636Z:8ed149fd-fc4e-47c4-96fa-07ae4f07da90" ], + "x-ms-correlation-request-id": [ "458dc69a-7ad0-4919-9666-7b57cca3a58c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001847Z:458dc69a-7ad0-4919-9666-7b57cca3a58c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 960280F697014E62945144CDCC43CBE4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD668BF5AFE74D5D8C10DA2CC07F1F8E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1000" ], - "x-ms-client-request-id": [ "05cbd574-1e18-40e3-88b0-a9a1b6f524f4" ], + "x-ms-unique-id": [ "1001" ], + "x-ms-client-request-id": [ "713ac4b1-6631-457a-9e0f-ad4850831ef1" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -866,36 +866,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ce39916-3ea3-4138-b974-16a5a4f80cee" ], + "x-ms-request-id": [ "942cce83-2c12-4088-836f-9d89159bce7a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1e499da8-277a-4fa0-a52d-9cf831a3b67a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021636Z:1e499da8-277a-4fa0-a52d-9cf831a3b67a" ], + "x-ms-correlation-request-id": [ "bd55ec49-f69a-400a-bade-c562d7481302" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001847Z:bd55ec49-f69a-400a-bade-c562d7481302" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC37C86424DB425AAA2EAAA36FF1238E Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1565DBEF6E794DF29D6796A4D928A198 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1001" ], - "x-ms-client-request-id": [ "1081c04f-d630-4ba9-b59d-dda1a9bb079b" ], + "x-ms-unique-id": [ "1002" ], + "x-ms-client-request-id": [ "4e5cae18-c50f-445e-bd2f-80aa161dc698" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -911,36 +911,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8dd79cd-1c7b-4975-baf1-de878e0c84bf" ], + "x-ms-request-id": [ "42ebb5a4-0868-4ac5-91d9-df81c34c97e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd1297c6-4060-4bfb-a52c-0873b0f1a2a9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021636Z:bd1297c6-4060-4bfb-a52c-0873b0f1a2a9" ], + "x-ms-correlation-request-id": [ "af6a4dc8-c251-40fb-b07e-5951ed702ba1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001847Z:af6a4dc8-c251-40fb-b07e-5951ed702ba1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FB2F2CE29484551B4595323F2F21426 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3039B7D81136409DA43DE6F43DF3144E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98959,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98959\",\"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-14T02:15:30.6866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94044,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94044\",\"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-15T00:17:42.98\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1002" ], - "x-ms-client-request-id": [ "397272fa-edba-430c-9629-39c15c84c21c" ], + "x-ms-unique-id": [ "1003" ], + "x-ms-client-request-id": [ "e4577710-cc3b-46ba-a583-48e65dbaee65" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -956,18 +956,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "273cd7b5-2ab5-4869-a3c9-c201b00f9422" ], + "x-ms-request-id": [ "9a5d873c-1a3e-4693-8f2f-63495d9adea0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9b77f6e-4087-41b7-8a67-e897536802ca" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "c1a9df78-3a18-4627-bf17-c46be313fadd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:c1a9df78-3a18-4627-bf17-c46be313fadd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f4cded3-2b2f-41d6-a8b1-ff4e62c96b3f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "fd3b85bb-e7a6-4bde-84a2-d02343b5f677" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001857Z:fd3b85bb-e7a6-4bde-84a2-d02343b5f677" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A09053BC73E143108637C2FB3633821D Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DCA07E64E1F466DBCC847122E114369 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -977,15 +977,15 @@ "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1003" ], - "x-ms-client-request-id": [ "353c7eb7-d8eb-4811-aa8f-46aaf35bd0e6" ], + "x-ms-unique-id": [ "1004" ], + "x-ms-client-request-id": [ "5cd37217-2b4b-4d19-9dc8-b71d3db3e562" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1001,33 +1001,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "dc2824ef-a790-4375-be38-96b716f15976" ], - "x-ms-correlation-request-id": [ "dc2824ef-a790-4375-be38-96b716f15976" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:dc2824ef-a790-4375-be38-96b716f15976" ], + "x-ms-request-id": [ "a173f810-2d43-4aef-b0a2-686263794ac9" ], + "x-ms-correlation-request-id": [ "a173f810-2d43-4aef-b0a2-686263794ac9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001857Z:a173f810-2d43-4aef-b0a2-686263794ac9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47B5C7009E44409A9D87EC95FF1934A2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA0922AD9A394EB09C98273B917F99F5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:57Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:56 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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-pko1x9\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1004" ], - "x-ms-client-request-id": [ "04aa4ad8-8225-4afb-9b4d-ac6471c22dfa" ], + "x-ms-unique-id": [ "1005" ], + "x-ms-client-request-id": [ "fa555842-daf2-481a-8ea9-e9d32117eef9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1043,21 +1043,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "be14f2e4-57e5-4d0b-9ff9-5fa3ee9ebda2" ], - "x-ms-correlation-request-id": [ "be14f2e4-57e5-4d0b-9ff9-5fa3ee9ebda2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:be14f2e4-57e5-4d0b-9ff9-5fa3ee9ebda2" ], + "x-ms-request-id": [ "17373fc8-1551-41ba-aa63-4dc07e9c3838" ], + "x-ms-correlation-request-id": [ "17373fc8-1551-41ba-aa63-4dc07e9c3838" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001857Z:17373fc8-1551-41ba-aa63-4dc07e9c3838" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB6BCD1E41A343FDABB39A24C1908C92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99BEEF2EE4B44E2297C55E584E08DEA9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:57Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:56 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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-pko1x9\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1068,8 +1068,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1005" ], - "x-ms-client-request-id": [ "e12842ed-4ecd-4cf2-b10d-6b0aff71f2d7" ], + "x-ms-unique-id": [ "1006" ], + "x-ms-client-request-id": [ "21646b9f-d8d5-4cd5-9a5c-e88857406032" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1085,33 +1085,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5fb57fb-f626-46c7-977e-2a67566c3ff8" ], + "x-ms-request-id": [ "8f89ed30-b818-4ae5-bb3c-406bc06d6727" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4121e47e-3880-46aa-93a3-09dd1c3b672f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6cff5f9-cad9-4c5a-b085-732e5612d9d2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af58f7c5-8795-4c31-9de8-d672a9e6307e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021644Z:af58f7c5-8795-4c31-9de8-d672a9e6307e" ], + "x-ms-correlation-request-id": [ "2d8855ba-95a6-43f1-9747-fc4a905f9b76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001857Z:2d8855ba-95a6-43f1-9747-fc4a905f9b76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 609C6DBD824E483691918293A8867B15 Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A969698202C46AEAB73F32BAD3A408A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:57Z" ], + "Date": [ "Sat, 15 Nov 2025 00:18:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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,40 +1125,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550CBA705C8B\"" ], + "ETag": [ "\"1DC55C570D27D35\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c9a1ecc-c0b0-4e61-abc9-17117385b7a5" ], + "x-ms-request-id": [ "46777246-e954-4fa2-bdc0-87e2da28dcbc" ], "X-AspNet-Version": [ "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/9b2894b0-eac8-414e-ae3d-635f9fd710a0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b636e749-b046-4dd6-a88f-012f93d4d6b2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "65248f1f-c5f6-44f5-98f8-f1088b3217e9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021649Z:65248f1f-c5f6-44f5-98f8-f1088b3217e9" ], + "x-ms-correlation-request-id": [ "2e6e9dd7-6acd-4f36-85f3-a20632541b10" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T001901Z:2e6e9dd7-6acd-4f36-85f3-a20632541b10" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04DAEC67867D428B846866A7448A0FDB Ref B: MWH011020806052 Ref C: 2025-11-14T02:16:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:16:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46154E291FA5410FB5AFC7EFB933B683 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:18:57Z" ], + "Date": [ "Sat, 15 Nov 2025 00:19:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2013" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1007" ], - "x-ms-client-request-id": [ "852402e1-38c9-4f3f-a4b5-44177c0e47e4" ], + "x-ms-unique-id": [ "1008" ], + "x-ms-client-request-id": [ "1c2d4969-f286-4505-8185-0fb3f403e919" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], @@ -1173,37 +1173,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd42676c-c8bc-4c92-9bd0-bf90ee60e7fb" ], + "x-ms-request-id": [ "d5bb707e-41e1-4582-a59f-dceaf5bdd4e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a891918e-1259-4033-9c65-5abfe4ee0cd0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021719Z:a891918e-1259-4033-9c65-5abfe4ee0cd0" ], + "x-ms-correlation-request-id": [ "b5091247-4f56-4de7-9c9c-b13180c52874" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001932Z:b5091247-4f56-4de7-9c9c-b13180c52874" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4734305540B84A62B9964626ACE4920F Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:19Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19353F086E30418588645F258C120727 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:19:32Z" ], + "Date": [ "Sat, 15 Nov 2025 00:19:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1008" ], - "x-ms-client-request-id": [ "852402e1-38c9-4f3f-a4b5-44177c0e47e4" ], + "x-ms-unique-id": [ "1009" ], + "x-ms-client-request-id": [ "1c2d4969-f286-4505-8185-0fb3f403e919" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], @@ -1218,36 +1218,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c6297783-95ad-4823-946f-6b0bcb2f4995" ], + "x-ms-request-id": [ "5f091d1e-11d3-44ff-b72e-ee76dcb32a9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fa395015-c997-4c36-8e0b-0ab48f84c522" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021720Z:fa395015-c997-4c36-8e0b-0ab48f84c522" ], + "x-ms-correlation-request-id": [ "94a7b3f9-3762-4ee8-b5c8-99247399adfc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001932Z:94a7b3f9-3762-4ee8-b5c8-99247399adfc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C05D31B2AFAE40A38D72C1A28CC060DA Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:19Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDA81CD1177A4EA5BD5A96FD33FBC043 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:19:32Z" ], + "Date": [ "Sat, 15 Nov 2025 00:19:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1009" ], - "x-ms-client-request-id": [ "68717667-ea90-413e-8da2-cf35932f2331" ], + "x-ms-unique-id": [ "1010" ], + "x-ms-client-request-id": [ "da756417-b8f3-4a71-a3d3-dfb345662934" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1263,36 +1263,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2f58e00-a9c4-415e-ba55-93adffc79477" ], + "x-ms-request-id": [ "af423fdc-d9ec-4f1c-8e66-d8376b858ff7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d611405e-ab70-4f68-b4e8-88041e7c9903" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021720Z:d611405e-ab70-4f68-b4e8-88041e7c9903" ], + "x-ms-correlation-request-id": [ "6dc39f64-4b00-406e-8d96-1b0306858495" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001933Z:6dc39f64-4b00-406e-8d96-1b0306858495" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BD74D44C5BA42718197CCC536E92424 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:20Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B74F027A01F4948A28D605500DFDA34 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:19:33Z" ], + "Date": [ "Sat, 15 Nov 2025 00:19:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1010" ], - "x-ms-client-request-id": [ "a9e7da60-bef5-452e-9fcb-657e3992d167" ], + "x-ms-unique-id": [ "1011" ], + "x-ms-client-request-id": [ "b03c7dff-c155-4ca0-8d66-71ed08c0338d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1308,31 +1308,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45c549e9-68e3-4813-98ec-b3490f8142d4" ], + "x-ms-request-id": [ "54204e7a-386e-4702-a71a-af8a8b2b7b0d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e634262f-6705-4091-ae59-ac70168d4ba1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021721Z:e634262f-6705-4091-ae59-ac70168d4ba1" ], + "x-ms-correlation-request-id": [ "bf90fca7-e06d-4124-ba83-baf711b471bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001934Z:bf90fca7-e06d-4124-ba83-baf711b471bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F585FFA761CF4382985371BA65085D7F Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:20Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 001653F5776149C9A0BB3AB14DB8317D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:19:34Z" ], + "Date": [ "Sat, 15 Nov 2025 00:19:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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,38 +1348,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "703286d7-15ba-4491-97f4-19914aeeeb51" ], + "x-ms-request-id": [ "21af23e0-1f57-414c-9559-2935fc5717f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4068ac5-b238-46d9-9885-ac6d151dc8cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/054a1bbf-fe7f-4ddb-bfc3-018d41a92ac2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "2d92672a-56ad-4563-aedb-406575f35d5c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021722Z:2d92672a-56ad-4563-aedb-406575f35d5c" ], + "x-ms-correlation-request-id": [ "d487c317-048b-4a33-9f42-bb0486d0af1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T001935Z:d487c317-048b-4a33-9f42-bb0486d0af1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4F69A97F9DB4892897C51DB8850015A Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:21Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3B9B84893BF407293BA062312083ADF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:19:34Z" ], + "Date": [ "Sat, 15 Nov 2025 00:19:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2007" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"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-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"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-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1012" ], - "x-ms-client-request-id": [ "809b3c96-ee4e-4507-bfbb-269a3d00cb25" ], + "x-ms-unique-id": [ "1013" ], + "x-ms-client-request-id": [ "7b7af3e3-408f-459a-b13a-521c37280a82" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], @@ -1394,37 +1394,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfcbc89e-755d-4820-8a32-96a6d7730718" ], + "x-ms-request-id": [ "e866f286-71ec-4173-bfdc-2fb8338b3516" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88e28818-56b2-43fc-a0f8-fd0167447227" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021752Z:88e28818-56b2-43fc-a0f8-fd0167447227" ], + "x-ms-correlation-request-id": [ "72f7e18f-2adb-4f8c-a534-3349fa8202e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002006Z:72f7e18f-2adb-4f8c-a534-3349fa8202e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95926AF4DF4C48548CF3F1684D69D117 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE22CD1218CD438AB6D90617C7D4D7F8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1922" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1013" ], - "x-ms-client-request-id": [ "809b3c96-ee4e-4507-bfbb-269a3d00cb25" ], + "x-ms-unique-id": [ "1014" ], + "x-ms-client-request-id": [ "7b7af3e3-408f-459a-b13a-521c37280a82" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], @@ -1439,36 +1439,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a17af60-f14c-4dd4-b385-39b30b469360" ], + "x-ms-request-id": [ "f652dd3c-fadf-4678-885e-822e660b9292" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "488362e6-c6db-4d75-aba9-78b6a40b7faf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021753Z:488362e6-c6db-4d75-aba9-78b6a40b7faf" ], + "x-ms-correlation-request-id": [ "203a4742-f49b-4a6c-98ed-587916a51d5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002006Z:203a4742-f49b-4a6c-98ed-587916a51d5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 477E02B546CF4D22A86D042F79B3AC47 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D6E79271D8D469CBC734F13D53C212F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1922" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1014" ], - "x-ms-client-request-id": [ "3b5fdb40-1b10-4bce-a2a2-a7287ad85e4e" ], + "x-ms-unique-id": [ "1015" ], + "x-ms-client-request-id": [ "f32fdc7f-6bcf-4ffa-9c63-969bd132fdd6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1484,36 +1484,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43f4d0d3-4c6a-4cc0-9607-7fbe7a3de455" ], + "x-ms-request-id": [ "6a356d6b-b257-46fd-b11f-467c3a1d4049" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "41651401-0701-47af-bb75-c05300a82a9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021754Z:41651401-0701-47af-bb75-c05300a82a9b" ], + "x-ms-correlation-request-id": [ "52008103-23be-4c5a-94ad-ed1ce03dead4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002008Z:52008103-23be-4c5a-94ad-ed1ce03dead4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3D7AC7C8AC44389926AA745E4DC2723 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:17:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2C36B79855341E0B322B93D006C925C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:07Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1922" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld\",\"name\":\"Func-Windows-Premium-New-9mznld\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":98960,\"name\":\"Func-Windows-Premium-New-9mznld\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98960\",\"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-14T02:16:46.2066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\"name\":\"Func-Windows-Premium-New-pko1x9\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":94046,\"name\":\"Func-Windows-Premium-New-pko1x9\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94046\",\"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-15T00:18:59.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1015" ], - "x-ms-client-request-id": [ "629f04e6-3a4a-42de-ad60-075a87ca7bf4" ], + "x-ms-unique-id": [ "1016" ], + "x-ms-client-request-id": [ "50755c8c-fd16-438c-a073-6b28d11574a2" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1529,18 +1529,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9d26193c-672c-425a-9b1e-3b16e8940bd8" ], + "x-ms-request-id": [ "c952eb8a-e37b-49ba-85aa-d22691856c9f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/832084a2-39ff-4cbe-a86e-b9261b73cc06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ea40024-c8eb-4cfb-9675-25475996133e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "878994b3-5293-4cdd-aa2e-d984d9f1eb4c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021801Z:878994b3-5293-4cdd-aa2e-d984d9f1eb4c" ], + "x-ms-correlation-request-id": [ "213453e0-69d7-4a14-885a-622dc3b50cbd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002013Z:213453e0-69d7-4a14-885a-622dc3b50cbd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7932F136EFA438CA71DD03E37CDB9D5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:17:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBB8B68665124ABD88D5D6E60262054D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:08Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1550,15 +1550,15 @@ "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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1016" ], - "x-ms-client-request-id": [ "5cd7fe18-c032-46f6-baa5-9363a9a2c999" ], + "x-ms-unique-id": [ "1017" ], + "x-ms-client-request-id": [ "00d5a83f-edf6-4f85-8363-98e5ddf889b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1574,33 +1574,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "ef1ec9bf-fc83-48ca-9b1e-5f20fae9f8a6" ], - "x-ms-correlation-request-id": [ "ef1ec9bf-fc83-48ca-9b1e-5f20fae9f8a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021801Z:ef1ec9bf-fc83-48ca-9b1e-5f20fae9f8a6" ], + "x-ms-request-id": [ "bc2ce69f-1530-414e-86f3-80246dbb0155" ], + "x-ms-correlation-request-id": [ "bc2ce69f-1530-414e-86f3-80246dbb0155" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002013Z:bc2ce69f-1530-414e-86f3-80246dbb0155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7384854F31A46E0941DC99885AE4D74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:01Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78464C51115F4B49912772F4A5F77594 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:12 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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-pko1x9\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?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-ry1xpa/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-9mznld?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1017" ], - "x-ms-client-request-id": [ "d85fc140-9282-47f2-b973-08b05a5f2503" ], + "x-ms-unique-id": [ "1018" ], + "x-ms-client-request-id": [ "d600ad17-3a26-4754-b5fc-8c525fad5daa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1616,21 +1616,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "ec803cac-1c12-4008-9962-5c5454af1213" ], - "x-ms-correlation-request-id": [ "ec803cac-1c12-4008-9962-5c5454af1213" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021801Z:ec803cac-1c12-4008-9962-5c5454af1213" ], + "x-ms-request-id": [ "1269f086-3ae8-4b3d-8a10-90262f0858e4" ], + "x-ms-correlation-request-id": [ "1269f086-3ae8-4b3d-8a10-90262f0858e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002013Z:1269f086-3ae8-4b3d-8a10-90262f0858e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1634C029E87404F890C5C368BAE053F Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:01Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66273BAC16A34D27A2A445FF34D67BBF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:13 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-9mznld\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-pko1x9\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\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 8dedb75165d1..7d505acc4443 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1018" ], - "x-ms-client-request-id": [ "23712930-d9d3-43d8-9781-9ff9fbeba547" ], + "x-ms-unique-id": [ "1019" ], + "x-ms-client-request-id": [ "e049a0f6-512e-4f44-b815-aeb90da21e25" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "694db262-63ea-4651-8443-f0799b5b79c2" ], + "x-ms-request-id": [ "59078890-d7e4-4172-a05e-cf83f1f9dba1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7a235fe-9ffd-41af-a017-d37fa5c7b1a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/30d23276-1ad6-4c6a-8169-282d305a82ff" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2e93e8ac-2541-43ef-b8d2-57133214a027" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021802Z:2e93e8ac-2541-43ef-b8d2-57133214a027" ], + "x-ms-correlation-request-id": [ "2bb7e090-e3c8-423d-b451-8da5d7a3934e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002014Z:2bb7e090-e3c8-423d-b451-8da5d7a3934e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB2FD81F5A894BC99ACCCC9F4B869492 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 357B58AB979B4BB9B8AE68CA9AA14E96 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36851" ], + "Content-Length": [ "36863" ], "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/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550CE90D3E40\"" ], + "ETag": [ "\"1DC55C59E27D0C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82c0c501-3d27-447e-baf1-614de5b0a72b" ], + "x-ms-request-id": [ "5fc1539a-bdc1-4493-ba0e-50366f75466a" ], "X-AspNet-Version": [ "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/9b764590-ff68-4ac9-8cc9-4f2cee7e6596" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/71683b35-3aea-49e5-8afe-a8bf76178be8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "94ae858a-ce47-4371-8f7b-0e7a02b16ee6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021807Z:94ae858a-ce47-4371-8f7b-0e7a02b16ee6" ], + "x-ms-correlation-request-id": [ "8b0e8ad5-f9dd-442c-8b20-85186c3278d7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T002017Z:8b0e8ad5-f9dd-442c-8b20-85186c3278d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 703BF3569E034575A43B1637C381BD16 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C02B814202B34E95B847D5237F0CE623 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1914" ], + "Content-Length": [ "1908" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"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-ry1xpa-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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"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-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"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-15T00:20:15.9\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1020" ], - "x-ms-client-request-id": [ "a5cd4a46-b0bd-4d1a-8dda-509c4a83c75f" ], + "x-ms-unique-id": [ "1021" ], + "x-ms-client-request-id": [ "fa51890d-0261-4f8f-87ba-8f9c4c52df9d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -111,37 +111,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5dcec585-437a-4b4a-8c38-d688106fda63" ], + "x-ms-request-id": [ "7ed8471d-df78-4dd6-b9ff-453f54dd6e15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eb330512-5e68-45f6-8b1e-f7af283da076" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021839Z:eb330512-5e68-45f6-8b1e-f7af283da076" ], + "x-ms-correlation-request-id": [ "1f43692e-34df-45da-92cf-052dd2185931" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002047Z:1f43692e-34df-45da-92cf-052dd2185931" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2D865689E7F4743AC86BDBFE3EDF8B4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 318C800C6B924CEAAF26A0B96349B869 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:20:15.9\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1021" ], - "x-ms-client-request-id": [ "a5cd4a46-b0bd-4d1a-8dda-509c4a83c75f" ], + "x-ms-unique-id": [ "1022" ], + "x-ms-client-request-id": [ "fa51890d-0261-4f8f-87ba-8f9c4c52df9d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -156,24 +156,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4404c6ac-9e25-464a-b3be-ff3357206b34" ], + "x-ms-request-id": [ "58a49c60-7eb2-40f2-8712-ec8574877aa9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c142ff24-6264-46be-84e9-9b3ff09c18b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021839Z:c142ff24-6264-46be-84e9-9b3ff09c18b1" ], + "x-ms-correlation-request-id": [ "b99a9a98-a302-4fad-b727-a2db0110dd1f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002047Z:b99a9a98-a302-4fad-b727-a2db0110dd1f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1AD64F933794B1E9ACD6A4E7F63BBC3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D541276E87474733A44E3E06EEEBD9C6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:20:15.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -181,7 +181,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\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": [ "4811ce13-8940-436b-910f-8f56b9529e29" ], + "x-ms-request-id": [ "81425590-1a20-4b1b-951a-e789f669071d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f0b1ba8-31da-480d-a88f-4b64f71d0e8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1b9ca47-0273-4699-b929-bef926eaa47a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "481d7567-dbbb-4510-98ae-e6d6e8689a1b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021839Z:481d7567-dbbb-4510-98ae-e6d6e8689a1b" ], + "x-ms-correlation-request-id": [ "f0d8fbcc-db3f-49a4-90cb-3028d8afad5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002048Z:f0d8fbcc-db3f-49a4-90cb-3028d8afad5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4CA4D7125E5749D5A17BEB9BFB939472 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B7DC969AD6F4BF4807ADBF976697FE2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:48Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -225,8 +225,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1023" ], - "x-ms-client-request-id": [ "941afa7e-d272-4e91-b1d0-6619c88a0c17" ], + "x-ms-unique-id": [ "1024" ], + "x-ms-client-request-id": [ "2a473bb5-a431-4b07-8747-000dbd421a5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -241,36 +241,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6b701a1b-a4fa-4961-a781-df57da5308d4", "445e69e6-bd28-475a-ab08-a7095655cced" ], + "x-ms-original-request-ids": [ "d1cb7014-227b-4a9c-9ab5-6d8ce69324fe", "ec468700-4320-44e1-93f3-be25e0200aa2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d5286bf0-d813-4ab7-a7d2-715dd9e20406" ], - "x-ms-correlation-request-id": [ "d5286bf0-d813-4ab7-a7d2-715dd9e20406" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021840Z:d5286bf0-d813-4ab7-a7d2-715dd9e20406" ], + "x-ms-request-id": [ "5e896ad0-7824-4589-851e-be840ff1c25b" ], + "x-ms-correlation-request-id": [ "5e896ad0-7824-4589-851e-be840ff1c25b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T002048Z:5e896ad0-7824-4589-851e-be840ff1c25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6579B1BDAA2142E8A9CD3C7C336A7A1D Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B130BBDFEF5C457D9A873B38819F173A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:48Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "17140" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506005,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":null,\"isXenon\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506002,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506085,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506100,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506092,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506037,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505995,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6506119,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6505993,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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-ry1xpa\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1296892,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508029,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":null,\"isXenon\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508027,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508082,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":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-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508079,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508076,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":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-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508052,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508024,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508102,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6508022,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1297651,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/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-myf9na/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-le3f9v/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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1024" ], - "x-ms-client-request-id": [ "f5c255f0-b44f-49ce-96dc-3f878950a2af" ], + "x-ms-unique-id": [ "1025" ], + "x-ms-client-request-id": [ "feb86d88-b901-4479-b432-901a234d85ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -286,36 +286,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7677ce8-d9cb-4af9-8944-c3f590903b73" ], + "x-ms-request-id": [ "ec212bf8-9364-4889-a229-6d90dde96064" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "430b1ab1-93e9-4281-b5c1-05ec44a19d8f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021840Z:430b1ab1-93e9-4281-b5c1-05ec44a19d8f" ], + "x-ms-correlation-request-id": [ "90c9b078-7e8e-4c5f-89cc-3f097866a4de" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T002048Z:90c9b078-7e8e-4c5f-89cc-3f097866a4de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD81E9B45B6448BBAD4EF32ADA683FF6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72F124481B6840C6967632FB77701233 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:48Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68284,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68284\",\"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-14T01:13:37.5733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68329,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68329\",\"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-14T23:13:16.0266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/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-9wrjxu/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-si2zeg/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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1025" ], - "x-ms-client-request-id": [ "276147a1-0416-42b0-a781-f1f64eab4b4d" ], + "x-ms-unique-id": [ "1026" ], + "x-ms-client-request-id": [ "e663a4d5-b8d1-41ba-a56e-09345a824a60" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -331,36 +331,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3a1b555-4bc5-403e-aa60-e9fd06eff4ea" ], + "x-ms-request-id": [ "e9b3e212-9181-4b41-b365-f7d33baabbc8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "349da470-685c-4c0a-b5c5-7a42ffc8a551" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021840Z:349da470-685c-4c0a-b5c5-7a42ffc8a551" ], + "x-ms-correlation-request-id": [ "01a420ea-9cbc-4a6a-94df-894d4f8cbd48" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002049Z:01a420ea-9cbc-4a6a-94df-894d4f8cbd48" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7030E2F777C40B9BDD1321913693504 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D5B10D3EBE74055AF7C0B9DA777FFFA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:48Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83358,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83358\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:12:13.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97018,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:11:50.3066667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01+9": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?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-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1026" ], - "x-ms-client-request-id": [ "f0cebc08-9022-432c-86c8-1ffe903b8e2b" ], + "x-ms-unique-id": [ "1027" ], + "x-ms-client-request-id": [ "7de6628b-34ff-4369-9444-f4b029396272" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -376,36 +376,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e79268f-a3c0-4071-bda7-571b95d84ec1" ], + "x-ms-request-id": [ "4c128e19-4f93-45bd-985a-736c4db5a170" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "741f4db8-e924-40d6-9f44-c33ad3c4b6e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021840Z:741f4db8-e924-40d6-9f44-c33ad3c4b6e7" ], + "x-ms-correlation-request-id": [ "3a7bf5ef-be19-4924-9904-8a503c04c6b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002049Z:3a7bf5ef-be19-4924-9904-8a503c04c6b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C14EB5298FB34542B818630117FD0753 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AEF0BE6F798C423FBA1FD07B2CCF31AF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Default1bg\",\"name\":\"Default1bg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54407,\"name\":\"Default1bg\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-273_54407\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:59:54.5766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/serverfarms/Default1ds\",\"name\":\"Default1ds\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":76264,\"name\":\"Default1ds\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-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-myf9na\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-265_76264\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:08:29.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01+10": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?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-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1027" ], - "x-ms-client-request-id": [ "89600ca7-939d-4506-b135-aa3653a80d12" ], + "x-ms-unique-id": [ "1028" ], + "x-ms-client-request-id": [ "f3f0eb50-5502-486f-905f-ce2f8ea08b32" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -421,36 +421,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5964146b-412d-4fda-8502-8ee9c61b214e" ], + "x-ms-request-id": [ "442c88dd-1c69-465f-8af9-97a178f90d37" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d14ce760-f532-4737-a42b-deaa36584d4c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:d14ce760-f532-4737-a42b-deaa36584d4c" ], + "x-ms-correlation-request-id": [ "1de0a510-c588-4512-8bb5-bf20a8c42315" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002049Z:1de0a510-c588-4512-8bb5-bf20a8c42315" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5F64F414BE843168AE478DB1A9FC384 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 377BCD84BBBF43BE8B6444B4EFAC98DA Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1752" ], + "Content-Length": [ "1758" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/serverfarms/Default1ib\",\"name\":\"Default1ib\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83429,\"name\":\"Default1ib\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-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-le3f9v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_83429\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:07:09.5333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/serverfarms/Default1vf\",\"name\":\"Default1vf\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97020,\"name\":\"Default1vf\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-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-9wrjxu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-287_97020\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:04:22.9633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?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-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?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-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1028" ], - "x-ms-client-request-id": [ "159f6d0c-4784-44e6-b977-97046bb7c9ba" ], + "x-ms-unique-id": [ "1029" ], + "x-ms-client-request-id": [ "d0ffd918-379a-452d-884b-7cea2d5e8304" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -466,36 +466,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2fc4463-ff41-429c-80dc-8715df3a9af0" ], + "x-ms-request-id": [ "32bb5e45-344d-4756-a2e7-559d69539274" ], "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": [ "3fdd6b9d-d063-4a1a-88c2-ccc1193b9b18" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:3fdd6b9d-d063-4a1a-88c2-ccc1193b9b18" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b151231-6494-4702-8d6d-2b40a52b1109" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002049Z:9b151231-6494-4702-8d6d-2b40a52b1109" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0367257A06864E26AAA72F508F9CBD24 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C752A5BB90CD42C0954C13935A70ED74 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/serverfarms/Default1nv\",\"name\":\"Default1nv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":83361,\"name\":\"Default1nv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-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-si2zeg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-307_83361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:02:08.53\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Default1wt\",\"name\":\"Default1wt\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":89795,\"name\":\"Default1wt\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-229_89795\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:01:10.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01+12": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?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-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1029" ], - "x-ms-client-request-id": [ "dca80de8-48c1-475e-8bc9-a5db8b4d0c57" ], + "x-ms-unique-id": [ "1030" ], + "x-ms-client-request-id": [ "c2c6bd59-f406-4321-a4ad-2c628d88eb88" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -511,36 +511,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f61aabc-0b92-4e95-a0ca-7bfea1cb22a2" ], + "x-ms-request-id": [ "7e65a7bd-bbd0-4f2d-adc6-2462049a41a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6424634-d577-4fa3-9120-a5c40a27280e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:c6424634-d577-4fa3-9120-a5c40a27280e" ], + "x-ms-correlation-request-id": [ "60a18c28-2c00-4240-a6f1-b523f751ba53" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002049Z:60a18c28-2c00-4240-a6f1-b523f751ba53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D23C96DF53E4CDE8DD80938A8468B10 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 96E18C8030774390B561B31C78860625 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1746" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Default1si\",\"name\":\"Default1si\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98950,\"name\":\"Default1si\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-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\":5,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98950\",\"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-14T01:30:17.4733333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Default1zc\",\"name\":\"Default1zc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94032,\"name\":\"Default1zc\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94032\",\"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-14T23:31:28.2233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01+13": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1030" ], - "x-ms-client-request-id": [ "7f68bcbf-3f07-4d14-b205-b8c37b527fbe" ], + "x-ms-unique-id": [ "1031" ], + "x-ms-client-request-id": [ "7ee84eea-d765-4e67-a735-49a59082d1b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -556,36 +556,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "171033fe-7ace-4459-8e83-2d0c79f59067" ], + "x-ms-request-id": [ "419feb04-11bd-4cfd-8f5b-c8a16faaa082" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "51286faf-e790-4d89-9a88-5a7306992537" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:51286faf-e790-4d89-9a88-5a7306992537" ], + "x-ms-correlation-request-id": [ "403076da-fa77-433c-8df2-a927986e0bc8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002049Z:403076da-fa77-433c-8df2-a927986e0bc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3D4EF7F8EBB4589A98E5EACCDCB3871 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E9061D372D54E0D8C51A31D4228B352 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"name\":\"Functions-Linux-Premium-4e5vgl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50401,\"name\":\"Functions-Linux-Premium-4e5vgl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-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-jxyp27\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-161_50401\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:09:08.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"name\":\"Functions-Linux-Premium-ei67oa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50668,\"name\":\"Functions-Linux-Premium-ei67oa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-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-pkqf4d\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50668\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:43.2933333\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1031" ], - "x-ms-client-request-id": [ "28373ad0-441f-425e-8ada-2ece4876bc2f" ], + "x-ms-unique-id": [ "1032" ], + "x-ms-client-request-id": [ "f1673c8a-0ebe-44da-bf5c-749bb0def16e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -601,36 +601,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0eba70b9-facb-4954-9575-79d9c295b2a3" ], + "x-ms-request-id": [ "a1e6c574-4ba2-402f-84a2-b506c5106781" ], "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": [ "019d911b-6e5e-42a3-8a3b-7cf760159dbe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021841Z:019d911b-6e5e-42a3-8a3b-7cf760159dbe" ], + "x-ms-correlation-request-id": [ "fabc91a6-a7c9-432a-bd99-d62afdbb9ee2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002050Z:fabc91a6-a7c9-432a-bd99-d62afdbb9ee2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05F9CC47BA274CDA93FFEB637F8DB63A Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CBF7EFA421B4AB3BCFD200E1C02C4C5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:20:15.9\",\"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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01+15": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1032" ], - "x-ms-client-request-id": [ "a3d2ea05-f2f7-43ba-a0f8-562ad77076a7" ], + "x-ms-unique-id": [ "1033" ], + "x-ms-client-request-id": [ "a5ed6626-242c-4624-b8d9-7df58a23a8e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -646,36 +646,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60a8f57a-3117-49c8-8694-a227072652fa" ], + "x-ms-request-id": [ "75d48db2-ec7f-40cf-8beb-0717c00ef6ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c315dda1-49be-4854-8e73-51ae13f22d27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021842Z:c315dda1-49be-4854-8e73-51ae13f22d27" ], + "x-ms-correlation-request-id": [ "b1eb5d0f-a5d4-4802-856c-ed6247c6099d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002050Z:b1eb5d0f-a5d4-4802-856c-ed6247c6099d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D74DB293059C436EACD6BF0FFB289C49 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB26E7B7BDB446F49BB955E0E28A60B6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"name\":\"Functions-Windows-Premium-fo9ugi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98948,\"name\":\"Functions-Windows-Premium-fo9ugi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98948\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T01:08:31.5933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"name\":\"Functions-Windows-Premium-qnrsj3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94028,\"name\":\"Functions-Windows-Premium-qnrsj3\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central 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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94028\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T23:08:06.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01+16": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1033" ], - "x-ms-client-request-id": [ "6ac4f2f5-a732-4da0-95f5-2f0cbb313341" ], + "x-ms-unique-id": [ "1034" ], + "x-ms-client-request-id": [ "235818ca-a68e-48ce-b8fd-b887539800cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -691,24 +691,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9a10daa-5500-4610-81db-14b140247f87" ], + "x-ms-request-id": [ "2015a35a-5c70-4fec-a8d6-7fb918b0121d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5f82a63e-01ba-4cca-94a2-f47126ddd8c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021842Z:5f82a63e-01ba-4cca-94a2-f47126ddd8c5" ], + "x-ms-correlation-request-id": [ "5a2b2d7d-8f6a-4404-88ab-34bf92caa0ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002052Z:5a2b2d7d-8f6a-4404-88ab-34bf92caa0ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F57DB4AFEEC4B5A827F26A631078C86 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D19547E48AC64410ABDA569D571B7FB8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1691" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Web/serverfarms/Default1vd\",\"name\":\"Default1vd\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1036,\"name\":\"Default1vd\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-fqti-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-fqti\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T01:32:22.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/serverfarms/Default1kq\",\"name\":\"Default1kq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1064,\"name\":\"Default1kq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-8wks-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-8wks\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1064\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-14T23:33:38.1833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, @@ -719,8 +719,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1034" ], - "x-ms-client-request-id": [ "a860289c-38e4-4efe-88a9-5509e99272d8" ], + "x-ms-unique-id": [ "1035" ], + "x-ms-client-request-id": [ "bb625886-a1b4-4817-8915-69d79b891a98" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -735,36 +735,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e40e2a0a-ed6b-435e-aafb-4bf5ba08bd98", "208ff47b-7a30-42b0-843d-b680ecbdf637", "385ee0c2-c016-4f82-89b2-4e5e2e1466f6" ], + "x-ms-original-request-ids": [ "05ced869-03a4-463a-9515-675af241f4ba", "2c905848-266f-4d5d-9881-e5629c863625", "d552f3af-fb76-4401-ae12-d7d80fbe898f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c76afa8c-d001-46e1-8c94-6790a1db31b3" ], - "x-ms-correlation-request-id": [ "c76afa8c-d001-46e1-8c94-6790a1db31b3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251114T021843Z:c76afa8c-d001-46e1-8c94-6790a1db31b3" ], + "x-ms-request-id": [ "2fa5af52-bb33-4190-87bf-ac3b438da0ef" ], + "x-ms-correlation-request-id": [ "2fa5af52-bb33-4190-87bf-ac3b438da0ef" ], + "x-ms-routing-request-id": [ "EASTASIA:20251115T002052Z:2fa5af52-bb33-4190-87bf-ac3b438da0ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5435ECCEAB640B0A46A6660F58B5181 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65E11279F89E4E5E9A59057289368216 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappcustomsafqti\",\"name\":\"flexappcustomsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:33.1768440Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:33.0830348Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsafqti.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsafqti.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsafqti.queue.core.windows.net/\",\"table\":\"https://flexappcustomsafqti.table.core.windows.net/\",\"file\":\"https://flexappcustomsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaf\",\"name\":\"flexappdotnetisolatedsaf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:10.8932226Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:10.7994215Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaf.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaf.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaf.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaf.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaf.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaf.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappjavasafqti\",\"name\":\"flexappjavasafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:13.9880673Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:13.8942624Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasafqti.dfs.core.windows.net/\",\"web\":\"https://flexappjavasafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasafqti.blob.core.windows.net/\",\"queue\":\"https://flexappjavasafqti.queue.core.windows.net/\",\"table\":\"https://flexappjavasafqti.table.core.windows.net/\",\"file\":\"https://flexappjavasafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexappnodesafqti\",\"name\":\"flexappnodesafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:15:37.4092097Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:15:37.2842596Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesafqti.dfs.core.windows.net/\",\"web\":\"https://flexappnodesafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesafqti.blob.core.windows.net/\",\"queue\":\"https://flexappnodesafqti.queue.core.windows.net/\",\"table\":\"https://flexappnodesafqti.table.core.windows.net/\",\"file\":\"https://flexappnodesafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppowershellsafqti\",\"name\":\"flexapppowershellsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:16:40.5354697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:16:40.4415902Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsafqti.table.core.windows.net/\",\"file\":\"https://flexapppowershellsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-fqti/providers/Microsoft.Storage/storageAccounts/flexapppythonsafqti\",\"name\":\"flexapppythonsafqti\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:17:06.8482962Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:17:06.7545488Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsafqti.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsafqti.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsafqti.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsafqti.queue.core.windows.net/\",\"table\":\"https://flexapppythonsafqti.table.core.windows.net/\",\"file\":\"https://flexapppythonsafqti.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragew45\",\"name\":\"functionslinuxstoragew45\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:08:08.3089575Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:08:08.3089575Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:08:08.0277006Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragew45.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragew45.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragew45.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragew45.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragew45.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragew45.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm\",\"name\":\"functionswinstoragerqm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T01:07:43.9339710Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:07:43.9339710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:07:43.6527222Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragerqm.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragerqm.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragerqm.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragerqm.queue.core.windows.net/\",\"table\":\"https://functionswinstoragerqm.table.core.windows.net/\",\"file\":\"https://functionswinstoragerqm.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-bjek/providers/Microsoft.Storage/storageAccounts/funcacastotoragebjek\",\"name\":\"funcacastotoragebjek\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T01:14:46.7850892Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T01:14:46.7069571Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragebjek.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragebjek.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragebjek.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragebjek.queue.core.windows.net/\",\"table\":\"https://funcacastotoragebjek.table.core.windows.net/\",\"file\":\"https://funcacastotoragebjek.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappcustomsa8wks\",\"name\":\"flexappcustomsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:18:39.9508940Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:18:39.8571445Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa8wks.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa8wks.table.core.windows.net/\",\"file\":\"https://flexappcustomsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa8\",\"name\":\"flexappdotnetisolatedsa8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:18.4645158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:18.3707687Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa8.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa8.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa8.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa8.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa8.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa8.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappjavasa8wks\",\"name\":\"flexappjavasa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:20.0120024Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:19.9182480Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa8wks.queue.core.windows.net/\",\"table\":\"https://flexappjavasa8wks.table.core.windows.net/\",\"file\":\"https://flexappjavasa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexappnodesa8wks\",\"name\":\"flexappnodesa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:15:48.9804383Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:15:48.8866855Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa8wks.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa8wks.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa8wks.queue.core.windows.net/\",\"table\":\"https://flexappnodesa8wks.table.core.windows.net/\",\"file\":\"https://flexappnodesa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa8wks\",\"name\":\"flexapppowershellsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:16:46.5903922Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:16:46.4966377Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Storage/storageAccounts/flexapppythonsa8wks\",\"name\":\"flexapppythonsa8wks\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:17:43.6847015Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:17:43.5909556Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa8wks.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa8wks.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa8wks.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa8wks.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa8wks.table.core.windows.net/\",\"file\":\"https://flexapppythonsa8wks.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragea16\",\"name\":\"functionslinuxstoragea16\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:33.8567741Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:33.8567741Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:33.6067804Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragea16.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragea16.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragea16.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragea16.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragea16.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragea16.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh\",\"name\":\"functionswinstorage9nh\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"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-14T23:07:12.5599103Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:07:12.5599103Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:07:12.3099132Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage9nh.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage9nh.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage9nh.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage9nh.queue.core.windows.net/\",\"table\":\"https://functionswinstorage9nh.table.core.windows.net/\",\"file\":\"https://functionswinstorage9nh.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-gls5/providers/Microsoft.Storage/storageAccounts/funcacastotoragegls5\",\"name\":\"funcacastotoragegls5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-14T23:14:54.2691038Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-14T23:14:54.1909766Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragegls5.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragegls5.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragegls5.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragegls5.queue.core.windows.net/\",\"table\":\"https://funcacastotoragegls5.table.core.windows.net/\",\"file\":\"https://funcacastotoragegls5.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01+18": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Storage/storageAccounts/functionswinstoragerqm/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Storage/storageAccounts/functionswinstorage9nh/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1035" ], - "x-ms-client-request-id": [ "c4e939bf-9932-4a27-865f-77348000e2ba" ], + "x-ms-unique-id": [ "1036" ], + "x-ms-client-request-id": [ "da1cb2cb-a7cd-4c59-a2c7-44c18b412630" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -779,30 +779,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "efcaf0f0-f937-4db1-9940-4daf41408b73" ], + "x-ms-request-id": [ "182076ec-c8b8-4af8-a1be-893c698d8bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/24a5c0ff-1285-42dc-a104-48c792907507" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7935ea55-1d19-44b0-83df-13e0b9ac69df" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ee4ff12d-0289-4c14-91c6-0e3288113f17" ], - "x-ms-routing-request-id": [ "WESTUS2:20251114T021844Z:ee4ff12d-0289-4c14-91c6-0e3288113f17" ], + "x-ms-correlation-request-id": [ "748414d3-f173-42fe-905f-2f436a34e9d6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251115T002053Z:748414d3-f173-42fe-905f-2f436a34e9d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BE6718D15A743D782E20761F6DAA79C Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8E6138F4DC540B29CA268E7E4B8C1B4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"lHsjtfeLnMjsx28x+9StrIv+ZGgQ9YWnc5Xij7S0vMOQSGzzD5QR0kmA9rKhpdXsptNcP90Aztqx+ASthVPHtQ==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"VXg+rSphKtrOKQNXppKqPsy34kRhElRPaNfnREakziZH78Ia6w89TNN2ebOElPKUvBzQyiFQyCYo+AStNK8+hw==\",\"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-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2015-05-01+19": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2015-05-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -822,30 +822,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49011828-a2a0-4993-975a-3e27a64ae90e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d44ea6e1-9315-4000-8df0-2f62ee13f6a6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "d5c6753f-dbbe-4cd9-97d2-786fb6e93d62" ], - "x-ms-correlation-request-id": [ "d5c6753f-dbbe-4cd9-97d2-786fb6e93d62" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021849Z:d5c6753f-dbbe-4cd9-97d2-786fb6e93d62" ], + "x-ms-request-id": [ "ea0865f2-a006-4d9d-b0d4-d37d63be889a" ], + "x-ms-correlation-request-id": [ "ea0865f2-a006-4d9d-b0d4-d37d63be889a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002058Z:ea0865f2-a006-4d9d-b0d4-d37d63be889a" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E69D26EC6AAC4614BC93FEE2C520D907 Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:18:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F48EC40FCE6E4209B4F721BD1EBC97E5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:20:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0a072ce8-0000-0300-0000-691691890000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"name\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"AppId\": \"77c9be64-4f1d-4ddd-845e-9b9350ff6de0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1bfe1304-4f51-46d2-afe7-cd03cfa9e5de\",\r\n \"ConnectionString\": \"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\",\r\n \"Name\": \"Func-PowerShell-NewTest4-bzn08hgcxk\",\r\n \"CreationDate\": \"2025-11-14T02:18:44.6317333+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-bzn08hgcxk_77c9be64-4f1d-4ddd-845e-9b9350ff6de0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-bzn08hgcxk-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\": \"\\\"300063f2-0000-0300-0000-6917c76a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"AppId\": \"425feac0-2687-48c1-b551-9f44dbf8193e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"642f4137-1a1d-4c91-a64b-9e4eaa105662\",\r\n \"ConnectionString\": \"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\",\r\n \"Name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"CreationDate\": \"2025-11-15T00:20:53.8659352+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-5id68b7s4u_425feac0-2687-48c1-b551-9f44dbf8193e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-5id68b7s4u-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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01+20": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2023-12-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-bzn08hgcxk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\"\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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-5id68b7s4u\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -859,39 +859,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D05357EC0\"" ], + "ETag": [ "\"1DC55C5B87277A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdd817bc-5db7-45ca-800f-63df1e7f1ce2" ], + "x-ms-request-id": [ "adf5533d-a55e-4313-91a1-1c2df6f938a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8193767d-6374-4a9a-9c3e-87c931943ad0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7136ba50-9b42-453a-bda3-0d060c2b3fb0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "576df4b5-d968-4d39-8fb1-de3cb00d4b08" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T021932Z:576df4b5-d968-4d39-8fb1-de3cb00d4b08" ], + "x-ms-correlation-request-id": [ "d7d3b421-8f00-4995-82cf-9421cd9843fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002140Z:d7d3b421-8f00-4995-82cf-9421cd9843fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4BA9279F96949B888FEFF9CEC62405D Ref B: MWH011020806052 Ref C: 2025-11-14T02:18:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:19:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 398C3405A52E4A349BC7D5F370B578F0 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:20:58Z" ], + "Date": [ "Sat, 15 Nov 2025 00:21:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8507" ], + "Content-Length": [ "8496" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:18:51.5833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"func-powershell-newtest4-5id68b7s4u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-5id68b7s4u.azurewebsites.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-5id68b7s4u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:20:59.8933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5id68b7s4u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest4-5id68b7s4u\\\\$Func-PowerShell-NewTest4-5id68b7s4u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1038" ], - "x-ms-client-request-id": [ "5a1d1ae6-1819-4c41-a6ee-d7b1673aac4a" ], + "x-ms-unique-id": [ "1039" ], + "x-ms-client-request-id": [ "067cd1a0-a247-4e5d-a4f7-9a810672c1f0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -905,38 +905,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D1CBA1ACB\"" ], + "ETag": [ "\"1DC55C5D0501620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e703d80-ca34-4bd9-bd30-486bdaf89a57" ], + "x-ms-request-id": [ "03dc8fdb-21a0-41f8-90af-7f7ce023c11a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e3946f98-e3c1-4ea1-bd54-d2aaf16ea9f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022002Z:e3946f98-e3c1-4ea1-bd54-d2aaf16ea9f2" ], + "x-ms-correlation-request-id": [ "b4c242cb-d2e2-40e8-b088-6d630d043f4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002211Z:b4c242cb-d2e2-40e8-b088-6d630d043f4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2025065A7B82430990E43BC55D5B465E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0511598A993045B48540D07AA5BCA3BC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:19:31.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"func-powershell-newtest4-5id68b7s4u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-5id68b7s4u.azurewebsites.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-5id68b7s4u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:21:40.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\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest4-5id68b7s4u\\\\$Func-PowerShell-NewTest4-5id68b7s4u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1039" ], - "x-ms-client-request-id": [ "ec2a195d-7b29-4bfa-b00d-b07b56010492" ], + "x-ms-unique-id": [ "1040" ], + "x-ms-client-request-id": [ "c5149099-4c67-4c9a-9fd4-dcd1734fa665" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -951,38 +951,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D1CBA1ACB\"" ], + "ETag": [ "\"1DC55C5D0501620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "baa3e4f4-fa40-4230-a1c1-347103f77482" ], + "x-ms-request-id": [ "77603b68-52ee-44cb-97f6-08790c0e186c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b744b570-4a4b-4fd5-81f9-1dbe9f525a6e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022002Z:b744b570-4a4b-4fd5-81f9-1dbe9f525a6e" ], + "x-ms-correlation-request-id": [ "956bdb3a-06d5-4265-be9d-849e495ec88c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002211Z:956bdb3a-06d5-4265-be9d-849e495ec88c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B60445FDAB91480A86228DF7E8460510 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85820560DF944094A46B5FE554187916 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:19:31.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"func-powershell-newtest4-5id68b7s4u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-5id68b7s4u.azurewebsites.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-5id68b7s4u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:21:40.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\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest4-5id68b7s4u\\\\$Func-PowerShell-NewTest4-5id68b7s4u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings/list?api-version=2023-12-01+23": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1040" ], - "x-ms-client-request-id": [ "32541759-1cdd-4feb-93fb-0cf82e1c16c4" ], + "x-ms-unique-id": [ "1041" ], + "x-ms-client-request-id": [ "cb45075e-cd5c-414b-bcd9-f21091d14ff1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -998,36 +998,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9fe289b9-6cdc-4548-9afb-2f2353803e7c" ], + "x-ms-request-id": [ "9333387f-0c7b-4549-b1d2-ae6903116a17" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/170ea4af-ce7c-465d-a9e4-ee5060d0a191" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ef59968-4b95-4a74-bc86-95a6e7fd9df2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d75f19b3-38c8-4839-ab2a-124f01361786" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022003Z:d75f19b3-38c8-4839-ab2a-124f01361786" ], + "x-ms-correlation-request-id": [ "adf248e4-e071-4deb-807d-5a71bdf27e29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002211Z:adf248e4-e071-4deb-807d-5a71bdf27e29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87A63C17AE5048829A5DBF7A20F83D99 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:02Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6B5826E46DC4C4CA5F77591818F1C19 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-bzn08hgcxk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-5id68b7s4u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01+24": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1041" ], - "x-ms-client-request-id": [ "97b6db9d-bae3-47b4-965a-85c611e0420b" ], + "x-ms-unique-id": [ "1042" ], + "x-ms-client-request-id": [ "26180605-47ed-49c7-aba6-e86159525227" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1043,37 +1043,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb3a241a-0696-4a79-adec-1078a20949c5" ], + "x-ms-request-id": [ "5e290f60-e9c7-4b0d-86aa-36c9d371a087" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50e38e1c-8bb2-413d-89b3-0a16cd079b00" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80b3b269-d2a8-4d51-9571-af38540498f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f6ced72a-5533-4fa0-bb0c-1674ef65163f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022003Z:f6ced72a-5533-4fa0-bb0c-1674ef65163f" ], + "x-ms-correlation-request-id": [ "c3f546cb-b43f-4138-b59a-da1cd3c1f98b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002212Z:c3f546cb-b43f-4138-b59a-da1cd3c1f98b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F649AC7148BF454F80E4EE332E9ABC3C Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3524DFF1B364A4CA1C81AC2E6CB6C29 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/web\",\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1042" ], - "x-ms-client-request-id": [ "a3af7a54-11e5-47f9-aa75-ac527f1daada" ], + "x-ms-unique-id": [ "1043" ], + "x-ms-client-request-id": [ "f1008f9f-24a9-4fa3-ad67-007ea61bbb50" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1088,38 +1088,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D1CBA1ACB\"" ], + "ETag": [ "\"1DC55C5D0501620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac7c1514-54f2-4515-a7cc-72fd8b85bab6" ], + "x-ms-request-id": [ "f1a84b8f-9a43-4f25-8643-1923e1031aa2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f72b1ba-dd71-4cc0-adc4-2f57f4286e09" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022003Z:6f72b1ba-dd71-4cc0-adc4-2f57f4286e09" ], + "x-ms-correlation-request-id": [ "b7076daf-dffb-4515-a986-2dbd349661df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002212Z:b7076daf-dffb-4515-a986-2dbd349661df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 273E106D2629457FB5D33E0AAC4AFFFD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A50ADEEE3A104D7A82336157BB9277B3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8481" ], + "Content-Length": [ "8465" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Func-PowerShell-NewTest4-bzn08hgcxk\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"func-powershell-newtest4-bzn08hgcxk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-bzn08hgcxk.azurewebsites.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-bzn08hgcxk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:19:31.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":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-bzn08hgcxk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Func-PowerShell-NewTest4-bzn08hgcxk\\\\$Func-PowerShell-NewTest4-bzn08hgcxk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"func-powershell-newtest4-bzn08hgcxk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Func-PowerShell-NewTest4-5id68b7s4u\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"func-powershell-newtest4-5id68b7s4u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":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-5id68b7s4u.azurewebsites.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-5id68b7s4u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:21:40.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\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Func-PowerShell-NewTest4-5id68b7s4u\\\\$Func-PowerShell-NewTest4-5id68b7s4u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"func-powershell-newtest4-5id68b7s4u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings/list?api-version=2023-12-01+26": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1043" ], - "x-ms-client-request-id": [ "63ff6396-bf4f-47c0-8760-69e34af3a553" ], + "x-ms-unique-id": [ "1044" ], + "x-ms-client-request-id": [ "1899ab83-6179-4c6e-93ca-c22762faf7cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1135,36 +1135,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "676cc875-87c5-4387-a80a-f06298e39ae5" ], + "x-ms-request-id": [ "fc892e15-7ea4-4a9f-959f-4a9f3849cb52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74b4fae5-b3ee-4f51-87dd-ce56cbaeb2d0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b248e114-68d4-4bfa-9ba3-72889b56b1b1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "578996a0-df4a-472e-853c-0513950befdb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022004Z:578996a0-df4a-472e-853c-0513950befdb" ], + "x-ms-correlation-request-id": [ "ab36309c-fef6-451f-a3be-11fd2844f904" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002212Z:ab36309c-fef6-451f-a3be-11fd2844f904" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4F08C80C0714D46A5C26E9423615B89 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:03Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 67FE2D1F1A4C422395E1C8531E31D9F2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-bzn08hgcxk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1bfe1304-4f51-46d2-afe7-cd03cfa9e5de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77c9be64-4f1d-4ddd-845e-9b9350ff6de0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-5id68b7s4u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\"}}", "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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01+27": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/web?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1044" ], - "x-ms-client-request-id": [ "1437d0da-8be7-4a3a-84c6-7ff86d7e6418" ], + "x-ms-unique-id": [ "1045" ], + "x-ms-client-request-id": [ "bec26ef5-e93e-43ce-b832-03edd3277a06" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1180,37 +1180,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ca5eab8b-46c1-44e4-a2e2-f58e2ac343ad" ], + "x-ms-request-id": [ "16024c81-d072-4122-8b3a-479df62c5438" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ba6c6e6-e42c-421d-ab40-8b45bc0202e0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5eb52fbd-dc0e-4b94-8b83-633c032eae49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022004Z:5eb52fbd-dc0e-4b94-8b83-633c032eae49" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e50b2e10-92ac-4497-b225-08d5a2bbfef5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e3f5cd7e-4112-4d99-92c0-9b07d498574c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002212Z:e3f5cd7e-4112-4d99-92c0-9b07d498574c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A7BA1FACCE044DBA11CD5A6C02F8409 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2CDCE5BB93434B75A2A50319CCEA99FD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22: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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk/config/web\",\"name\":\"Func-PowerShell-NewTest4-bzn08hgcxk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/web\",\"name\":\"Func-PowerShell-NewTest4-5id68b7s4u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01+28": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1045" ], - "x-ms-client-request-id": [ "e07c1bc8-c38f-490e-a78a-9121241ae4ef" ], + "x-ms-unique-id": [ "1046" ], + "x-ms-client-request-id": [ "ba6d1aa9-0ed2-4da8-b222-7d673add7f7a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1226,36 +1226,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f3b3131-e7bb-4535-8165-35c71d3bfb85" ], + "x-ms-request-id": [ "846d65db-75df-4b0f-8b5a-6eea60d6cce4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f0a9b71-a42e-4a70-9676-d7dbcf580fa5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022005Z:6f0a9b71-a42e-4a70-9676-d7dbcf580fa5" ], + "x-ms-correlation-request-id": [ "3df99b50-2f72-4537-9448-4ff511305075" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002213Z:3df99b50-2f72-4537-9448-4ff511305075" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4CEE944F0824CF5981DA2F1A437AEB9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:04Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 489C43501F8F4863988A0115580BA785 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:20:15.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1046" ], - "x-ms-client-request-id": [ "64336e80-f86b-4fb6-858b-51161a78bfbc" ], + "x-ms-unique-id": [ "1047" ], + "x-ms-client-request-id": [ "e5685138-9d16-44d1-b766-b5952ac4edec" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1270,20 +1270,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D1CBA1ACB\"" ], + "ETag": [ "\"1DC55C5D0501620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e0b6721-db15-4358-8c9c-a22efae15010" ], + "x-ms-request-id": [ "d34718be-3a1c-415a-9e9c-bb5fbd11e79e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b3c7fee-49cb-4051-95d3-c307ec2f201c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc4f0421-6a9b-4a13-9cfc-9ea3fe6d57c1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "522a2e63-d285-46a6-b880-00554ce7b308" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:522a2e63-d285-46a6-b880-00554ce7b308" ], + "x-ms-correlation-request-id": [ "150be293-8a98-424d-b653-2d0fe2bff1f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002223Z:150be293-8a98-424d-b653-2d0fe2bff1f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 25478AB0BD0D475F95C7F5F5D4FEBBBD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:05Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E91E19F0D2442E0A14B8E7CC0C7B7F7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1293,15 +1293,15 @@ "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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01+30": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1047" ], - "x-ms-client-request-id": [ "5701c7d0-c615-4e90-83d7-405f8340e554" ], + "x-ms-unique-id": [ "1048" ], + "x-ms-client-request-id": [ "0e0ae1e8-07bc-48a7-a8d5-97e2b99f05f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1317,36 +1317,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "767715a8-da11-4630-96fd-153f893f9333" ], + "x-ms-request-id": [ "5fce3786-8d8e-459e-a621-659df769b9ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "160c979b-1fef-49e0-bc2c-bef8e59bcbd4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:160c979b-1fef-49e0-bc2c-bef8e59bcbd4" ], + "x-ms-correlation-request-id": [ "88fe4ded-3276-4233-81d9-b924b176b0ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002224Z:88fe4ded-3276-4233-81d9-b924b176b0ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED402D8879BF42B4A726AE6B19971DE7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F899E10081C4880B8C6D6B06F7A37A5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:23Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:20:15.9\",\"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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01+31": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?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-ry1xpa/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-bzn08hgcxk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1048" ], - "x-ms-client-request-id": [ "0bf1f591-8a60-4af7-bac3-34c254443958" ], + "x-ms-unique-id": [ "1049" ], + "x-ms-client-request-id": [ "36c9d65a-2d66-400b-b90f-eac51b902362" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1362,33 +1362,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "8326fb9a-b337-4d8d-bdf9-f2dc50ef72af" ], - "x-ms-correlation-request-id": [ "8326fb9a-b337-4d8d-bdf9-f2dc50ef72af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:8326fb9a-b337-4d8d-bdf9-f2dc50ef72af" ], + "x-ms-request-id": [ "7848757d-fdd2-48a2-ae30-d67ed59f5d37" ], + "x-ms-correlation-request-id": [ "7848757d-fdd2-48a2-ae30-d67ed59f5d37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002224Z:7848757d-fdd2-48a2-ae30-d67ed59f5d37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2388C5B7D14B42B8BF7FF3DAC7A86BA7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F1F9E353A6843C5BDA8BA9F1D8A5DEE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:24Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:23 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-bzn08hgcxk\u0027 under resource group \u0027Functions-Test-Windows-Premium-ry1xpa\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-5id68b7s4u\u0027 under resource group \u0027Functions-Test-Windows-Premium-rs70mo\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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01+32": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1049" ], - "x-ms-client-request-id": [ "2d082c61-5ed0-41d6-8f39-d945d3f1602c" ], + "x-ms-unique-id": [ "1050" ], + "x-ms-client-request-id": [ "31adc4f2-e54b-4264-b069-d8bbf902f196" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1404,36 +1404,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28cce310-ab4d-4b90-8616-ca7f01ae9e3c" ], + "x-ms-request-id": [ "9b0e4160-2c3b-4e88-a69d-f77ba1a523b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5e8da7e4-e0e7-4d6b-aabd-54fb333cbfd2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022014Z:5e8da7e4-e0e7-4d6b-aabd-54fb333cbfd2" ], + "x-ms-correlation-request-id": [ "49d87fbd-0003-41f7-a37e-b3a8c75112f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002224Z:49d87fbd-0003-41f7-a37e-b3a8c75112f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A73E4E14AD4C42C9BF8B1A6B14DBD734 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62FB2047FBBD4149B9EFEB617A07B540 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:24Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l\",\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98961,\"name\":\"Functions-MyTestPlan2-e36rsf8y2l\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-ry1xpa\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_98961\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-14T02:18:04.3766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":94048,\"name\":\"Functions-MyTestPlan2-kr06eymqwb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-rs70mo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-017_94048\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-15T00:20:15.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01+33": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?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-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e36rsf8y2l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1050" ], - "x-ms-client-request-id": [ "9f1c8849-6054-4031-a36f-3232b6d2b5f4" ], + "x-ms-unique-id": [ "1051" ], + "x-ms-client-request-id": [ "5827f6ff-e151-4576-8c73-4ba85c60c7c6" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1449,18 +1449,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94f81400-69f1-4169-80aa-7edc6ba00325" ], + "x-ms-request-id": [ "e3aad0c7-1467-4e8a-a0fb-4bc9b565df01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3cd87da6-6151-4f91-b4b8-96b2db158e3d" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "bc995e7f-77a1-4a59-8e68-c90bd89174cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022021Z:bc995e7f-77a1-4a59-8e68-c90bd89174cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd6a2b47-5a5b-496e-b720-a2edb46bf2aa" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "6e0f6d9f-fb84-46d7-9f67-4f5ab500ce0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002232Z:6e0f6d9f-fb84-46d7-9f67-4f5ab500ce0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CDC2D0BF8B3F42F5B98FE5887377E77D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:14Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8C96F83EE0140589680A723085C05F5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:24Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:31 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 7afbcec7ed19..c4791f43a600 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,13 +1,13 @@ { - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1051" ], - "x-ms-client-request-id": [ "85c3f40f-78e6-4cbd-9337-cbcbaf9f5e89" ], + "x-ms-unique-id": [ "1052" ], + "x-ms-client-request-id": [ "317a5b64-07cf-418b-b34b-3659028b620c" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5aaeb330-e049-41e8-8721-dd469e27acc3" ], + "x-ms-request-id": [ "79638048-03a6-4672-a103-287d2f79aaba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1e792c3-d3f2-4975-a1ed-916d53cbaf62" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cfcfba78-e481-4f06-aeed-a57e079c3a18" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "53105a0d-922e-4823-b815-dbb32adea35b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:53105a0d-922e-4823-b815-dbb32adea35b" ], + "x-ms-correlation-request-id": [ "790877e9-2bd5-49a5-ade8-b5ff739ba31c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002234Z:790877e9-2bd5-49a5-ade8-b5ff739ba31c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1798FC1F30714B6EACE8274B42230EC3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:22Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B26A0DA1ED7A4B4CA69F244B45842E2C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:33Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -44,15 +44,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1052" ], - "x-ms-client-request-id": [ "eb71d90e-5621-4c18-a2c7-3c87a70c6b4f" ], + "x-ms-unique-id": [ "1053" ], + "x-ms-client-request-id": [ "9408f598-1c8a-424a-9921-b6f9fa8e0b73" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -67,38 +67,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3B25AE95\"" ], + "ETag": [ "\"1DC55C5F0805755\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c2b0d74-d6d3-4c24-a5db-a52bc68f61b5" ], + "x-ms-request-id": [ "c75edec5-40a1-4c9f-816b-99d8924fb84c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cf5395ad-275f-4437-a0e9-3e133354589f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:cf5395ad-275f-4437-a0e9-3e133354589f" ], + "x-ms-correlation-request-id": [ "d617056c-2799-45a3-b733-d1702db2f1ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002234Z:d617056c-2799-45a3-b733-d1702db2f1ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 760E024360AD472B9D2FDD1E5400D1CE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:23Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3C45AD69AA14BB3A891A04B3AAE35C8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:34Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8411" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:22.9533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:34.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1053" ], - "x-ms-client-request-id": [ "8957822a-3257-4239-8c6d-608acad95967" ], + "x-ms-unique-id": [ "1054" ], + "x-ms-client-request-id": [ "ddc7fd14-fcb1-4eea-8b19-6558c86d09d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -114,36 +114,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "187509e6-a5ad-4f75-bec7-2a2fe87a9f0e" ], + "x-ms-request-id": [ "5be6b913-8654-49a0-b46c-64bd35a519ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ed08193-7849-44d0-a80a-b25304e15d11" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5c0ad9f-5a93-44c2-905b-8dd121b3fff9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9d2ff865-995a-4b27-b600-932e33ecfa0c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:9d2ff865-995a-4b27-b600-932e33ecfa0c" ], + "x-ms-correlation-request-id": [ "db560607-b341-441f-83b1-afbc683cb111" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002235Z:db560607-b341-441f-83b1-afbc683cb111" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 540B4E2EA35647DBBCE711741673C643 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:23Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32245C269B1347B489FAD213F018CB5C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:35Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1054" ], - "x-ms-client-request-id": [ "c0224af2-8ffc-46bd-a12d-315a5f30ad6a" ], + "x-ms-unique-id": [ "1055" ], + "x-ms-client-request-id": [ "b19429d8-e957-429c-ad52-db2bfcd52afb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -159,37 +159,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdbeb2b9-cf21-439c-91ed-505d89de0074" ], + "x-ms-request-id": [ "aa54fcfb-b48c-4fb0-b93f-b9f0d7fd7e6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6e4429d-4272-4060-bf71-a7e7a74a6534" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a476986-fa09-47cd-946a-4a63b14e0b16" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8b94bfe1-11aa-473c-b136-98ddbda41cd7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022023Z:8b94bfe1-11aa-473c-b136-98ddbda41cd7" ], + "x-ms-correlation-request-id": [ "80c7d76e-da7f-4ab6-82ab-a63252ff21b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002235Z:80c7d76e-da7f-4ab6-82ab-a63252ff21b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 534BB66BD60D4CA69B716808F9937FD4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:23Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 042147FA27814A37A922D59B51A0822B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:35Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1055" ], - "x-ms-client-request-id": [ "9eb91b91-1b3d-4137-885c-0a69538bb668" ], + "x-ms-unique-id": [ "1056" ], + "x-ms-client-request-id": [ "d73b3544-d025-4fb8-b2cf-1b95434a9b72" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -205,18 +205,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a185ba08-4b33-4743-8fc1-32f6c63c5368" ], + "x-ms-request-id": [ "c595518c-6247-4f6a-a132-1c484bcfd865" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25847669-fcc4-497b-aab2-8057648caa99" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea3cfa5d-5b8f-4213-ba0c-ecfbe6aa6e18" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "18e9d7b4-c198-4a37-8dd3-268b8fe7bacc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022024Z:18e9d7b4-c198-4a37-8dd3-268b8fe7bacc" ], + "x-ms-correlation-request-id": [ "22e6d995-1ad4-421d-a6a6-c0a0c4bfeebd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002236Z:22e6d995-1ad4-421d-a6a6-c0a0c4bfeebd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD7498F8D979484D8C20636D749E01A6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FE9106F163840FEB36B181DEA0C2A5C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:35Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -226,15 +226,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1056" ], - "x-ms-client-request-id": [ "b9de87cd-8468-442f-9b14-eb869a4c613a" ], + "x-ms-unique-id": [ "1057" ], + "x-ms-client-request-id": [ "47553711-2022-4feb-91c0-c19cdeada6bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -249,38 +249,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3BE7FA2B\"" ], + "ETag": [ "\"1DC55C5F164B6E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a2a3303-4ac2-4909-a8be-7b81f4d11ea7" ], + "x-ms-request-id": [ "285db01e-267a-4678-8d87-cb9d070a961d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bde7d3f5-fbce-47f8-a494-c91518b0d378" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022024Z:bde7d3f5-fbce-47f8-a494-c91518b0d378" ], + "x-ms-correlation-request-id": [ "3d8ff51e-06bd-4a5a-a64b-236eb25128fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002236Z:3d8ff51e-06bd-4a5a-a64b-236eb25128fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45C699A9ADC8405FB28AB7DD163FF508 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66DBF8DACBAB43C681568B9542EE5E83 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8411" ], + "Content-Length": [ "8395" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:24.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:36.11\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1057" ], - "x-ms-client-request-id": [ "5408d4c0-7c95-44c2-96ee-6bd5bf546164" ], + "x-ms-unique-id": [ "1058" ], + "x-ms-client-request-id": [ "5ff5b3b3-2a9b-4dc8-bb77-dfc0e2fcd09b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -296,36 +296,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "746de631-7b17-4a09-a6e1-461c54d02475" ], + "x-ms-request-id": [ "9ce329ca-6dd8-4d90-b54e-7d99bf56f393" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74797f24-c891-4925-ad08-1545450e9549" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89119b40-df26-4f78-99f5-afc9addb4bd7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "75ec49ad-8341-4079-8f06-7490c143b605" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022024Z:75ec49ad-8341-4079-8f06-7490c143b605" ], + "x-ms-correlation-request-id": [ "5f184c13-fd12-4fed-a7a8-46efb09ab14b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002236Z:5f184c13-fd12-4fed-a7a8-46efb09ab14b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00452789F9854C1BA2160FE467B21C61 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33381AEF0DD148E2B7161D82C8F5FAB2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1058" ], - "x-ms-client-request-id": [ "13fecaa7-730b-4af5-b0d6-6591c3d8ada5" ], + "x-ms-unique-id": [ "1059" ], + "x-ms-client-request-id": [ "4c4b3428-da78-4a33-a942-e88575319d3b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -341,37 +341,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "218b40bb-8fea-4bbf-a70d-b61c1bcade61" ], + "x-ms-request-id": [ "e24d1834-05d1-4037-97fd-1a2c5ba71e19" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/82d08396-a37d-4bef-89f8-869491a74332" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24ff562e-6fe1-4a3c-9c96-73cdfa9246e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "74da78df-6b44-4557-a899-b4f47c684eca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:74da78df-6b44-4557-a899-b4f47c684eca" ], + "x-ms-correlation-request-id": [ "5e436d3b-8aed-4d91-b714-8f52321efe3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002236Z:5e436d3b-8aed-4d91-b714-8f52321efe3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5FFA15DBC054ABAB0135AA80965C1CF Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:24Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95C193E7F24F4B06997DCC2B2B42EC9C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1059" ], - "x-ms-client-request-id": [ "79f724e7-0bf1-4d57-9720-c77ef8a9a6d5" ], + "x-ms-unique-id": [ "1060" ], + "x-ms-client-request-id": [ "2f04daec-93fc-48f6-88bb-ff3b501ba80a" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -387,18 +387,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f18e5db-7869-4ef8-863d-38b2c5978326" ], + "x-ms-request-id": [ "d8bcb4a3-98f4-4b3f-b2b5-005277de634d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f85e7ab5-87d4-4b30-8178-045c2ca9be28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46c9bf6b-b07d-4d47-9c22-ffb2af439749" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ec963f4d-a834-415c-b20b-16f1f041e0dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:ec963f4d-a834-415c-b20b-16f1f041e0dc" ], + "x-ms-correlation-request-id": [ "67455384-c493-4dbe-b6d1-3c4356b6a45d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002238Z:67455384-c493-4dbe-b6d1-3c4356b6a45d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19898C2AAB834F2A9F568DF132FF192C Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A78291C848045D9842AE29A3DC548DC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:36Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -408,15 +408,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1060" ], - "x-ms-client-request-id": [ "d2fafc65-7bb3-4621-aea7-08c238c6eb44" ], + "x-ms-unique-id": [ "1061" ], + "x-ms-client-request-id": [ "961f74e9-4346-47bf-a0cb-8c32aa0546b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -431,38 +431,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3C8D47E0\"" ], + "ETag": [ "\"1DC55C5F27AEED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78e80fc4-95d7-4e13-9f69-993ad2738673" ], + "x-ms-request-id": [ "0ea27972-70cd-4bda-b265-7716579041eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f222cca7-9c5e-4e0d-b702-80253860e422" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:f222cca7-9c5e-4e0d-b702-80253860e422" ], + "x-ms-correlation-request-id": [ "10d924e2-0372-4fea-8fd6-62e8b2ae5db0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002238Z:10d924e2-0372-4fea-8fd6-62e8b2ae5db0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7EC0E12C890B469EB60D62357E7057BB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 357D9674A5B94BB99137A7A4FCFAE17A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:25.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:37.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1061" ], - "x-ms-client-request-id": [ "b8fdf720-8bc1-4a1c-8d75-25714c159d26" ], + "x-ms-unique-id": [ "1062" ], + "x-ms-client-request-id": [ "648fb8a1-00e8-48f9-8d10-3c68ded4f89b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -478,36 +478,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7c44c3b4-22b4-4e15-bff0-e80a04c7114e" ], + "x-ms-request-id": [ "dc8540e4-b0c9-4167-8270-6a75cf9a0d7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/669c6be1-fca7-4e71-9a06-6644a6b7764e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87ba7991-10f1-40aa-adc8-5930ffa5ad7d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d97843f6-a578-49b9-892e-7764cc4bd2bc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022025Z:d97843f6-a578-49b9-892e-7764cc4bd2bc" ], + "x-ms-correlation-request-id": [ "8a84e503-3a4a-4b46-b848-53b1705459f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002238Z:8a84e503-3a4a-4b46-b848-53b1705459f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E453A31F63584834A75963A927E858CE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:25Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12EB8AF7AEEE44F781EF5C729BE8824A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1062" ], - "x-ms-client-request-id": [ "0c5a43d1-ac6a-4c85-9c0f-ef6fe6e3f87d" ], + "x-ms-unique-id": [ "1063" ], + "x-ms-client-request-id": [ "f0f2a29a-eb17-4715-8e77-706ad13a7588" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -523,37 +523,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50872537-ada3-4b90-86a9-00438eec7b8e" ], + "x-ms-request-id": [ "135d24e4-2fc8-4ebe-9bb5-b64ceaa14272" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c9a1655-9b95-4e0e-a94d-8bc5f510dfdc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3577bb7c-41e1-4ac0-a7d4-97a10c5afc56" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "58194001-b0b7-4dd6-befd-9fc240a37d2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022026Z:58194001-b0b7-4dd6-befd-9fc240a37d2f" ], + "x-ms-correlation-request-id": [ "26f3b519-6aee-4ea9-b6df-818f80ef76e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002239Z:26f3b519-6aee-4ea9-b6df-818f80ef76e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC9D67F44C7A47C0B4BD98163F3085CD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:26Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8194A07318549EAA18DC76ABFDDFAAE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:38Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1063" ], - "x-ms-client-request-id": [ "c9a32e29-0d45-42c2-a20a-64157f3d6640" ], + "x-ms-unique-id": [ "1064" ], + "x-ms-client-request-id": [ "a8aeaac4-fe06-4d58-85a3-93e335f9d67c" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -569,18 +569,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6eda6d03-13ed-4447-a18b-d742ba6c8881" ], + "x-ms-request-id": [ "e7f574af-0970-4d30-9ce2-fb46de258ddf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf2e4b20-2ef7-4eec-a1a0-2cc015375706" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1482d31c-8805-4275-9e19-b3665e37f4c7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "2d6449e1-a51f-4320-8c7f-1e132f1d779a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022027Z:2d6449e1-a51f-4320-8c7f-1e132f1d779a" ], + "x-ms-correlation-request-id": [ "e9d3049f-3cc8-4da7-8c26-e53cbdca262a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002239Z:e9d3049f-3cc8-4da7-8c26-e53cbdca262a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E690C1570DA49C284212CCFDD83CA4A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:26Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FC565789AAB4A4693E2D5507219DE23 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -590,15 +590,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1064" ], - "x-ms-client-request-id": [ "aa31b80b-07af-458b-9e51-f881e237b33e" ], + "x-ms-unique-id": [ "1065" ], + "x-ms-client-request-id": [ "9748ae34-d38f-4a9b-b351-95a5048a02d2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -613,38 +613,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC55039C7D6A40\"" ], + "ETag": [ "\"1DC55BBF5F82D40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c19c72ca-f6a2-4e53-857e-175dbfd54ffc" ], + "x-ms-request-id": [ "59bb5943-150e-4ed5-b5f9-1ca44ee1cb62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "622bec31-56ab-4ee9-bee3-22575af0eba0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022027Z:622bec31-56ab-4ee9-bee3-22575af0eba0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fbf66471-1d4b-4cbf-8e7a-591e79f716a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002239Z:fbf66471-1d4b-4cbf-8e7a-591e79f716a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 23FC464947124730B885F1851BB6D8AB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:27Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80936CEE37F1442B89397888396D2CA6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8320" ], + "Content-Length": [ "8332" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T01:11:31.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T23:11:08.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\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1065" ], - "x-ms-client-request-id": [ "1736499b-3094-4c8e-9e4d-5dd82d2a7cf3" ], + "x-ms-unique-id": [ "1066" ], + "x-ms-client-request-id": [ "4d08d912-16dc-4d90-9390-7a553a9df891" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -660,36 +660,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a9a8707-f7c9-491e-bd62-43966ab6b352" ], + "x-ms-request-id": [ "b4745497-b013-4bc5-bcfa-e44e9b845624" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/19372d13-5235-4754-bd48-eddf3974233e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/279389d7-7c7e-4865-881f-095d07c7f5b7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c96e6660-3ea0-4d5f-9435-9b62ce52957f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022027Z:c96e6660-3ea0-4d5f-9435-9b62ce52957f" ], + "x-ms-correlation-request-id": [ "50f2d3d6-d2e8-435a-afa5-51a2410d3295" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002240Z:50f2d3d6-d2e8-435a-afa5-51a2410d3295" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14AF20D9F1EF4EB897A102E48A93BB8F Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:27Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF3624CC544A4BFEBB550C8C09316DBF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:39Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1066" ], - "x-ms-client-request-id": [ "c8d68d0e-7f2e-4e7b-be5e-49a3f257215a" ], + "x-ms-unique-id": [ "1067" ], + "x-ms-client-request-id": [ "ca37dfd9-1194-49f0-80b8-ee3799de1e3a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -705,37 +705,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffef148b-64a3-4e0b-b419-ac31f6a4c292" ], + "x-ms-request-id": [ "32a61693-3530-4be2-acf0-4f96c3848691" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69f9dc69-0d73-44f6-9b68-e6770b80067e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26774c1b-fe6b-4c66-8204-1609cfa17a35" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "72d64ffb-fb9b-4273-a5cd-b6e7dbc96c28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022028Z:72d64ffb-fb9b-4273-a5cd-b6e7dbc96c28" ], + "x-ms-correlation-request-id": [ "157ed31a-d420-4238-9cf9-fce92857205b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002240Z:157ed31a-d420-4238-9cf9-fce92857205b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 245017A99D1E4FE68BCAE8F6425A4412 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 107DE542EC714E91B966B691DB7ABE00 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1067" ], - "x-ms-client-request-id": [ "d3a4584a-452f-4d5d-b3ea-9cfab8d23675" ], + "x-ms-unique-id": [ "1068" ], + "x-ms-client-request-id": [ "345e3171-8088-4ff6-8ec9-add3e59a099e" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -751,18 +751,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b26433ff-ddd4-4af3-86e8-ebf6ea192747" ], + "x-ms-request-id": [ "c54abdcd-cafc-4439-b302-3340ffdd47ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23b33e18-ad00-415a-a5c0-ec791e9ba5c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/450c24e5-10e6-41cc-b6d4-9c8830375351" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a07b84ed-39ac-4931-a0d2-7e73f4494aa0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022028Z:a07b84ed-39ac-4931-a0d2-7e73f4494aa0" ], + "x-ms-correlation-request-id": [ "c586ca52-0eb4-4a77-8c3f-90ad93c90ba6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002240Z:c586ca52-0eb4-4a77-8c3f-90ad93c90ba6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 967A19E3563447F89B3759721772FC30 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 808416D84B6D4FF180FB638F09DC5736 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -772,15 +772,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1068" ], - "x-ms-client-request-id": [ "d8f440c9-69f3-4ac7-99fd-1d9e261a8b21" ], + "x-ms-unique-id": [ "1069" ], + "x-ms-client-request-id": [ "83ac87c4-ae38-48b0-a90f-2fc04e021fc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -795,38 +795,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3E63C295\"" ], + "ETag": [ "\"1DC55C5F41A7B0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "addef9c9-d7c8-4b09-99e3-850ac8a504b4" ], + "x-ms-request-id": [ "9ac78c32-65a4-42dc-987a-75e083d07dee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2a5b1ee8-633d-47cf-bfb7-eed58221e9d4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022028Z:2a5b1ee8-633d-47cf-bfb7-eed58221e9d4" ], + "x-ms-correlation-request-id": [ "eea166b8-7a26-47f6-baa9-26dd66baabfc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002241Z:eea166b8-7a26-47f6-baa9-26dd66baabfc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2832BE91427445C58A8463F12F50C4A8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC1D9A609AD44ADD8024969D94BC9DE2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:40Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8326" ], + "Content-Length": [ "8337" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:28.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\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:40.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1069" ], - "x-ms-client-request-id": [ "773a70a6-6801-4a8b-9084-dd7778d78260" ], + "x-ms-unique-id": [ "1070" ], + "x-ms-client-request-id": [ "0affef8d-e93e-40d5-a290-0c96671fb7ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -842,36 +842,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b467906-6d63-4c34-8bb3-07d6cf12d93d" ], + "x-ms-request-id": [ "eb498fc2-d7b4-481e-8414-76d9b526e368" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d8d9cb8-95f0-4679-8eef-35dd2787d0b9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b00389a-4ac8-4d1e-9aa6-08a3e79e04c6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a2603374-08aa-476d-a4b4-f0e489511418" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022029Z:a2603374-08aa-476d-a4b4-f0e489511418" ], + "x-ms-correlation-request-id": [ "3348a553-8213-41f7-aea8-61499216cd6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002241Z:3348a553-8213-41f7-aea8-61499216cd6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 29E7B7C3B71B4742A09A169B1C8201D5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:28Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98316C93D0C74A8B8F401136FDEF2A03 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1070" ], - "x-ms-client-request-id": [ "32481aef-02a2-434e-bc79-d711477076c0" ], + "x-ms-unique-id": [ "1071" ], + "x-ms-client-request-id": [ "3134f18d-addb-445d-be0a-55905d6cd930" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -887,37 +887,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dbeab3d2-e9cd-4c3a-ba27-02fc71e1a9be" ], + "x-ms-request-id": [ "314abfc3-f374-452b-9d55-66875aeaffa3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edefeda9-126d-4bab-b3c1-ad5feaac8aba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c80a6dc5-bf04-4b5e-a87a-cd0f930a4bf5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022029Z:c80a6dc5-bf04-4b5e-a87a-cd0f930a4bf5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51721b0e-46d6-4b7b-9b68-27a1a65a1049" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "0a58521c-be81-4e62-aaad-00e627c1e30f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002241Z:0a58521c-be81-4e62-aaad-00e627c1e30f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6FD8A5F61A84B2CAE94715C2D1FD625 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:29Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22A615074381484792FE4170F2C8E4DC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1071" ], - "x-ms-client-request-id": [ "65d35a66-5179-4ea8-975e-5fc10f209fc1" ], + "x-ms-unique-id": [ "1072" ], + "x-ms-client-request-id": [ "19655b7c-cb88-471a-ada0-39f1bd7d10d4" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -933,18 +933,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b437f3f-676a-4e79-82a2-7705e3d164c7" ], + "x-ms-request-id": [ "971cfc93-1432-4309-aded-34b5df916abe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4a0ed7b-addb-4602-aee5-29d255938203" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28d2cac3-8887-43ea-bbf5-a1880d40fb10" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "85e1155d-3040-4953-90aa-8a75e114c7b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022029Z:85e1155d-3040-4953-90aa-8a75e114c7b9" ], + "x-ms-correlation-request-id": [ "ba16964f-9008-4617-9c5c-7646899c7c25" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002241Z:ba16964f-9008-4617-9c5c-7646899c7c25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3805824971BC42FE8D1CE06F8B9FA498 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:29Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC06A8FFD1CC44C087DA66DC9B84B161 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -954,15 +954,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1072" ], - "x-ms-client-request-id": [ "46ef3e5d-7739-4708-8f58-a5b6a354085a" ], + "x-ms-unique-id": [ "1073" ], + "x-ms-client-request-id": [ "a23b2f03-c544-432e-861d-6888fb78bb24" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -977,38 +977,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3F2DAF4B\"" ], + "ETag": [ "\"1DC55C5F4C972B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "315237dc-836f-4f70-a547-ef1c5dbb7ff5" ], + "x-ms-request-id": [ "33377ab3-53de-4614-8e36-5742f079af97" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eb0a900f-2775-4122-b546-924b22a1bfe6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022030Z:eb0a900f-2775-4122-b546-924b22a1bfe6" ], + "x-ms-correlation-request-id": [ "a158195b-eb86-4c1c-bd05-1e900e0b53dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002242Z:a158195b-eb86-4c1c-bd05-1e900e0b53dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1D2B62B5C0F49D28427A441347948B8 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0266B5BC9D654EB2A992F2827ED7C733 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:41Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8326" ], + "Content-Length": [ "8337" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:41.8033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1073" ], - "x-ms-client-request-id": [ "88006101-388c-44d5-81de-7dbb05a4a6b9" ], + "x-ms-unique-id": [ "1074" ], + "x-ms-client-request-id": [ "f36c1773-a592-46f3-9eec-42ba20d0fb6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1024,36 +1024,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc29eaaa-a5d7-43ce-a1f8-fa65c877ff36" ], + "x-ms-request-id": [ "1a3d04db-c961-4842-96b0-f1e7bbdb5216" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f4bfe7-18d8-44db-b240-a5a30ab56064" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/265c6d73-d3f5-4851-b8d5-3500d8c78d7d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "51269543-9859-4b8e-a1a8-4c32bb4163d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022030Z:51269543-9859-4b8e-a1a8-4c32bb4163d3" ], + "x-ms-correlation-request-id": [ "335cca17-d4b1-40b6-a77f-18c298315b73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002242Z:335cca17-d4b1-40b6-a77f-18c298315b73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09F019114C6F4A57A06D4DBF5A471E46 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB060AFC8D3640199B26CD6F8EA99B2A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1074" ], - "x-ms-client-request-id": [ "4b20dbec-fc45-43f9-9957-9fbd7913c5fb" ], + "x-ms-unique-id": [ "1075" ], + "x-ms-client-request-id": [ "e60051fb-a5a8-42ca-adc0-872c040cdcd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1069,37 +1069,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3789fd00-108e-42dd-a301-0262013ebc2f" ], + "x-ms-request-id": [ "00fee0c1-6110-4163-a047-daf1f87c2b0c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9fd75bd0-b73e-4b52-af7d-9cf89c967537" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "764c670d-2277-4871-979b-6154600c576d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022030Z:764c670d-2277-4871-979b-6154600c576d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd93f2d5-9ed1-458e-9543-211ba722ec4a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "2c1aa5f3-c6b7-4cc0-9cbd-15fab6ce3502" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002242Z:2c1aa5f3-c6b7-4cc0-9cbd-15fab6ce3502" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04AA4CAF4052480F8A16F58B309645EB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 758E73202D144ACF822D0E64A74E9FA3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1075" ], - "x-ms-client-request-id": [ "4dcb1f52-ff3d-493c-9657-859f78090a2b" ], + "x-ms-unique-id": [ "1076" ], + "x-ms-client-request-id": [ "976d5b54-3d0a-44bd-85c7-f4c8e0c69e9e" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1115,18 +1115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1fe77a5-c85c-4275-9ce2-db5b35496cef" ], + "x-ms-request-id": [ "0fbd78ac-5d19-4a77-966a-a44fa6f9b190" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3132a60-2db3-4934-9925-64f98cdce6c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09cb8edf-87cf-4671-a50a-ef937e47d755" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "559a7a13-33d0-481d-b218-d069a6399005" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:559a7a13-33d0-481d-b218-d069a6399005" ], + "x-ms-correlation-request-id": [ "e69c595f-d24d-4806-90b0-0dc6d93f5915" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002243Z:e69c595f-d24d-4806-90b0-0dc6d93f5915" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C99863E36D2D46EDB2E8CA61D86435CD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:30Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC7EE77683E94A27A30F0831E815D2AF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:42Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1136,15 +1136,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1076" ], - "x-ms-client-request-id": [ "f5bbffa3-25c0-482a-b492-1272fdc4c7aa" ], + "x-ms-unique-id": [ "1077" ], + "x-ms-client-request-id": [ "0c2a598a-8954-4ad3-aa51-0d730d50c006" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1159,38 +1159,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3FF07D15\"" ], + "ETag": [ "\"1DC55C5F5714B75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7bdf5723-1b35-4936-921c-1874f4c5fd20" ], + "x-ms-request-id": [ "538f55f8-df1f-4fff-9a49-661ad28f4d35" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1fddecb4-19f8-4c74-8ffe-baf7a342d20c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:1fddecb4-19f8-4c74-8ffe-baf7a342d20c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dfbaa84e-2f62-46eb-9a3d-e4fee79fa790" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002243Z:dfbaa84e-2f62-46eb-9a3d-e4fee79fa790" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 789F3672DE234252BB996BCA11F49EB6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA5D4D1EA1984114AE285E0AD5FDBAC2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:30.9933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:42.9033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1077" ], - "x-ms-client-request-id": [ "27f53258-e2d2-47b9-91c9-005127e0173a" ], + "x-ms-unique-id": [ "1078" ], + "x-ms-client-request-id": [ "c835b812-b74b-4829-bf17-47bbf0de1726" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1206,36 +1206,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "15df1300-e1df-437b-a083-9d1feec3ff0a" ], + "x-ms-request-id": [ "f561289d-fd8b-4e5b-ad16-c4b8febd7542" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b138fae7-6f28-4eaa-99cb-19b36f167c62" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/43dd0ce3-27de-4a9d-bc04-87f1bdd1972e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5c60eb1b-1074-46a8-8975-370e2c2a4c49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:5c60eb1b-1074-46a8-8975-370e2c2a4c49" ], + "x-ms-correlation-request-id": [ "cb4d3ec8-89bf-4027-b95a-21f06c578476" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002243Z:cb4d3ec8-89bf-4027-b95a-21f06c578476" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2E79488ADE347C1BB1A86F0EFC894C5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01C0E549549C41F99099E0E01B0F2EB9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1078" ], - "x-ms-client-request-id": [ "4fc1ca84-1d68-48d5-a793-6f2ea9f83876" ], + "x-ms-unique-id": [ "1079" ], + "x-ms-client-request-id": [ "e1330a5e-7ced-49a0-96c3-770dad55f470" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1251,37 +1251,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd805c65-80de-4563-858b-08905569b80a" ], + "x-ms-request-id": [ "6b655cb0-8484-4153-924e-f01fb33bc279" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f11f01db-d5cd-42cb-b9c3-396c9d5d6c9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bf9e0da9-a02f-481d-92ca-fd1eb4e6ddc7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022031Z:bf9e0da9-a02f-481d-92ca-fd1eb4e6ddc7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60fc57eb-8c76-4335-b678-703d4b066d88" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f223058d-b408-4733-ab33-b2410b9993cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002243Z:f223058d-b408-4733-ab33-b2410b9993cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5051353E7DF14BB189FF5596F5E0D5DA Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:31Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8460A26942F3431FA577203DE8C49CD9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1079" ], - "x-ms-client-request-id": [ "f45cce5b-2410-486e-8417-21c3ef8adbe9" ], + "x-ms-unique-id": [ "1080" ], + "x-ms-client-request-id": [ "2f53c119-270b-43c2-83ea-0a31ad5c3af7" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1297,18 +1297,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c99f4df9-c05d-42b0-9ff9-6b951213cc62" ], + "x-ms-request-id": [ "e5dd56a8-982c-47ba-bad2-0ee8475d1969" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/900fa3ee-455b-4942-9782-47823d2a611c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90c71edc-cf47-4281-b45a-07cb93c69eab" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c8bd4617-e7ad-4f33-b9be-dd560751b8e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022032Z:c8bd4617-e7ad-4f33-b9be-dd560751b8e7" ], + "x-ms-correlation-request-id": [ "53a15c5e-ad64-455b-a208-e61abbfb2bec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002244Z:53a15c5e-ad64-455b-a208-e61abbfb2bec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B03B209575E54EE29B48BCDD85BF22A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:32Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75E49FE2C19542D2A52FADF12695A76C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:43Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:43 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1318,15 +1318,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1080" ], - "x-ms-client-request-id": [ "c18ff6f6-175b-4053-aceb-925b05eec6f9" ], + "x-ms-unique-id": [ "1081" ], + "x-ms-client-request-id": [ "db98512b-47e2-451f-91c2-9128844e6214" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1341,38 +1341,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D40A48AD5\"" ], + "ETag": [ "\"1DC55C5F6235060\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83373665-0724-4630-b466-2cad8b3ed00a" ], + "x-ms-request-id": [ "aa4969fe-75af-4240-a4f1-a7c9d0730d09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8d1a8f34-5c29-43a3-940f-a83dda14bcb5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022032Z:8d1a8f34-5c29-43a3-940f-a83dda14bcb5" ], + "x-ms-correlation-request-id": [ "5a5cd34d-f404-43d7-8824-e56457415916" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002244Z:5a5cd34d-f404-43d7-8824-e56457415916" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3AA0882CE5D0401998114E8973CE46E9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:32Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C4081031B004362AE3237425150C53A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:44Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8623" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:32.1733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:44.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1081" ], - "x-ms-client-request-id": [ "67369640-ec67-45c2-9993-531c236fbba4" ], + "x-ms-unique-id": [ "1082" ], + "x-ms-client-request-id": [ "ed3b7689-3f2d-4ca8-9418-a4f7e1fc2f0e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1388,36 +1388,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "143baa25-c338-41cb-88f6-33088cd9057a" ], + "x-ms-request-id": [ "0f11d737-5fb6-46a9-a314-97be4d6f9e1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ddf9bec-aca5-48e6-930d-5416b1610495" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f75d734a-cf3e-4662-babc-8b1b53065c8d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bc7e2837-8e98-4b76-9d0e-2d93df47f563" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022032Z:bc7e2837-8e98-4b76-9d0e-2d93df47f563" ], + "x-ms-correlation-request-id": [ "09ab82ca-8824-4d28-95bf-61bd1fc84fd9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002244Z:09ab82ca-8824-4d28-95bf-61bd1fc84fd9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63067818E2CE4296AD535487BE64DDCD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:32Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AECAF7CAFA574A0ABBF73321CAE105A1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:44Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1082" ], - "x-ms-client-request-id": [ "db3857aa-bc8a-45cd-af89-ad6c76848608" ], + "x-ms-unique-id": [ "1083" ], + "x-ms-client-request-id": [ "bed5f947-812a-44a1-9c86-f4b8d62a10e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1433,37 +1433,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2902f02c-d885-444e-8e5f-ead9d90147bc" ], + "x-ms-request-id": [ "617eba38-9445-4b70-8d51-11fa24b94e86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e490f52c-0524-4aa4-b6f5-37882ef17649" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "772a9712-2319-4644-a97e-0a5c55ab7732" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022033Z:772a9712-2319-4644-a97e-0a5c55ab7732" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edd1bc8e-13eb-4c28-ac58-954253cd9ee1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2631ddc7-11f8-4506-b2ea-b6b6c3476f8f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002244Z:2631ddc7-11f8-4506-b2ea-b6b6c3476f8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFB76654B5514FFF999EB0F23C5F0BD1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DEB6AD4D6554FEA89BD1109CD0D60EE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:44Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1083" ], - "x-ms-client-request-id": [ "9932aa99-2330-496a-88c8-b0f745f887a7" ], + "x-ms-unique-id": [ "1084" ], + "x-ms-client-request-id": [ "6214c4eb-89eb-4d9c-81c9-ef5b3c1e0365" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1479,18 +1479,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67cdd3e8-9a41-4b89-9c2f-202192bf7133" ], + "x-ms-request-id": [ "9883f68e-568a-4210-a785-b9d4e4582a96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e9acfe4-d25b-4721-b86c-a7afad8f5a22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/943a5f4a-9f86-4233-9984-ec73223a00cb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c13511ee-0692-44bc-a6cd-d7eb0702eb27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022033Z:c13511ee-0692-44bc-a6cd-d7eb0702eb27" ], + "x-ms-correlation-request-id": [ "9e2ae7f3-ebbf-46a9-955b-e4116237b57b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002245Z:9e2ae7f3-ebbf-46a9-955b-e4116237b57b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75654B41027D4B94B088BF61987CC681 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2021173ABCED404A98FA15DA63328583 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:44Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1500,15 +1500,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1084" ], - "x-ms-client-request-id": [ "086d8148-ee25-4ab4-be87-aeb8c795f13f" ], + "x-ms-unique-id": [ "1085" ], + "x-ms-client-request-id": [ "3e872268-f06a-48b3-badb-ae09c2b916ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1523,38 +1523,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D416C6EB5\"" ], + "ETag": [ "\"1DC55C5F6C81BE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9052022-5394-41a4-b896-6220f560d631" ], + "x-ms-request-id": [ "5d8aa4fc-e6ae-4d2c-b669-61be96209def" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5f719f1f-44df-444c-a7ac-aa3bd8dab8eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022033Z:5f719f1f-44df-444c-a7ac-aa3bd8dab8eb" ], + "x-ms-correlation-request-id": [ "c4ce32f0-1a99-4092-9526-bda33fa6683f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002245Z:c4ce32f0-1a99-4092-9526-bda33fa6683f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C7DB54B6B3048EAA5F217FCD40558BF Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:33Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBF11E4A8DD04D0699FE7A837E42125D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:45Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8623" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:33.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:45.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1085" ], - "x-ms-client-request-id": [ "99be82c2-a361-4000-b02a-058edd2e0366" ], + "x-ms-unique-id": [ "1086" ], + "x-ms-client-request-id": [ "ab147a8e-6e9e-4e7a-a1c1-1ef2833e83de" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1570,36 +1570,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01b352b4-c47a-4e72-9922-0ca9d84ed72f" ], + "x-ms-request-id": [ "dabe3a0c-78e9-4217-a24c-848c2b536de4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/239e21c3-3917-483a-854c-084e0bdecadc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d29ea8b-2bfe-45a0-a5d4-620d9a27c74e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8a708709-5021-468a-b575-2b2c79692020" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:8a708709-5021-468a-b575-2b2c79692020" ], + "x-ms-correlation-request-id": [ "13955e04-fdae-46c8-8a69-f185f78dc441" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002245Z:13955e04-fdae-46c8-8a69-f185f78dc441" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05B868C719724B7682CEB46C4177111B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB94A19FEE8B49CFABD5B7AE86A77345 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:45Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1086" ], - "x-ms-client-request-id": [ "b958983a-7556-41b9-83f5-71935959300b" ], + "x-ms-unique-id": [ "1087" ], + "x-ms-client-request-id": [ "3664b660-026e-49b8-831e-ddb1acae5e36" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1615,37 +1615,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75583bee-597e-411e-a493-b07caf8b0a14" ], + "x-ms-request-id": [ "9b1e4559-1260-4ff1-89e4-4cf50e893fd4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab30b77e-6567-4beb-8ce9-475d6998d0e3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4fdce724-72a8-49d3-9f2b-e9d289a4fd8f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:4fdce724-72a8-49d3-9f2b-e9d289a4fd8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d592fd85-7e94-480e-a3bf-f664a6bf5e8d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5ac0f9aa-0736-4299-9559-3968024a0ee7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002245Z:5ac0f9aa-0736-4299-9559-3968024a0ee7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A8FCDD0F85D4D93A2FC97734480117D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DF2019B748A4B9CA69758062589ABF2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:45Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1087" ], - "x-ms-client-request-id": [ "c0ae69a9-28ff-41f3-9276-21d5caabd025" ], + "x-ms-unique-id": [ "1088" ], + "x-ms-client-request-id": [ "94488d08-314f-49f2-b629-5dc2e1d59a75" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1661,18 +1661,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ca14a11c-c3fd-4c5f-a91d-dc49fc8cea08" ], + "x-ms-request-id": [ "d082990a-81bc-4939-b88c-5d04c743c694" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94f0e40b-d15a-42d5-be1e-c8b2f3938caf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f0146d3-16de-43af-a2f3-0aea7608e983" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "abeb8aaf-41fc-4f87-9aea-ca23e55a22b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:abeb8aaf-41fc-4f87-9aea-ca23e55a22b7" ], + "x-ms-correlation-request-id": [ "d1fe3854-2a2d-48a0-8cd7-8ce02819eeb0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002246Z:d1fe3854-2a2d-48a0-8cd7-8ce02819eeb0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 096756CB8B9F493F9458895095A02CBE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 917BD3C73ECB42A484CD440B97AF8D5E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:46Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1682,15 +1682,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1088" ], - "x-ms-client-request-id": [ "ddc3c2e0-5255-4df1-995e-33ebddabca6c" ], + "x-ms-unique-id": [ "1089" ], + "x-ms-client-request-id": [ "2f446444-338b-463b-9cd4-9201f2240f4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1705,38 +1705,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D422389B5\"" ], + "ETag": [ "\"1DC55C5F76E6E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9f09760-4969-4868-84ea-e512351142cd" ], + "x-ms-request-id": [ "1a14756c-f8d0-4c33-8f78-e2aded293900" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ba0ed117-5410-474c-985a-aec9a8add3bb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022034Z:ba0ed117-5410-474c-985a-aec9a8add3bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "43bda754-9a37-4de5-ab91-f3d8e3173796" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002246Z:43bda754-9a37-4de5-ab91-f3d8e3173796" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 894DD7BE141449B48511AC760743F269 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:34Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D537E56859DD44C0A12DAED699ED0C40 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:46Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:34.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:46.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1089" ], - "x-ms-client-request-id": [ "526c4568-3303-468d-9722-b54e6222e2aa" ], + "x-ms-unique-id": [ "1090" ], + "x-ms-client-request-id": [ "b6455548-1ced-4ec1-b6e0-238956f902b7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1752,36 +1752,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b04674a3-8806-47bb-b0ae-61105fcf438b" ], + "x-ms-request-id": [ "635b46fb-611e-48d7-a624-07282e92b2ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d515c68e-6a64-4783-9bd0-bc282309ed98" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "2e59d0e1-6743-49c9-b9ce-2c209d70a557" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022035Z:2e59d0e1-6743-49c9-b9ce-2c209d70a557" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/166d19d2-b649-4188-b3d0-26408cc6ddc0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3052005f-2b12-4cee-9924-a829eee3c43c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002246Z:3052005f-2b12-4cee-9924-a829eee3c43c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 177A3D12CAB3443D9769CAA6337B23C3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6B89065E6CB47FD963966DB8B3B6F2D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:46Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1090" ], - "x-ms-client-request-id": [ "92fde5c4-4588-4680-b16d-bf2415d278b2" ], + "x-ms-unique-id": [ "1091" ], + "x-ms-client-request-id": [ "71c78e88-8cc4-4222-8e5c-fac8b8240624" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1797,37 +1797,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8a41d61-be78-4e33-857d-5398edd2c7d4" ], + "x-ms-request-id": [ "8506e24c-ed89-4db5-b335-ab2bcab27435" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d052cb45-c031-4152-bfd4-d07bb530dabe" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a39c115c-214f-435e-87b4-3214d2abdcf0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022035Z:a39c115c-214f-435e-87b4-3214d2abdcf0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79bf9bce-1b7c-4482-8af9-a1b418437777" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "8cb4b951-1189-4f84-84f9-b7dac5ecc186" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002247Z:8cb4b951-1189-4f84-84f9-b7dac5ecc186" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C1AE0AAF3074268B8CA1EF00584B62D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B52F9B41BEED492F8748140CEC11D1A2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:46Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1091" ], - "x-ms-client-request-id": [ "f1d46477-f72e-4f60-943f-6bff18cce1f9" ], + "x-ms-unique-id": [ "1092" ], + "x-ms-client-request-id": [ "7b79f022-e096-472e-8cb6-7488e2d43100" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1843,18 +1843,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5043b41b-3a7e-4853-8b2a-18cc0c18f5ca" ], + "x-ms-request-id": [ "88f80463-0c4b-49a7-baa6-790bad2c12b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a44d10a0-3a06-42b6-9cfd-a627231e6408" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc51cef4-55d2-4e53-89e7-8748bf8e5885" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a1d3daa1-3980-4058-9f82-80e40fc40a01" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022035Z:a1d3daa1-3980-4058-9f82-80e40fc40a01" ], + "x-ms-correlation-request-id": [ "a25ce569-4bc3-44bf-89b9-03dfe5477cb1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002247Z:a25ce569-4bc3-44bf-89b9-03dfe5477cb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 492862BB668640F0B4FB195DE2CFA76A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A99BE7508444D1EB7B732B902359928 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1864,15 +1864,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1092" ], - "x-ms-client-request-id": [ "f6cd1ae5-7df4-431b-9867-b2ac76df624f" ], + "x-ms-unique-id": [ "1093" ], + "x-ms-client-request-id": [ "25969eba-8c4c-4e1d-93c2-f3d302101b53" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1887,38 +1887,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D42D1FF2B\"" ], + "ETag": [ "\"1DC55C5F8240260\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db1445dc-132d-4f3f-ac73-4df5d81a7451" ], + "x-ms-request-id": [ "d0b03efd-b0e8-4c46-bed8-832e8d1c2e7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e8583c1a-a6a8-4234-a329-b84054c20071" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:e8583c1a-a6a8-4234-a329-b84054c20071" ], + "x-ms-correlation-request-id": [ "536a626e-16fa-4707-af5f-d57ffffcece5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002247Z:536a626e-16fa-4707-af5f-d57ffffcece5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1BB77E2380CD45B3A9004A255D4C24B3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:35Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 872D4FFF03AC497F93912E5228DA1134 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:35.8266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:47.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\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1093" ], - "x-ms-client-request-id": [ "03f9470f-8531-4649-8a75-9b827ac4d316" ], + "x-ms-unique-id": [ "1094" ], + "x-ms-client-request-id": [ "adde910d-49d6-41dd-ad58-c685ff29aeb9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1934,36 +1934,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0da05956-f9f6-4c09-8d0c-d183f3443326" ], + "x-ms-request-id": [ "757c3f96-8d0e-42bb-8870-20fc79de7d07" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97383da1-d41d-441f-b4f6-d7e64bc765f7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "73e9e6b1-2bef-451f-a9f4-4a4029bf4d35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:73e9e6b1-2bef-451f-a9f4-4a4029bf4d35" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a4c3432-cf7d-48ee-ac58-9b4a56aa060e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "1282abbf-346c-407b-bfdd-0b3596905e12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002247Z:1282abbf-346c-407b-bfdd-0b3596905e12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA8C1D41F3BF44C2BFFF4D861C6CE20D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CABA666DBC6447BCBED834FE5F32A48F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1094" ], - "x-ms-client-request-id": [ "aec31d6b-53a0-4452-9ff5-d3f0612bc360" ], + "x-ms-unique-id": [ "1095" ], + "x-ms-client-request-id": [ "d41971c7-b938-4e7a-8d03-08160c323b68" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1979,37 +1979,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab2d4887-bf31-47d5-aeae-3eaf052d39e3" ], + "x-ms-request-id": [ "5b79ca72-baee-429a-9287-59e738c7cd5f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8e23778-5713-4092-b243-4b105f101644" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6fb2f20-2d61-42c5-a0a7-4d7e8f6390e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0769794d-efa2-4d34-a4d0-78f6ec546ede" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:0769794d-efa2-4d34-a4d0-78f6ec546ede" ], + "x-ms-correlation-request-id": [ "cf6f0ff4-1165-4374-8f49-c94362821c5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002249Z:cf6f0ff4-1165-4374-8f49-c94362821c5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54E4FD38C8DA4707BDE7743EB2C6E152 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA9CB1DF97F1400995C207F21F957F00 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:47Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1095" ], - "x-ms-client-request-id": [ "816b6fd3-6a55-4024-83b4-8d8b9c54f750" ], + "x-ms-unique-id": [ "1096" ], + "x-ms-client-request-id": [ "c151029e-f554-4375-97a4-5f90e456fc0c" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2025,18 +2025,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2201b4d-aa20-4416-a7b9-adf51874e084" ], + "x-ms-request-id": [ "a707dff3-f22e-4a0e-a2b1-2cb7fbb63cb7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f51fc7b-a1bd-4baf-9ce4-6c8a91801ab7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/197f6ad3-8e5a-4301-8106-b2e98a8a859a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "23f52c89-b80b-468d-92d6-eb445228accd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022036Z:23f52c89-b80b-468d-92d6-eb445228accd" ], + "x-ms-correlation-request-id": [ "f2d016ae-d98f-46e9-b89c-a1c1576d3c87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002249Z:f2d016ae-d98f-46e9-b89c-a1c1576d3c87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA7C09881A92435F972FC1E13A6145E6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:36Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FF5785B1F154932BDC3518EB3E14753 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2046,15 +2046,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1096" ], - "x-ms-client-request-id": [ "c01d90a9-8f9c-4eea-b493-79113e2697c2" ], + "x-ms-unique-id": [ "1097" ], + "x-ms-client-request-id": [ "ec2cf69e-7549-4ed4-999a-896fe02a5449" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2069,38 +2069,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4378514B\"" ], + "ETag": [ "\"1DC55C5F95E5720\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6fd9f94c-95c4-4bda-944a-5e383bee5b85" ], + "x-ms-request-id": [ "381025b7-a01f-4567-8dce-d75e52879ebd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ef9d7e6d-f332-4529-910d-7dc84bc1530c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:ef9d7e6d-f332-4529-910d-7dc84bc1530c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e43c464c-2ad9-4c01-8b73-134bfd8d2964" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002249Z:e43c464c-2ad9-4c01-8b73-134bfd8d2964" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C79B477F1A81471BADFA6AA18A925C44 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A0F60CB86AC48D0B36F55649D581B87 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:36.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:49.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1097" ], - "x-ms-client-request-id": [ "121a15be-5b5e-4d2c-b4c6-0f5fe32c647b" ], + "x-ms-unique-id": [ "1098" ], + "x-ms-client-request-id": [ "f1384f45-6c4d-46ee-86f6-bba8e2498d8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2116,36 +2116,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1701727-20fc-46ae-8e1a-063ada2faacf" ], + "x-ms-request-id": [ "305afe0a-03a5-4d18-8e0c-e88aec4d5989" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fedcfefa-05d4-4de3-b286-c047a82599bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1e0e112-a630-4327-9090-9422f087408e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8385fc1f-5ac0-40af-9a2e-cbcbfd7e4eae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:8385fc1f-5ac0-40af-9a2e-cbcbfd7e4eae" ], + "x-ms-correlation-request-id": [ "a9c0cc14-2f80-4b3d-a09c-e758a0466595" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002250Z:a9c0cc14-2f80-4b3d-a09c-e758a0466595" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11CF9FB08E9642639B70386EB704C05A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD4735D1D77B4DA1A23FB9FA7A66F4D2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:49Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1098" ], - "x-ms-client-request-id": [ "76b07a00-c032-4278-80ce-ddf7726df1d3" ], + "x-ms-unique-id": [ "1099" ], + "x-ms-client-request-id": [ "20839d0d-3637-4a15-b6bf-d2e10c1b3933" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2161,37 +2161,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6bbb953-fb8b-40cf-804b-639b101dc290" ], + "x-ms-request-id": [ "52b820ec-f27d-4167-9e25-562896b9c780" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ace1f52-ca17-4cc1-a47c-c7888e2f8af5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/98cf3911-5adf-4f1f-97c6-11db282d657c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a0704b2c-69a7-45bb-8bd1-1284442aa19f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:a0704b2c-69a7-45bb-8bd1-1284442aa19f" ], + "x-ms-correlation-request-id": [ "22eb5741-6e9e-4355-94ad-706f2c2e6ddb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002250Z:22eb5741-6e9e-4355-94ad-706f2c2e6ddb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CA48109C77142AA8A2C51FF8889ACC5 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6195AE9803DD4BF0B1432AA8B5AAA3A1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1099" ], - "x-ms-client-request-id": [ "cc4634e7-99cf-46e8-bcb0-3356b733271c" ], + "x-ms-unique-id": [ "1100" ], + "x-ms-client-request-id": [ "a33f178c-0c10-4af1-b0d6-62942a7ef10a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2206,38 +2206,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3C8D47E0\"" ], + "ETag": [ "\"1DC55C5F27AEED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0a979ae-76c8-40f7-9268-5464533227a3" ], + "x-ms-request-id": [ "180ed6b7-8f5f-422a-8a2b-9d42dca77e62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "22c36c09-c10c-4d41-af74-2f5d163e0454" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022037Z:22c36c09-c10c-4d41-af74-2f5d163e0454" ], + "x-ms-correlation-request-id": [ "8391e45c-490a-4856-9d97-fbe8d0fbd676" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002250Z:8391e45c-490a-4856-9d97-fbe8d0fbd676" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9507E4CE61D64562808A7CDDDCED8BB4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B12CF2EE5E64334890FEB077C02ADD1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:25.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:37.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1100" ], - "x-ms-client-request-id": [ "07efd62e-0081-43b8-8bbe-eb5847a0c189" ], + "x-ms-unique-id": [ "1101" ], + "x-ms-client-request-id": [ "9f821dd7-c880-419c-ad39-55a71cd047b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2253,36 +2253,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "578b7104-96aa-4001-a281-0d81d5feddf2" ], + "x-ms-request-id": [ "6eb38e21-21db-444c-9b8c-980c39e2bc9e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c419e12-f0d2-4be5-9bd6-37a920c68eda" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "51db17f0-5e6b-4ec4-83d6-c3ad91371b9a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:51db17f0-5e6b-4ec4-83d6-c3ad91371b9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/685276c8-d478-4f23-9e56-1a7d54c3c0ec" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c19d1e13-4c3f-4d69-ab49-8fb72a31a709" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002251Z:c19d1e13-4c3f-4d69-ab49-8fb72a31a709" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32260DB0B1694E2D9F87D7E397B2A8A1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:37Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4183DB74E27432087458326BBE4381D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:50Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1101" ], - "x-ms-client-request-id": [ "5222e6ce-f7d0-4104-8f85-9fc4e7072291" ], + "x-ms-unique-id": [ "1102" ], + "x-ms-client-request-id": [ "a3bc4d99-682f-47da-9c4f-aa20767c1fc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2298,37 +2298,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0645e19-c722-4baa-ac36-8ae5bfbe480c" ], + "x-ms-request-id": [ "5df58425-04f2-490e-96a8-990b3e92a9f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/923a228d-8692-40ed-8ee1-c9b3778c180c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c184a61-43bf-4d32-924c-cd5a7f5c9491" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "69de9ab1-d384-4dea-a766-7d088f9c7c3b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:69de9ab1-d384-4dea-a766-7d088f9c7c3b" ], + "x-ms-correlation-request-id": [ "f266fc38-e5bb-4a05-a36a-6b89c91f28a3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002251Z:f266fc38-e5bb-4a05-a36a-6b89c91f28a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC5AEF06C3FD4F27B9F1655A3904E70B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F59F029C95646A6A76BF70B06201F99 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1102" ], - "x-ms-client-request-id": [ "a3769e9b-698e-4d0d-8ad8-de5994b1c7c5" ], + "x-ms-unique-id": [ "1103" ], + "x-ms-client-request-id": [ "c94392b1-068b-4693-a594-dc58ae235fc3" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2344,18 +2344,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d1e4465-eeb2-47b9-990a-8b930e9dc486" ], + "x-ms-request-id": [ "1af62ab9-5888-45ab-95ae-010bc402b1a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/922ab327-3908-4a8c-857a-fa43dd2778ec" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "b3bbb891-f62e-4fe6-a6cd-1f36b34d1d5a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:b3bbb891-f62e-4fe6-a6cd-1f36b34d1d5a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5684464-a801-4b30-b294-a1744835ff28" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "75450bb7-82fa-4e14-85fa-1a2c1b7b0a67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002251Z:75450bb7-82fa-4e14-85fa-1a2c1b7b0a67" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 361BC0ECDD354172AE69151D27408AEB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9E129891CE246BEABCC4922B834404D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2365,15 +2365,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1103" ], - "x-ms-client-request-id": [ "d258c601-f7fd-4bd3-a809-278c31eb365e" ], + "x-ms-unique-id": [ "1104" ], + "x-ms-client-request-id": [ "655fb889-8ee5-4f33-8eb0-1a0cc5ff607b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2388,38 +2388,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D447004C0\"" ], + "ETag": [ "\"1DC55C5FA8CF915\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bde6de2a-7f54-479c-9c70-c03a9685e76d" ], + "x-ms-request-id": [ "418e6354-795b-4125-aa53-696eb3fecf51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4ae197ed-02e5-435a-8e01-5b89c08e5ff7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022038Z:4ae197ed-02e5-435a-8e01-5b89c08e5ff7" ], + "x-ms-correlation-request-id": [ "cbd1be37-62b1-4b60-a8f9-02c68fcff6d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002251Z:cbd1be37-62b1-4b60-a8f9-02c68fcff6d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB180BD614744900B7D04E8F618532FC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F14913ACE60045928C1EC0D2B88CC38A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:38.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:51.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1104" ], - "x-ms-client-request-id": [ "342fde29-9fa2-469b-a59f-df90b14492a8" ], + "x-ms-unique-id": [ "1105" ], + "x-ms-client-request-id": [ "10fe6bd2-e451-4895-afbf-ac205b5a3bf6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2435,36 +2435,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67f3dfab-7137-47ca-ad7f-04a71bd61a2e" ], + "x-ms-request-id": [ "95bac991-5514-4c90-8451-d24e4a177f91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcb10d69-95d3-4152-9653-a72138c95afe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f53c5272-5db5-49ec-8b8f-1ff46dbe9076" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1139da7f-c888-4333-81fe-c573a4b06482" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:1139da7f-c888-4333-81fe-c573a4b06482" ], + "x-ms-correlation-request-id": [ "fb8978ef-1955-4f6c-9ba3-03b2728881ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002252Z:fb8978ef-1955-4f6c-9ba3-03b2728881ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6ADFED06C4654026B0CA49589C753DF4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:38Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0D32C619A6541F3B8CE739EE8008F35 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:51Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1105" ], - "x-ms-client-request-id": [ "a31afa9b-0e03-4524-94c4-8406ac21fc04" ], + "x-ms-unique-id": [ "1106" ], + "x-ms-client-request-id": [ "580af49f-f1ad-46a3-ad96-b1dad901b7bb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2480,37 +2480,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f331537e-cc65-4631-9a4f-07047775116b" ], + "x-ms-request-id": [ "ee84fa8f-fc38-41c5-a843-1d94a3b8a1b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b46f3410-3c2f-4350-8505-dc2262183613" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10f9e573-1dc0-4861-aabb-0554cce8e589" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ad09b4c4-7a34-446b-b23b-92a90f154c8c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:ad09b4c4-7a34-446b-b23b-92a90f154c8c" ], + "x-ms-correlation-request-id": [ "5b9a7aeb-4d0a-41a6-95b7-576ab38bbfbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002252Z:5b9a7aeb-4d0a-41a6-95b7-576ab38bbfbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B986B1E22CC4C55BF7E3B98CEC0C658 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 553B2744396642F39D180093A85C82BF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1106" ], - "x-ms-client-request-id": [ "9757fe2b-033b-476d-850e-cf50ed9d9357" ], + "x-ms-unique-id": [ "1107" ], + "x-ms-client-request-id": [ "4d90ee0b-8caa-47a3-877c-91955645ea29" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2525,38 +2525,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D447004C0\"" ], + "ETag": [ "\"1DC55C5FA8CF915\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ca4c6d2-3261-45b3-948d-40130c6f402e" ], + "x-ms-request-id": [ "5c862a0e-ee18-45e3-8afe-460461c21281" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d8968b60-f449-4f52-84b7-0b78f9b624c8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:d8968b60-f449-4f52-84b7-0b78f9b624c8" ], + "x-ms-correlation-request-id": [ "c0bfe84a-9ca5-4c4e-b7ee-bbb46b6b6ebf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002252Z:c0bfe84a-9ca5-4c4e-b7ee-bbb46b6b6ebf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F90AAC57DBCC41B99D6B465B8A9FEC4F Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78D778406F894C7088507E76EDED5248 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:38.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:51.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1107" ], - "x-ms-client-request-id": [ "9423241e-4077-4772-8ff7-762a83b2a73a" ], + "x-ms-unique-id": [ "1108" ], + "x-ms-client-request-id": [ "1161a4d0-3a79-4c79-b2aa-a3059bfe3b36" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2572,36 +2572,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d903a99-e029-46d9-b3c5-213bffbb6fb5" ], + "x-ms-request-id": [ "3e99dc25-35e7-475e-8508-03993465424b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1468f47e-6cb1-4e89-ba96-f7f5487f8754" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7c740c1-31e9-4d58-afd2-da4755966d28" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "714cc3df-ac54-46ae-95ad-167b93803b1c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022039Z:714cc3df-ac54-46ae-95ad-167b93803b1c" ], + "x-ms-correlation-request-id": [ "b8a5ee9e-788c-4022-83bb-1d540cbdecd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002252Z:b8a5ee9e-788c-4022-83bb-1d540cbdecd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 446ECD377A304D9EADAEB20D8464647C Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BF71BD21AC940FEAFEFFBB52BF0ACA2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1108" ], - "x-ms-client-request-id": [ "21b7516b-66ef-4582-ab4f-46cd63b1290e" ], + "x-ms-unique-id": [ "1109" ], + "x-ms-client-request-id": [ "72ce0a1a-6d46-4662-af1b-9181be7ac213" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2617,37 +2617,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69d2483f-6b86-4ef4-85d2-0873a28034bb" ], + "x-ms-request-id": [ "1d61f16b-7ee1-491b-a821-f9ac764a068c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3491acd-136e-4c51-9349-d30df20a4ff5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/05bdbdac-546e-49c2-bbfa-46166e678b4b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "61f10f41-bcb2-4418-a8f3-8b82ad76f273" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:61f10f41-bcb2-4418-a8f3-8b82ad76f273" ], + "x-ms-correlation-request-id": [ "b74b319c-4e5f-430b-ace2-7f275f0f1e5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002253Z:b74b319c-4e5f-430b-ace2-7f275f0f1e5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C23067765104E3A9E93A7C67CD12117 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:39Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CFE84A30D6AC4F7C90DF1773E0AE7F9B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:52Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1109" ], - "x-ms-client-request-id": [ "df83ca14-812e-418b-8968-ddd7e41e75e4" ], + "x-ms-unique-id": [ "1110" ], + "x-ms-client-request-id": [ "721a2663-c3dc-48b6-bcae-3e23b0d76172" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2663,18 +2663,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66e291c6-be1d-48e7-9544-1ae2ad4c9bba" ], + "x-ms-request-id": [ "6f8bcc10-2fea-410c-9beb-9305c6a7cf8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/459d8da8-1e05-47e2-8578-5f55ee870f5c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79e27864-b220-45af-929b-55ca661b490e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c398e99e-8980-4558-bee5-ae32429c31c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:c398e99e-8980-4558-bee5-ae32429c31c4" ], + "x-ms-correlation-request-id": [ "f4ebbf3b-8799-4df7-9b21-c9e774190c3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002253Z:f4ebbf3b-8799-4df7-9b21-c9e774190c3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11892CDA481F4631A4AE8E7DFAE7CF2D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04D53F50A1924C7CA65534CE7F051671 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:52 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2684,15 +2684,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1110" ], - "x-ms-client-request-id": [ "055b554a-f825-4ff4-ba7e-b070af87a177" ], + "x-ms-unique-id": [ "1111" ], + "x-ms-client-request-id": [ "90b060df-6225-45dc-8fd1-2b6d9c709566" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2707,38 +2707,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4585BA80\"" ], + "ETag": [ "\"1DC55C5FB9FA195\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8527017-2732-44dc-8148-121031e4510d" ], + "x-ms-request-id": [ "feb36db2-f2af-4221-abea-6c462ba1e093" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "692ef1d6-8446-4aef-a3b9-4413dd1930b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:692ef1d6-8446-4aef-a3b9-4413dd1930b3" ], + "x-ms-correlation-request-id": [ "dcc0d2bb-7134-445e-a090-54fca466abfa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002253Z:dcc0d2bb-7134-445e-a090-54fca466abfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E4FBF49EFAE423EACDA594DAD8BCF54 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 210CF8345A3547F0A9A741A8B139C0D5 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:40.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:53.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1111" ], - "x-ms-client-request-id": [ "f77929e4-3f98-4d4a-b3ff-8bda5218674b" ], + "x-ms-unique-id": [ "1112" ], + "x-ms-client-request-id": [ "33f8adcd-70a1-41cf-93aa-a00a2f91f13b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2754,36 +2754,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db37033c-8095-441a-85d8-ee619459dedd" ], + "x-ms-request-id": [ "c6f9401e-026b-4ebe-adff-bee0ba05a139" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/31c23dba-33b0-49ca-9545-6f3b9a57bd42" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61d7fce1-33df-4b2a-8461-e52da1174e42" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c5056abb-0c9e-4ca4-aca9-4da4d2f6919c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022040Z:c5056abb-0c9e-4ca4-aca9-4da4d2f6919c" ], + "x-ms-correlation-request-id": [ "b649d734-b579-4075-ad95-0e51e3e7cbe9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002255Z:b649d734-b579-4075-ad95-0e51e3e7cbe9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88E073372F9746098C1F9B1F9F706AC2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:40Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E3097C9167E4C128A39982E70CC1A6F Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:53Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1112" ], - "x-ms-client-request-id": [ "ac6fa97e-828a-41e2-9f76-03d6a95bb5eb" ], + "x-ms-unique-id": [ "1113" ], + "x-ms-client-request-id": [ "8cdcfe3a-6a4d-4a39-8e76-63c52e9fff9f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2799,37 +2799,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "891334db-cdc0-4f65-998e-b2d40f1c3c55" ], + "x-ms-request-id": [ "a663bfae-3498-416e-b9da-70dc104b9665" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff102d24-d987-4ba8-981a-4ffe23f8a8c7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46ba29ad-e585-4db0-a7c4-edca089d82a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "890a1840-148a-4209-8c53-2ef3f909e381" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:890a1840-148a-4209-8c53-2ef3f909e381" ], + "x-ms-correlation-request-id": [ "977063fe-9919-48a0-9f43-ec8c6a49522b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002255Z:977063fe-9919-48a0-9f43-ec8c6a49522b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 159E9B305E5B498B998667AA0F869232 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B67C1A2047DE43B89FEA4DD089061B36 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:55Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1113" ], - "x-ms-client-request-id": [ "ece4d030-13a7-4409-8bdd-5cabd34dd1fa" ], + "x-ms-unique-id": [ "1114" ], + "x-ms-client-request-id": [ "cb62c7df-eb8e-41e4-9195-d04f782db985" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2844,38 +2844,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4585BA80\"" ], + "ETag": [ "\"1DC55C5FB9FA195\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44a2db2d-5676-4b18-9a4e-7ce97f6eab94" ], + "x-ms-request-id": [ "1c6e4925-2cdd-4158-961c-4db4aa9998a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9584e938-75cf-4a5e-9290-93c70798e8e3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:9584e938-75cf-4a5e-9290-93c70798e8e3" ], + "x-ms-correlation-request-id": [ "cd7a70cd-10e6-4293-abef-19c06ce2b53e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002255Z:cd7a70cd-10e6-4293-abef-19c06ce2b53e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0B7A245D58241BCB9FD6F6759E233F3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6BC3E00DE5AD4FF08A6EDC1AC717371B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:55Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:40.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:53.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1114" ], - "x-ms-client-request-id": [ "6ea25f26-2919-4ef4-9bb6-a27e8ff91efb" ], + "x-ms-unique-id": [ "1115" ], + "x-ms-client-request-id": [ "6a46436b-774b-45b6-bf04-3ceb8629735b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2891,36 +2891,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6307def5-b9a0-46a0-add7-701adafe17f4" ], + "x-ms-request-id": [ "f7e0112e-27bd-4617-b913-10faf4d8a650" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d785ee88-1386-486a-a5a9-98f97abf6ef5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3e3cb632-043b-43ec-ae9a-791853184fff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2fd17d6b-177a-4f39-be3e-e55369ad9a3e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:2fd17d6b-177a-4f39-be3e-e55369ad9a3e" ], + "x-ms-correlation-request-id": [ "14671533-3ab6-459e-b8ef-4a82a6bc8383" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002255Z:14671533-3ab6-459e-b8ef-4a82a6bc8383" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F79B768067744904840516B5F54B4CCD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2AD2611AC58D46D29B1100DE6BF3F439 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:55Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1115" ], - "x-ms-client-request-id": [ "657d7d60-6a58-4576-9570-4aab0dfaa648" ], + "x-ms-unique-id": [ "1116" ], + "x-ms-client-request-id": [ "f7b64bd2-f4e4-4f70-8960-e243ab7a6037" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2936,37 +2936,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77d77e82-6d14-454f-81d2-53bbea07ccc3" ], + "x-ms-request-id": [ "5c34187f-68f7-4267-bc8b-00d22f54d302" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f53488de-fb74-4aa2-9245-af40927874e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3e71696-948d-44ee-8fc9-15ef42da10ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "621f1f41-81f7-44e4-8cdd-aa862331fba9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022041Z:621f1f41-81f7-44e4-8cdd-aa862331fba9" ], + "x-ms-correlation-request-id": [ "c108acd6-df09-433d-8c8e-2d07f47bbe31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002256Z:c108acd6-df09-433d-8c8e-2d07f47bbe31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C2305B285227453FB968B8FCFA4E331B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:41Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 564B72C036C44BD282C23F5B166654B8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:56Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1116" ], - "x-ms-client-request-id": [ "cabaeea6-b069-4f09-b6a0-d3c2cfdd432a" ], + "x-ms-unique-id": [ "1117" ], + "x-ms-client-request-id": [ "2b4af2b6-dd71-4127-b2bd-4ea2646b2107" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2982,18 +2982,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b10c66d-7f3f-4fa2-a0eb-b81e48e2adb5" ], + "x-ms-request-id": [ "6249d732-70fa-47d7-b32c-d57202a467ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/276ac726-02e9-4928-8e54-2191f392c298" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f027529-d781-4aa7-87e3-f672892cfa85" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "93f8770c-7c3b-4ece-844e-bd5495cec52e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022042Z:93f8770c-7c3b-4ece-844e-bd5495cec52e" ], + "x-ms-correlation-request-id": [ "2ff18df2-a043-4302-8311-e9b39ffccac7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002256Z:2ff18df2-a043-4302-8311-e9b39ffccac7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58281C7041704A96866CE4D839659C14 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11EDA89B6564483B977EAC1FCB980AC8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:56Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3003,15 +3003,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1117" ], - "x-ms-client-request-id": [ "1c27ff34-6f23-4bff-8b1d-4d4286a80c63" ], + "x-ms-unique-id": [ "1118" ], + "x-ms-client-request-id": [ "7160c8fb-aab6-4d37-8f91-ab7f583aa18a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3026,38 +3026,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D469B7040\"" ], + "ETag": [ "\"1DC55C5FD8AF6D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59dfee9a-ced7-40df-aedd-235be476bbb9" ], + "x-ms-request-id": [ "6d470bd2-fbc8-4f98-93c8-ad1ebfedbd88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ab9141f6-b1d2-44e9-9291-4caf667a4630" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022042Z:ab9141f6-b1d2-44e9-9291-4caf667a4630" ], + "x-ms-correlation-request-id": [ "49ef415f-07b1-459f-b9de-49dd8f9f07aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002258Z:49ef415f-07b1-459f-b9de-49dd8f9f07aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4A15198643D41EDB7E1381C512CA862 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B105CFA1AA6049B48045EA0567FA3CB8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:56Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8406" ], + "Content-Length": [ "8400" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-zq9mby\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-ry1xpa-CentralUSwebspace/sites/Functions-PowerShell-74-zq9mby\",\"repositorySiteName\":\"Functions-PowerShell-74-zq9mby\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-zq9mby.azurewebsites.net\",\"functions-powershell-74-zq9mby.scm.azurewebsites.net\"],\"siteProperties\":{\"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-zq9mby.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-zq9mby.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fo9ugi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:42.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\":\"Functions-PowerShell-74-zq9mby\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"inboundIpv6Address\":\"2603:1030:10:8::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::21\",\"ftpUsername\":\"Functions-PowerShell-74-zq9mby\\\\$Functions-PowerShell-74-zq9mby\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,40.77.56.174\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,40.67.187.65,104.43.131.104,104.43.140.18,40.122.29.20,104.43.132.40,104.43.140.94,20.221.0.145,20.221.0.171,20.221.0.192,20.221.0.206,20.221.0.216,20.221.0.223,20.98.173.142,20.98.173.177,20.98.173.205,20.98.173.210,20.98.173.223,20.98.173.238,40.77.56.174\",\"outboundIpv6Addresses\":\"2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:e::231,2603:1030:b:5::31f,2603:1030:b:6::55,2603:1030:b:a::5e,2603:1030:b:f::1c6,2603:1030:b:13::250,2603:1030:b:f::1c7,2603:1030:b:13::258,2603:1030:b:25::1f2,2603:1030:b:13::259,2603:1030:b:e::232,2603:1030:b:6::5b,2603:1030:b:b::8,2603:1030:b:a::63,2603:1030:b:f::23c,2603:1030:b:25::1f3,2603:1030:b:a::1fa,2603:1030:b:13::263,2603:1030:b:13::266,2603:1030:b:9::23f,2603:1030:b:e::234,2603:1030:10:8::21,2603:10e1:100:2::284d:38ae\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-ry1xpa\",\"defaultHostName\":\"functions-powershell-74-zq9mby.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-1atxo6\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-017.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-rs70mo-CentralUSwebspace/sites/Functions-PowerShell-74-1atxo6\",\"repositorySiteName\":\"Functions-PowerShell-74-1atxo6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-1atxo6.azurewebsites.net\",\"functions-powershell-74-1atxo6.scm.azurewebsites.net\"],\"siteProperties\":{\"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-1atxo6.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-1atxo6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:56.4933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-1atxo6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.96.177\",\"possibleInboundIpAddresses\":\"40.86.96.177,13.89.172.13\",\"inboundIpv6Address\":\"2603:1030:10:8::9\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::9\",\"ftpUsername\":\"Functions-PowerShell-74-1atxo6\\\\$Functions-PowerShell-74-1atxo6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-017.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,40.86.96.177\",\"possibleOutboundIpAddresses\":\"40.86.96.40,40.86.100.91,40.86.101.33,40.86.103.136,20.221.48.131,40.122.72.190,40.122.212.27,52.165.20.100,40.78.158.252,40.122.213.17,20.221.3.72,20.221.3.106,20.221.3.254,20.221.4.13,20.221.4.27,20.221.4.72,4.249.217.78,4.249.216.53,4.249.216.60,4.249.216.110,4.249.217.84,4.249.217.87,40.86.96.177\",\"outboundIpv6Addresses\":\"2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::112,2603:1030:b:3::156,2603:1030:b:6::338,2603:1030:b:3::15c,2603:1030:b:25::d1,2603:1030:b:5::235,2603:1030:b:f::10d,2603:1030:b:c::161,2603:1030:b:b::10c,2603:1030:b:13::19c,2603:1030:b:25::d4,2603:1030:b:25::d5,2603:1030:b:5::59,2603:1030:b:12::135,2603:1030:b:5::5b,2603:1030:b:c::163,2603:1030:b:12::136,2603:1030:b:3::167,2603:1030:b:b::10e,2603:1030:b:24::fb,2603:1030:b:f::110,2603:1030:10:8::9,2603:10e1:100:2::2856:60b1\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-017\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-rs70mo\",\"defaultHostName\":\"functions-powershell-74-1atxo6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-zq9mby\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1118" ], - "x-ms-client-request-id": [ "e0dd15e8-d4dd-4619-8b14-3106fe7a1902" ], + "x-ms-unique-id": [ "1119" ], + "x-ms-client-request-id": [ "e013598e-aaae-4c72-98a6-7f0c9f8d8fac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3073,36 +3073,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3710299a-b624-4ce3-bad4-7d490c6ef2c1" ], + "x-ms-request-id": [ "93acb183-4ca8-4813-a51b-430450804ebe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50fb3e93-8ed9-47dc-b3a9-1db538ce1e3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90fc911a-5b6d-482e-87ff-8af01810af08" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e0e8d222-b3ca-4d1f-a548-0759707abcb0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022042Z:e0e8d222-b3ca-4d1f-a548-0759707abcb0" ], + "x-ms-correlation-request-id": [ "68d4b13a-77b4-41ae-8b56-cdf5a87f8816" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002258Z:68d4b13a-77b4-41ae-8b56-cdf5a87f8816" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9575D3206A94AEC815E32880EBA5EF1 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:42Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FBB2744A1D64CEE860DE990AA161424 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:58Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-zq9mby\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e5a84c11-d0f0-49bc-a1cf-8cb6f5fe10c7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=577086da-1113-4767-8fd2-5be3162b711a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-zq9mby\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-1atxo6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1119" ], - "x-ms-client-request-id": [ "5cd4731c-6837-4b29-b2df-c4953d0117c7" ], + "x-ms-unique-id": [ "1120" ], + "x-ms-client-request-id": [ "a99451aa-2c59-42f1-8e70-e3e8b31497f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3118,37 +3118,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60d3c3a3-c9a6-4409-b5e9-68e240529d64" ], + "x-ms-request-id": [ "3652fc1a-fe08-4460-9d49-04f12c4f08f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51e397b4-cffb-495a-b051-acd1f9a1c7c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57b6d27d-850a-42ea-bdbd-e1291286b80f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aea68461-b25a-45cf-b20f-4848f13c5738" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022043Z:aea68461-b25a-45cf-b20f-4848f13c5738" ], + "x-ms-correlation-request-id": [ "3627c634-1692-448f-ae5a-6a7d59c19aca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002259Z:3627c634-1692-448f-ae5a-6a7d59c19aca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74275FE464F5454985A67F96E10E1850 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA7A4F18E67A4A688CB3AAD0487533BD Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22: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-ry1xpa/providers/Microsoft.Web/sites/Functions-PowerShell-74-zq9mby/config/web\",\"name\":\"Functions-PowerShell-74-zq9mby\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/web\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":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-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1120" ], - "x-ms-client-request-id": [ "5766e7be-78af-4a95-95cb-ebbcbb2606ad" ], + "x-ms-unique-id": [ "1121" ], + "x-ms-client-request-id": [ "47763c67-90fd-4827-b32b-1ab3b50605d9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3163,38 +3163,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3F2DAF4B\"" ], + "ETag": [ "\"1DC55C5F4C972B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9be8ef12-8987-410c-a469-070024696b04" ], + "x-ms-request-id": [ "41ad3efd-b653-478d-ac93-f18f143509c1" ], "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": [ "dfaa8826-ce86-4515-ada1-c846431075a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022043Z:dfaa8826-ce86-4515-ada1-c846431075a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fac4a40f-140b-45dc-8d4b-bf0fc91e080c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002259Z:fac4a40f-140b-45dc-8d4b-bf0fc91e080c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB2F8DE8E0254E87A940E12E47218C8F Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2105CDAA0114296BDD5C6CFD4CF49D9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8326" ], + "Content-Length": [ "8337" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:41.8033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1121" ], - "x-ms-client-request-id": [ "7c288b15-3913-4c4a-bda9-54a46cf56049" ], + "x-ms-unique-id": [ "1122" ], + "x-ms-client-request-id": [ "f44c343b-9a00-448c-9560-c72263ec257a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3210,36 +3210,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30c15f29-3e91-4387-b13f-cc8300d53537" ], + "x-ms-request-id": [ "772e9c61-167f-4e75-a436-076e18fd5a88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dfe9e1ea-6c12-43f6-b732-b119763636f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0711108f-cb79-425e-846a-dc30c48e4200" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "107ef5dc-0f8a-463d-a7c6-159c24a0554c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022043Z:107ef5dc-0f8a-463d-a7c6-159c24a0554c" ], + "x-ms-correlation-request-id": [ "a9eb243f-ea90-4dfc-91a6-19b0d3aa8d18" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002259Z:a9eb243f-ea90-4dfc-91a6-19b0d3aa8d18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1EFF42AC4E024687AFEB579C42E84209 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6D800EEE6474A298D251B735B5FF916 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1122" ], - "x-ms-client-request-id": [ "5807b095-fc2d-43ef-b1ba-3da27c4835dd" ], + "x-ms-unique-id": [ "1123" ], + "x-ms-client-request-id": [ "fc1da81a-3011-46be-a892-d4b97cf7ee25" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3255,37 +3255,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de15f159-f6a3-43e7-87b8-851a82064b5a" ], + "x-ms-request-id": [ "8f4681d6-11d7-4887-80e2-2d27a4dd2fda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a8b203a4-6170-4486-a670-f9cdaf7efa4f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f0ca719-aefc-46b1-aac1-e9788226ad21" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:6f0ca719-aefc-46b1-aac1-e9788226ad21" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f93b82f-9d34-423f-bc81-f943e92f1b2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4bc84cd1-b58b-4268-b3ca-10eec6610dab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002259Z:4bc84cd1-b58b-4268-b3ca-10eec6610dab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 049D185DE2E348BFBCB9C1E915F83AC3 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:43Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E00B898476104B33BFDE088ABC774307 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1123" ], - "x-ms-client-request-id": [ "96af8653-a795-4787-9989-1c2c586470ca" ], + "x-ms-unique-id": [ "1124" ], + "x-ms-client-request-id": [ "128d74eb-00f0-4677-a9ce-fb05525f27f1" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3301,18 +3301,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f74a713f-e372-410a-9126-ffb6f0099f9b" ], + "x-ms-request-id": [ "8975db68-3295-42ae-a951-3a52ee1c957b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52a9bbbc-1cdd-479f-8430-a1e5386b2ff7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a69a0a4-298d-400c-86c2-c1dffb62abcf" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3ef4a4b3-7887-46b1-8811-f1d521691fed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:3ef4a4b3-7887-46b1-8811-f1d521691fed" ], + "x-ms-correlation-request-id": [ "a06d9257-9a55-4636-a5a5-0db7d2e3e544" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002300Z:a06d9257-9a55-4636-a5a5-0db7d2e3e544" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 290046FC06274BDC86EF43977EB1AE92 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 407B9CC4BECB40B484A9CDD7A50E9897 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:22:59Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3322,15 +3322,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1124" ], - "x-ms-client-request-id": [ "f4a482d1-1994-4ec6-ba17-e5ac740a4dd4" ], + "x-ms-unique-id": [ "1125" ], + "x-ms-client-request-id": [ "5137d49c-cf4a-4381-ab76-ff50f912ea6d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3345,38 +3345,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3F2DAF4B\"" ], + "ETag": [ "\"1DC55C5F4C972B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0bfa6d9d-83d7-4098-8741-9ba425eab60b" ], + "x-ms-request-id": [ "ffdf9480-8444-4ef7-8f7f-7bc00858bdb5" ], "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": [ "0368c08f-0e07-43b8-a416-5cfb7129179b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:0368c08f-0e07-43b8-a416-5cfb7129179b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7d91239a-09ab-4d15-add2-147c0ead2a6a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002300Z:7d91239a-09ab-4d15-add2-147c0ead2a6a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDF82C7A41234CBB825A7F12D8CA3C74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3CFF2F53525E48448EE5E46289A21ACC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:22:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8326" ], + "Content-Length": [ "8337" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:41.8033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1125" ], - "x-ms-client-request-id": [ "1dd75603-579d-4845-a507-41836f32a4bc" ], + "x-ms-unique-id": [ "1126" ], + "x-ms-client-request-id": [ "d9c7eb0a-ab5d-422d-a044-b58c15dd89fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3392,36 +3392,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf8a97c2-2eab-4f44-8687-fe33fd5b07d9" ], + "x-ms-request-id": [ "8a11e1d5-e5ef-45c0-b4b4-1ee0d8020078" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cbb251c-74db-4b8c-8edf-7356075fff2e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fe0f7afd-78cd-482e-916e-ec83122167bb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2330a84d-0df0-45c9-9147-da8c1fc7e952" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022044Z:2330a84d-0df0-45c9-9147-da8c1fc7e952" ], + "x-ms-correlation-request-id": [ "1bb41a53-98d0-4039-b585-fabc9b8ddc4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002300Z:1bb41a53-98d0-4039-b585-fabc9b8ddc4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 641EDC549C514B70AB5D1EE98BEEDC4B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 638E30B397B14C98865FB600C1FDB210 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1126" ], - "x-ms-client-request-id": [ "b1b06a26-7a3f-40f0-a830-5502d046703c" ], + "x-ms-unique-id": [ "1127" ], + "x-ms-client-request-id": [ "ae14e1bd-3bad-4a61-837e-048695736c37" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3437,37 +3437,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a041648-a9a1-4641-9ccf-5d562f6d3165" ], + "x-ms-request-id": [ "6c7bed5e-d2d5-4881-9137-f5bb6c9cf832" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47014876-424e-4c58-9e43-9d741e71c4f7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "69c6b656-35d0-4f8a-81ba-661d214e99e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:69c6b656-35d0-4f8a-81ba-661d214e99e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02588b7a-15ef-4dcd-96da-7d9c445e5489" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dda30458-f1d7-4378-ac19-d7567f1fe105" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002301Z:dda30458-f1d7-4378-ac19-d7567f1fe105" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42A92BA23FEA42DE91CCFA412EB29682 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:44Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B0ADE6709D44B58A69BBFCDC1930B32 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:00Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1127" ], - "x-ms-client-request-id": [ "5a08de10-fa2f-4bd5-81aa-b5a0bc417197" ], + "x-ms-unique-id": [ "1128" ], + "x-ms-client-request-id": [ "fc44a583-bc3f-485c-baac-c23b402444d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3482,38 +3482,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D3F2DAF4B\"" ], + "ETag": [ "\"1DC55C5F4C972B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "948faa32-b016-4a81-8248-2bd5184d9785" ], + "x-ms-request-id": [ "f052ca3f-38fd-4785-9d40-d227ec5cfc85" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "911b5e32-2693-4c92-8dde-89dedf8a71bc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:911b5e32-2693-4c92-8dde-89dedf8a71bc" ], + "x-ms-correlation-request-id": [ "68985d9b-f190-424e-a2d6-d35a39d3a96b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002301Z:68985d9b-f190-424e-a2d6-d35a39d3a96b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9240C19DA1CF410499B372401054AF68 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB6CC2AB771D42F991FD1DF95D5D64E8 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8326" ], + "Content-Length": [ "8337" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:29.7166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:41.8033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1128" ], - "x-ms-client-request-id": [ "4f868edb-f2e6-4957-907b-1e7a6416cf12" ], + "x-ms-unique-id": [ "1129" ], + "x-ms-client-request-id": [ "85c60d91-579d-4fc9-b704-9ce192b2cb3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3529,36 +3529,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c1c96e3-6b22-4cc3-9b5d-759a0142fdf5" ], + "x-ms-request-id": [ "4a2131c9-0e78-4eb1-acef-a80bcdd1e2d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b04a490-d94f-4d96-8ace-1c88747c7ae7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d11e43d-6a46-4992-8846-e28afa66547b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "acbe6555-7896-4d7c-bb43-e3aa210f3279" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:acbe6555-7896-4d7c-bb43-e3aa210f3279" ], + "x-ms-correlation-request-id": [ "9ecfb38a-897e-462b-abe3-b556624600e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002301Z:9ecfb38a-897e-462b-abe3-b556624600e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DF49326EE6D4C2B9B7B863054B86E27 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DE6764A34584CCEBA423805378E77F9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1129" ], - "x-ms-client-request-id": [ "95170122-2125-4baf-8d36-b187eb4cb0a1" ], + "x-ms-unique-id": [ "1130" ], + "x-ms-client-request-id": [ "9ac4b02c-20bd-4e5b-9f1b-6a0204139795" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3574,37 +3574,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "742e0894-4bd6-4552-a4d2-08d3a48daddb" ], + "x-ms-request-id": [ "f330d39e-bf32-4a34-8860-8e647ef32fa5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e963ba92-02cd-4661-8034-e6bc253f52f9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e95e263-01a6-4b89-a41d-d06b80079994" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022045Z:4e95e263-01a6-4b89-a41d-d06b80079994" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cea2f7d5-6318-4b2f-8a26-d0e13e22d91f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2b544794-1d7f-4117-b920-7b22b4252a76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002301Z:2b544794-1d7f-4117-b920-7b22b4252a76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 489B771F195C4B17B788E78F08E322A7 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B8228C9E80E46198284648BDC5F50C7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1130" ], - "x-ms-client-request-id": [ "bcceb03e-1da3-4bb9-aa06-4a7d7c4aaea5" ], + "x-ms-unique-id": [ "1131" ], + "x-ms-client-request-id": [ "a060b5ae-9742-465f-99f8-86336d1828f7" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3620,18 +3620,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23b30b38-3fb8-4cb1-91de-980fa0b480a8" ], + "x-ms-request-id": [ "f3025391-fc57-4813-8d7a-100232d5fa05" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ff2ffbc-f5a2-4225-9aa0-4d21e857687f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb5f8e15-26c5-4ba0-85c9-9873b21ec25e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1134707e-39b4-488a-8039-d6e5f7a8322c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022046Z:1134707e-39b4-488a-8039-d6e5f7a8322c" ], + "x-ms-correlation-request-id": [ "806ee91e-70b8-44e8-94ca-027a6d64bd67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002302Z:806ee91e-70b8-44e8-94ca-027a6d64bd67" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D4366D988BB4F389FF3ECDD66335341 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:45Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE45B07C3BF5456FB7BDBB513AC96DCF Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:01Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:01 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3641,15 +3641,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1131" ], - "x-ms-client-request-id": [ "b0b678ef-beea-474a-ba6c-c56427a8d7f9" ], + "x-ms-unique-id": [ "1132" ], + "x-ms-client-request-id": [ "25444878-1bfa-49db-98a3-98782ad46243" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3664,38 +3664,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D48F62920\"" ], + "ETag": [ "\"1DC55C600DF6C00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa7543ac-def4-4aab-918c-b207011d1d38" ], + "x-ms-request-id": [ "1542be7e-edd8-4411-b5ef-60c90dd2db1d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b07b4b80-9de7-484d-9000-258fb3513d51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022046Z:b07b4b80-9de7-484d-9000-258fb3513d51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "1ca4a3fd-1703-420d-9eb1-fee4cdec64d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002302Z:1ca4a3fd-1703-420d-9eb1-fee4cdec64d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE1733D95984471B9ACB2EEF4DE9B278 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EAF1B39728F475C8913BCEF60B5395C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8321" ], + "Content-Length": [ "8332" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:46.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:02.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1132" ], - "x-ms-client-request-id": [ "013f3029-d77f-491a-bba3-dc94c17feb4c" ], + "x-ms-unique-id": [ "1133" ], + "x-ms-client-request-id": [ "41abcdf8-3b2d-45d3-a9ed-6c8e39a111b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3711,36 +3711,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5941da55-0060-459c-9788-dccbd398078c" ], + "x-ms-request-id": [ "62e70ea3-12b3-470c-942d-0d13e2ef52b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16a3e34b-51c3-4b98-8d27-5053ee619f6d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90dd396b-51ec-49eb-a9c6-a23857aa2686" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5ef0cf3e-1701-4048-8b57-fcbc3f580038" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022046Z:5ef0cf3e-1701-4048-8b57-fcbc3f580038" ], + "x-ms-correlation-request-id": [ "a04c115f-fab3-4a17-8fe8-6d335bde28ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002302Z:a04c115f-fab3-4a17-8fe8-6d335bde28ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 811EB4403C6348CBB29B5FE0A3B0DA63 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC9F8D1199CE49E4A7B2F20D93C887B3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1133" ], - "x-ms-client-request-id": [ "2f428bd6-afcb-4d17-b47b-8ff4e3aecf3e" ], + "x-ms-unique-id": [ "1134" ], + "x-ms-client-request-id": [ "cd2c421d-e1a4-4a0a-bc62-9cc4d2bac438" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3756,37 +3756,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2433d447-cc3a-40d3-8844-472344982b3d" ], + "x-ms-request-id": [ "210329c3-3c57-4972-8574-94cc068dff34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c017cee3-0d2a-4b47-a946-c6d873f9a233" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d2daa0d-4bc9-4171-a019-f292f6acb1f3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a3b9e723-2f38-4939-8686-e2b1b4bca767" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:a3b9e723-2f38-4939-8686-e2b1b4bca767" ], + "x-ms-correlation-request-id": [ "4c3ff7f9-b492-478b-9246-e96b8e0487f3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002302Z:4c3ff7f9-b492-478b-9246-e96b8e0487f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EAE65C9A3F8C43848C44E36AD60EB401 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:46Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D04C5DAFA7A74D6FA4C9AF1DF2F8B799 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:02Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1134" ], - "x-ms-client-request-id": [ "054b155a-7f8f-477d-9b91-e93e591149f5" ], + "x-ms-unique-id": [ "1135" ], + "x-ms-client-request-id": [ "688caff8-a062-4d7d-81fb-57932a460795" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3801,38 +3801,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D48F62920\"" ], + "ETag": [ "\"1DC55C600DF6C00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38c68f91-6b60-40ec-9627-db9c366bde8e" ], + "x-ms-request-id": [ "07749c0d-3561-4a7b-82b4-a0e2e565c6ce" ], "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": [ "6e21c66b-9b98-4a9c-82c6-98bf70729e15" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:6e21c66b-9b98-4a9c-82c6-98bf70729e15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "4394473a-7b3b-4cde-acfa-dca436b195ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002303Z:4394473a-7b3b-4cde-acfa-dca436b195ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E3EBD5C4D23499F8D328F89E397A7BE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C020E080515B45419E42C38231F9582E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8321" ], + "Content-Length": [ "8332" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:46.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:02.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1135" ], - "x-ms-client-request-id": [ "fbefb7a5-3f68-4b2d-805d-0534f75bfdd4" ], + "x-ms-unique-id": [ "1136" ], + "x-ms-client-request-id": [ "488dfcbe-3a53-4aaf-a405-3171fbcae4f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3848,36 +3848,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7b845d9-2d2e-4df1-855d-3a9a94062851" ], + "x-ms-request-id": [ "2fda7bfe-9fc4-40c4-8f17-f99330cbd21f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e29f5e96-b6fe-45bc-9585-30cd12947d1e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "8331ae06-a16d-4f39-9147-fcb714e0016a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:8331ae06-a16d-4f39-9147-fcb714e0016a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8dc18895-f670-4e13-96ef-b42b02124de4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6b41baf9-605b-41c9-a8b9-e0ca60cb55f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002303Z:6b41baf9-605b-41c9-a8b9-e0ca60cb55f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B5A45BB5B484EED9524037BD4323CD4 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2118B749FE024AB0B3E814C9E2A25D1A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1136" ], - "x-ms-client-request-id": [ "be3b80f0-d173-4586-bb15-f2ec5145ad5d" ], + "x-ms-unique-id": [ "1137" ], + "x-ms-client-request-id": [ "1d528545-2950-4c27-989a-69ca7f25f6e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3893,37 +3893,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acc10df8-b0eb-4176-8ab5-96ebe1a34dde" ], + "x-ms-request-id": [ "400b7a23-8c00-45fa-b634-115abe547e0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a824d07-1dc3-4dbb-aa69-20da3516213d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "8cfd71f3-439d-4546-86da-ca5c7df9caf6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022047Z:8cfd71f3-439d-4546-86da-ca5c7df9caf6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a8ad85e4-0e7d-40b3-8786-9334218864d6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "94af799d-cede-450b-b260-9082c2acc6aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002303Z:94af799d-cede-450b-b260-9082c2acc6aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CBFA875EAE94FA4B7640556B5FE5CD6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:47Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABF8B5FB99F14C77A9DF7D2A3418DD1E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1137" ], - "x-ms-client-request-id": [ "f3acfaa4-c9ea-4134-9417-a34352fd99f0" ], + "x-ms-unique-id": [ "1138" ], + "x-ms-client-request-id": [ "833ab8ce-7e9f-42d0-80a3-062dc529840a" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3939,18 +3939,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86581d06-2c76-4a22-abc7-a2a10baf626d" ], + "x-ms-request-id": [ "bc9fdc9d-3d00-4635-968d-465293475a98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8cafc1cc-9dec-40c1-b609-642d5beea1eb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15e34118-2474-48b3-ab0b-fa2c57c23ce8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "cadaf48f-0daf-4341-8fd1-c6e41a8574ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022048Z:cadaf48f-0daf-4341-8fd1-c6e41a8574ee" ], + "x-ms-correlation-request-id": [ "c7061dac-614d-4c52-89b5-418e8670d3a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002304Z:c7061dac-614d-4c52-89b5-418e8670d3a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 333A7D9A98064D5388EC0A6449F4EBEB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3BAA564F15B4D56BEE0D55923324744 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:03Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:03 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3960,15 +3960,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1138" ], - "x-ms-client-request-id": [ "95b03911-063d-48f3-b651-d78f56d92325" ], + "x-ms-unique-id": [ "1139" ], + "x-ms-client-request-id": [ "5253f4cb-eabf-43c5-906b-fb0db5fe4e15" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3983,38 +3983,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4A3D3515\"" ], + "ETag": [ "\"1DC55C6020A7E80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7318ea1-1aba-4efb-8187-c878a33531cb" ], + "x-ms-request-id": [ "ed9d3bd2-30b4-43b6-a30b-2a7a90d57061" ], "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": [ "4924e735-8254-401d-b67d-ed80f7a68ff1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022048Z:4924e735-8254-401d-b67d-ed80f7a68ff1" ], + "x-ms-correlation-request-id": [ "0f134aee-7bc6-44e3-abd9-4668d24cc2e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002304Z:0f134aee-7bc6-44e3-abd9-4668d24cc2e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6D7691CBDB5406787B6C4D073EFCC74 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C805DC87889248B087ED395B0768038E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8326" ], + "Content-Length": [ "8332" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-nvsk38\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-jxyp27-CentralUSwebspace-Linux/sites/Functions-Node-22-nvsk38\",\"repositorySiteName\":\"Functions-Node-22-nvsk38\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-nvsk38.azurewebsites.net\",\"functions-node-22-nvsk38.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-nvsk38.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-nvsk38.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-jxyp27/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-4e5vgl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:48.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-nvsk38\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.7\",\"possibleInboundIpAddresses\":\"13.89.172.7\",\"inboundIpv6Address\":\"2603:1030:10:8::f\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::f\",\"ftpUsername\":\"Functions-Node-22-nvsk38\\\\$Functions-Node-22-nvsk38\",\"ftpsHostName\":\"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,13.89.172.7\",\"possibleOutboundIpAddresses\":\"168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223,20.118.16.128,20.118.16.160,20.118.17.13,20.118.17.138,20.118.17.146,20.118.17.205,20.118.17.215,20.118.18.6,20.118.19.38,20.118.19.96,20.118.19.111,20.118.19.144,13.89.172.7\",\"outboundIpv6Addresses\":\"2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:b::140,2603:1030:b:6::38f,2603:1030:b:3::10f,2603:1030:b:e::1a,2603:1030:b:6::390,2603:1030:b:7::78,2603:1030:b:12::115,2603:1030:b:12::169,2603:1030:b:25::c2,2603:1030:b:c::14d,2603:1030:b:d::e4,2603:1030:b:5::3bd,2603:1030:b:6::391,2603:1030:b:9::144,2603:1030:b:6::392,2603:1030:b:f::146,2603:1030:b:6::393,2603:1030:b:7::79,2603:1030:b:8::13e,2603:1030:b:3::110,2603:1030:b:d::e5,2603:1030:10:8::f,2603:10e1:100:2::d59:ac07\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-161\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-jxyp27\",\"defaultHostName\":\"functions-node-22-nvsk38.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-fh9m0d\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-pkqf4d-CentralUSwebspace-Linux/sites/Functions-Node-22-fh9m0d\",\"repositorySiteName\":\"Functions-Node-22-fh9m0d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-fh9m0d.azurewebsites.net\",\"functions-node-22-fh9m0d.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-fh9m0d.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-fh9m0d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:04.04\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-fh9m0d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-fh9m0d\\\\$Functions-Node-22-fh9m0d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-pkqf4d\",\"defaultHostName\":\"functions-node-22-fh9m0d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-nvsk38\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1139" ], - "x-ms-client-request-id": [ "fe18d267-3699-4721-b10e-6ea7a30a4368" ], + "x-ms-unique-id": [ "1140" ], + "x-ms-client-request-id": [ "c2d68e90-3d11-41c2-8cef-fc06c2aeb21e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4030,36 +4030,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03387396-8530-4ad7-90fe-d93c3a8b9e55" ], + "x-ms-request-id": [ "6a7ea477-65c4-4942-b5b0-17e830a114d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6403a117-d15d-4739-9263-fd406b876482" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "2654eda5-3113-4951-9374-bd2c2517bf43" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:2654eda5-3113-4951-9374-bd2c2517bf43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2db9d037-3b61-4244-8759-052bfcd5aad0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "095c9197-9d11-4e6f-98bb-e895eb8aeb18" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002304Z:095c9197-9d11-4e6f-98bb-e895eb8aeb18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3A43CEC9F064F1F848A010B06CAAD6E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:48Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B48985E43DD241E1A384DB13EF1D7FA9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-nvsk38\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=91220207-0288-4ea6-97e6-e3dfcec0044e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b2a637a-aba1-4db7-9981-515565c4013a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-nvsk38\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-fh9m0d\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1140" ], - "x-ms-client-request-id": [ "87a80c98-9286-4765-b5d6-42a001a99267" ], + "x-ms-unique-id": [ "1141" ], + "x-ms-client-request-id": [ "ba30b487-c605-4c3f-8034-c96b2663305e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4075,37 +4075,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1c0997f-2fe5-44cd-ac82-86fdd6839297" ], + "x-ms-request-id": [ "c6470ace-ec37-4691-b0d7-021711133208" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e87443ab-c96f-4b6a-8098-8d52a3436b66" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "d79996e5-62b8-47f7-825f-f09aa0d03bb1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:d79996e5-62b8-47f7-825f-f09aa0d03bb1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f4cbe110-e033-4efd-b2af-bb965bc1bb52" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "9e7016a6-6603-4fac-9188-410e80d82102" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002304Z:9e7016a6-6603-4fac-9188-410e80d82102" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55F55310B67649CC90E3550E875E2583 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E57148B7CA9C47B897C677394EE0363D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-jxyp27/providers/Microsoft.Web/sites/Functions-Node-22-nvsk38/config/web\",\"name\":\"Functions-Node-22-nvsk38\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/config/web\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1141" ], - "x-ms-client-request-id": [ "e4d76616-3e92-4e16-9f32-dd53bf90b0ce" ], + "x-ms-unique-id": [ "1142" ], + "x-ms-client-request-id": [ "4b3b14ca-664a-4e03-a371-6e7fe60402f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4120,38 +4120,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D416C6EB5\"" ], + "ETag": [ "\"1DC55C5F6C81BE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5554910b-76b1-41de-bad8-898b22dc4dd7" ], + "x-ms-request-id": [ "cb130420-ed8c-48c6-bb05-b3c297f5ec21" ], "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": [ "d455175b-1f25-4b50-9f7e-5026000170b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:d455175b-1f25-4b50-9f7e-5026000170b8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4405e63c-b238-4703-872c-ed3f776f2348" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002305Z:4405e63c-b238-4703-872c-ed3f776f2348" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7EE785B0A9A04CE8B4A3E0E7DDD3ECF0 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F3984C2A6E94CD681608A64A2185563 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:04Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8623" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:33.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:45.15\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1142" ], - "x-ms-client-request-id": [ "f494eb49-0527-4ed5-acc7-51fc22d66894" ], + "x-ms-unique-id": [ "1143" ], + "x-ms-client-request-id": [ "7ae1686f-995f-44df-9df2-3ebd92e24fe3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4167,36 +4167,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "640c6b96-c0d3-44e3-85f7-1fb2717ba61a" ], + "x-ms-request-id": [ "8d37eeb4-08a2-4aef-bb88-4bbdec4b91ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17d2c039-69ac-4fee-9618-7e0ada809dcb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "17c74e62-3dd2-4280-b91b-47fa3bdf1967" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022049Z:17c74e62-3dd2-4280-b91b-47fa3bdf1967" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28816d6b-ca5b-47e5-a7f5-de755ab1468f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "d5109e57-5c80-4532-98ab-8befebbd4dea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002305Z:d5109e57-5c80-4532-98ab-8befebbd4dea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AB5EB4AD14D4D3FAB3574263EDA1389 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B87778F1F3E441F9973D7BA91B1981DC Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1143" ], - "x-ms-client-request-id": [ "aca7f340-eb6e-403d-b476-707e8fef4d1a" ], + "x-ms-unique-id": [ "1144" ], + "x-ms-client-request-id": [ "0e7b75ce-9429-4915-bb06-e5764ac27a15" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4212,37 +4212,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81641bec-6b57-4154-aa45-286826831549" ], + "x-ms-request-id": [ "69bee415-7155-4e53-8a59-34e686cdb360" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b4051c2-189e-48f1-9b28-102bdae30888" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df252123-14f4-4610-a61d-600d3c412b20" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:df252123-14f4-4610-a61d-600d3c412b20" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc5f5385-22c7-428e-ab24-f02af8882bd2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2c512c88-3742-4d2a-b6e0-5d767d13db21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002305Z:2c512c88-3742-4d2a-b6e0-5d767d13db21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F2B289605E3424CBAF84241491AE626 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:49Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81CD29C4EA304B329D4C1AEDAD563880 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1144" ], - "x-ms-client-request-id": [ "38c47cde-f00b-45ac-b1b0-8f3e24e05aa4" ], + "x-ms-unique-id": [ "1145" ], + "x-ms-client-request-id": [ "5da49bea-6077-415b-90be-5121aa00c06b" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4258,18 +4258,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43d7a317-3b16-4a45-9ee1-e48568a46d13" ], + "x-ms-request-id": [ "2f0b9097-0d55-4b27-9fcf-44db33ea5b8f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04304c3d-de16-489b-b8b8-b0fa6a59ad61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c57fbfc3-598a-4f40-8f0f-6ec179670ccc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c4cfddd6-4a05-49b9-8dd2-318b54b019d8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:c4cfddd6-4a05-49b9-8dd2-318b54b019d8" ], + "x-ms-correlation-request-id": [ "518ac1ea-2e70-4a52-8661-cbdb594c07d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002306Z:518ac1ea-2e70-4a52-8661-cbdb594c07d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7E357FD389240B0BE7C8DBC3820D822 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3940AB46BEC743D983F90A477CC09BB1 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:05Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:05 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4279,15 +4279,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1145" ], - "x-ms-client-request-id": [ "ff076595-feea-4aae-959b-7512844cc285" ], + "x-ms-unique-id": [ "1146" ], + "x-ms-client-request-id": [ "fa5924be-f467-428a-9353-2b24deaea947" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4302,38 +4302,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4B791075\"" ], + "ETag": [ "\"1DC55C603295C00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "903ae2a4-0829-4887-83ea-0fc281719f14" ], + "x-ms-request-id": [ "e804e482-30ac-4798-a3c7-7e326e2f1070" ], "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": [ "b37432a4-55d2-4eda-ac76-5bda92e4ad02" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:b37432a4-55d2-4eda-ac76-5bda92e4ad02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "32982dcb-ae2c-4818-b3b3-e5b203ebbc5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002306Z:32982dcb-ae2c-4818-b3b3-e5b203ebbc5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1C32C98A75E46C6B1A6E26185ABBAAD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F75C1F18388D456AA384AA6728126B9E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8623" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:50.3433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:05.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1146" ], - "x-ms-client-request-id": [ "444fe573-d313-4199-be60-c61cd493ce73" ], + "x-ms-unique-id": [ "1147" ], + "x-ms-client-request-id": [ "9547a988-c791-4668-b04e-cdc893d0d6af" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4349,36 +4349,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f91027a-e16f-4132-b29c-80a9f8ac69f3" ], + "x-ms-request-id": [ "b9f49969-8ca0-41ce-a31f-8d49844acdfd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61137b27-9256-43ac-9174-70eb1224f473" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dd1d3744-2e7f-4aa6-8129-af54cffe5e3b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022050Z:dd1d3744-2e7f-4aa6-8129-af54cffe5e3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/73b07f28-2147-46f7-9332-c414a61cc4be" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "4ad8bc20-a82c-4d2b-b923-3b6ed3fc460a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002306Z:4ad8bc20-a82c-4d2b-b923-3b6ed3fc460a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 847DD01E8F514ADC8CA685DCE75B5C29 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:50Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F042B778BB3043D684DC1F4101A6D1E9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1147" ], - "x-ms-client-request-id": [ "881b3ccc-ff85-4a1b-9fbc-d4fd37d8fb86" ], + "x-ms-unique-id": [ "1148" ], + "x-ms-client-request-id": [ "c108ffb6-4fb8-46c4-a814-ada09d4966af" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4394,37 +4394,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "527c3e2f-c8ac-4d77-acd7-1cbc852fcf56" ], + "x-ms-request-id": [ "09856442-d566-4333-940a-ceef47c01163" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae56084c-cf35-477c-914d-3fb93aa181f2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bee1ab78-8b58-4456-8649-196fee8e0fd5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f23645b6-991f-4109-97ca-4a75546a6e95" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:f23645b6-991f-4109-97ca-4a75546a6e95" ], + "x-ms-correlation-request-id": [ "7b8abca8-50fd-430a-a747-eb1430a1aa4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002306Z:7b8abca8-50fd-430a-a747-eb1430a1aa4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D982D5948E2D40C892384AB73EFB088A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63B57A31C3114B7EB3430D720A6250E4 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1148" ], - "x-ms-client-request-id": [ "27097ec5-0d3c-4bac-84c0-8bb405cff7b4" ], + "x-ms-unique-id": [ "1149" ], + "x-ms-client-request-id": [ "d7022388-0469-4220-8506-6c8b9812ca8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4439,38 +4439,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4B791075\"" ], + "ETag": [ "\"1DC55C603295C00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f01841e1-ccac-473e-b874-bb0bac3d1fc5" ], + "x-ms-request-id": [ "92adf216-5184-4df6-8b58-75d160f5f0ed" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e2ee4c48-4f98-4e20-8e70-5c029a167fdb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:e2ee4c48-4f98-4e20-8e70-5c029a167fdb" ], + "x-ms-correlation-request-id": [ "ad6fe0a5-7b9a-4c89-9e97-a0a94d09bf1a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002307Z:ad6fe0a5-7b9a-4c89-9e97-a0a94d09bf1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F420A6A5E544D56A6442E008306EE36 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2CA3483B30134F149B1892915349839D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:06Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8681" ], + "Content-Length": [ "8623" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:50.3433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:05.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1149" ], - "x-ms-client-request-id": [ "b484f22b-6cee-405a-917f-27272d5fd1fb" ], + "x-ms-unique-id": [ "1150" ], + "x-ms-client-request-id": [ "dfd311b7-619a-4279-88c6-f00ab8aafdd7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4486,36 +4486,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ff6e53c-5f20-44b7-91bd-f6a1c1b2acd2" ], + "x-ms-request-id": [ "78e1f7d5-e879-4654-a2e7-dd5cac458110" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edf4c14e-dad9-4f22-91ee-666e9891889c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "339d67a4-d582-4621-8046-28e53761ad58" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:339d67a4-d582-4621-8046-28e53761ad58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40d1918b-c06e-4c40-9e3b-e54de23b2160" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "139c5c44-3688-4ddc-a517-5de9c6d4de98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002307Z:139c5c44-3688-4ddc-a517-5de9c6d4de98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B258E87CEDC24A7BB3E7C9AB1B5B6283 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5E8696ECD9A4085ABB242311CDDA757 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:07Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1150" ], - "x-ms-client-request-id": [ "0047a974-2fb5-49b4-b16e-f95cedf5e1cb" ], + "x-ms-unique-id": [ "1151" ], + "x-ms-client-request-id": [ "5600651e-739c-4db1-8643-e3088b3c873d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4531,37 +4531,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2bb98c2f-ed41-4c9e-bf3d-f600fb700f8e" ], + "x-ms-request-id": [ "fe11cc93-6734-4340-a151-849d83422315" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91181423-edf5-4926-8933-ea4e63490d70" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], - "x-ms-correlation-request-id": [ "c7cb8e4b-2929-4e58-b6ec-8361cc38deb7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022051Z:c7cb8e4b-2929-4e58-b6ec-8361cc38deb7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/112e2907-20a8-46a0-9414-854aa0e16c8b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5dfe0ce1-5cfc-46cf-85a7-70099deedd1a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002307Z:5dfe0ce1-5cfc-46cf-85a7-70099deedd1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7606E4D7112D4443B194182E0E409243 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:51Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5A7FA33A8384A2F80E76776942746B7 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:07Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1151" ], - "x-ms-client-request-id": [ "761583a3-1141-42a8-b59d-5deae467bd45" ], + "x-ms-unique-id": [ "1152" ], + "x-ms-client-request-id": [ "8377cbc2-0c83-432f-8e2c-0d096507ccd7" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4577,18 +4577,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02865c1e-6844-48b3-85a5-09624e8a4c7e" ], + "x-ms-request-id": [ "2c3b2e3d-8e05-4bb3-b500-116497498de3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4a2d3165-fb26-491d-8bc0-4af9cda86c83" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da966e43-1200-450e-b2b3-d03bfb8f2689" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "478665b4-7cee-4145-9fb5-c72b68b174a9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022052Z:478665b4-7cee-4145-9fb5-c72b68b174a9" ], + "x-ms-correlation-request-id": [ "a2db1607-970b-44b5-abc6-64d4da9f49dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002309Z:a2db1607-970b-44b5-abc6-64d4da9f49dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B4506C5503C4EEFBEAE45EDE8EC5054 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DD0201DB92349FEA54F33DE4F04C244 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:07Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4598,15 +4598,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1152" ], - "x-ms-client-request-id": [ "1fae838a-10e0-4487-8a01-b2932c79dbeb" ], + "x-ms-unique-id": [ "1153" ], + "x-ms-client-request-id": [ "19dcf2bf-e078-4745-af63-7a958bea7db8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4621,38 +4621,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4C8B36C0\"" ], + "ETag": [ "\"1DC55C6044BC8F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12ebcdaf-eaee-4ef2-b306-ed7611139415" ], + "x-ms-request-id": [ "af1432a1-24c6-4223-84ff-7de401caf39f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e168b1d6-8f76-4e26-a1df-2ac402fbd966" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022052Z:e168b1d6-8f76-4e26-a1df-2ac402fbd966" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "1e9e8250-0679-4f24-89c0-feb96c84786a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002310Z:1e9e8250-0679-4f24-89c0-feb96c84786a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B19363C021B41C5A06AC51F8F15CFFE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:52Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F363270DA9F4B998DF037073B40EEBB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:10Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8676" ], + "Content-Length": [ "8628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:52.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:07.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1153" ], - "x-ms-client-request-id": [ "c1393066-66cd-4e8a-b0ee-d75e9d882b58" ], + "x-ms-unique-id": [ "1154" ], + "x-ms-client-request-id": [ "386e78d1-397d-4a4b-bfaf-3cadc3ed33bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4668,36 +4668,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef3d404c-3cc9-463a-b41f-2599ba93e811" ], + "x-ms-request-id": [ "974de0f8-ebaa-4b67-a56f-b810c4e6a80d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2785022-a605-451c-915f-d0d50ad1f6b4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b26807e-f27e-4b16-8c1e-8197026beef8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "415b85d6-0822-4c6d-9402-843c1a4d3df1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022053Z:415b85d6-0822-4c6d-9402-843c1a4d3df1" ], + "x-ms-correlation-request-id": [ "9a357a3d-7268-48e2-9355-712ed259f8ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002310Z:9a357a3d-7268-48e2-9355-712ed259f8ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F589204496E4FDF835B2765A16F5A50 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89762B4B9F9F463B987760B621093BF2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:10Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1154" ], - "x-ms-client-request-id": [ "a6d67b3b-13e6-4b12-b61e-a5fe426d3657" ], + "x-ms-unique-id": [ "1155" ], + "x-ms-client-request-id": [ "a6f60475-0505-4727-a496-d41ba9733840" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4713,37 +4713,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ab8e407-52e2-4e7d-a302-eab71a5db8c0" ], + "x-ms-request-id": [ "444ea1d3-7843-4498-875e-3f434b0dd57e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e8b300e-5b0e-4d0e-8aed-5618940c3876" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "161f8adb-30b0-4fed-bada-06b20f49b384" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022053Z:161f8adb-30b0-4fed-bada-06b20f49b384" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8491e331-a997-44d8-b218-26ffa8b5d2c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ed8f8f0b-4ddd-49e2-95e3-fa88aa141303" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002310Z:ed8f8f0b-4ddd-49e2-95e3-fa88aa141303" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDB33AF15993491B8E82CF9DB6006AF6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D0DDCB00E514417A72AD95414ABAFEE Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:10Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1155" ], - "x-ms-client-request-id": [ "592a1f16-5b74-4cb5-87e1-b3802f5a103a" ], + "x-ms-unique-id": [ "1156" ], + "x-ms-client-request-id": [ "193d96b3-1fe4-43fd-b1f3-79b76752316d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4758,38 +4758,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4C8B36C0\"" ], + "ETag": [ "\"1DC55C6044BC8F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d10c2620-95a9-4914-99ea-e0cdb33f1a1c" ], + "x-ms-request-id": [ "07812272-6b4d-4d6f-8ffd-7fb5a4e09586" ], "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": [ "c65c4b18-4bcc-4de1-8fcc-418353e80c0f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022054Z:c65c4b18-4bcc-4de1-8fcc-418353e80c0f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c1668b8a-003c-4668-aef4-0f9870d68142" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002311Z:c1668b8a-003c-4668-aef4-0f9870d68142" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 913FA128F1234318999DCD3223DAA75B Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:53Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00996B86CCAF4F099C9B87CD89CBBCD2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:10Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8676" ], + "Content-Length": [ "8628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:52.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:07.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1156" ], - "x-ms-client-request-id": [ "bc05f92c-d017-4aa5-8be4-c90f14094920" ], + "x-ms-unique-id": [ "1157" ], + "x-ms-client-request-id": [ "f3657dc8-2450-4c16-b242-2683af2ba761" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4805,36 +4805,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cc748bc-0377-4c8d-abdb-92ebf9582f4a" ], + "x-ms-request-id": [ "d0a5d329-951e-4247-9834-23e13c0c6d61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47f25218-3948-4146-837e-790750ca5ce5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3aab52e8-c1ca-4065-a2be-b7c78defb8b6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cc993522-3027-4f3b-8989-572c89762c20" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022054Z:cc993522-3027-4f3b-8989-572c89762c20" ], + "x-ms-correlation-request-id": [ "9e232156-b45c-4a13-abb7-93174269de5e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002311Z:9e232156-b45c-4a13-abb7-93174269de5e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32EFE4D553824845803C6413A677075A Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76974D3D6A534241923B0379E5BC0587 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1157" ], - "x-ms-client-request-id": [ "7e270525-bb64-4972-a778-db55299e0176" ], + "x-ms-unique-id": [ "1158" ], + "x-ms-client-request-id": [ "040b50e1-2265-4efd-9b22-cc158614e731" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4850,37 +4850,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d34f20b2-eeaa-48d0-8cfd-32c086ea00f8" ], + "x-ms-request-id": [ "9d7e3b9a-e109-4040-a438-55ed4ed400d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/78f06cb0-cadc-4067-a298-7d31f9a40d99" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b0724fd7-36ad-47ca-9103-42e6b5938521" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022054Z:b0724fd7-36ad-47ca-9103-42e6b5938521" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce2b24ca-d45c-4962-ba40-5bb3a5641741" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1095" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16495" ], + "x-ms-correlation-request-id": [ "40b97707-2f3e-41c8-9a06-2eaee18bc8cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002311Z:40b97707-2f3e-41c8-9a06-2eaee18bc8cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64F4037C59994F848F7734EA2DD59147 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E652BE5142F743409248D9F4CC5CF268 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1158" ], - "x-ms-client-request-id": [ "7d9eb77e-c3ef-4a2a-89fa-d3b4bf5e7fe8" ], + "x-ms-unique-id": [ "1159" ], + "x-ms-client-request-id": [ "d28360b3-c955-440e-932b-78bf5e2b5c57" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4896,18 +4896,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9897fd03-8df9-432b-a884-ff846cfb4dd9" ], + "x-ms-request-id": [ "af5023ae-4d15-40b1-92d2-c92b9ee9e941" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37ca5eca-1e47-4b2d-9392-5e0786275486" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0657b065-4bfe-43ee-9eca-e75c46564688" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d6d4616f-a49d-44fc-8c3b-8e480db04541" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:d6d4616f-a49d-44fc-8c3b-8e480db04541" ], + "x-ms-correlation-request-id": [ "844f46ef-3331-47a6-9f4f-7e8cc71420b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002312Z:844f46ef-3331-47a6-9f4f-7e8cc71420b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CBBFDBC6434E4277A74023E577CFDDEF Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:54Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE2256D7B1B541E4A3B97DF7D3B975AB Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:11Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4917,15 +4917,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1159" ], - "x-ms-client-request-id": [ "ea0387ad-046f-403a-b38b-ff2acfb8ab79" ], + "x-ms-unique-id": [ "1160" ], + "x-ms-client-request-id": [ "dafce424-ac44-45a4-9ab2-9e5850ec8a57" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4940,38 +4940,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4E3675C0\"" ], + "ETag": [ "\"1DC55C606D4CACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f137a1c8-8100-4e57-a11c-37aed660ac6f" ], + "x-ms-request-id": [ "eb303669-2c5f-4e26-8a79-2f9b7a872eab" ], "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": [ "72d353e0-f575-4fbc-9652-4f0c293ff459" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:72d353e0-f575-4fbc-9652-4f0c293ff459" ], + "x-ms-correlation-request-id": [ "0ba7c5db-5b06-4b0c-853c-6aff17a9b5a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002312Z:0ba7c5db-5b06-4b0c-853c-6aff17a9b5a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FAB9272409CC491FA3B9EB9DF8B545D6 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86F3635FE9284F39B5F6606DD8467955 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8676" ], + "Content-Length": [ "8628" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-r0w8sa\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-307.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-si2zeg-CentralUSwebspace/sites/Functions-DotNet-8-r0w8sa\",\"repositorySiteName\":\"Functions-DotNet-8-r0w8sa\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"functions-dotnet-8-r0w8sa.scm.azurewebsites.net\"],\"siteProperties\":{\"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-r0w8sa.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-r0w8sa.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-si2zeg/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:54.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\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-r0w8sa\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.7\",\"possibleInboundIpAddresses\":\"20.118.56.7\",\"inboundIpv6Address\":\"2603:1030:10:6::5\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::5\",\"ftpUsername\":\"Functions-DotNet-8-r0w8sa\\\\$Functions-DotNet-8-r0w8sa\",\"ftpsHostName\":\"ftps://waws-prod-dm1-307.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.118.56.7\",\"possibleOutboundIpAddresses\":\"20.84.239.140,20.84.239.154,20.84.239.157,20.84.239.165,20.84.239.200,20.84.239.205,20.12.170.157,20.84.239.216,20.84.239.239,20.109.248.5,20.109.248.37,20.109.248.43,20.109.248.57,20.109.248.154,20.109.248.160,20.109.248.165,20.109.248.166,20.109.248.168,20.109.248.201,20.109.248.202,20.84.237.24,20.109.248.219,20.109.248.222,20.109.249.102,20.109.249.122,20.109.249.124,20.109.249.126,20.109.249.129,20.109.249.134,20.109.249.152,20.109.249.159,20.118.56.7\",\"outboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::188,2603:1030:b:12::15a,2603:1030:b:e::126,2603:1030:b:12::15b,2603:1030:b:7::16e,2603:1030:b:13::1bc,2603:1030:b:6::24b,2603:1030:b:24::120,2603:1030:b:25::f7,2603:1030:b:9::135,2603:1030:b:d::14e,2603:1030:b:7::16f,2603:1030:b:7::170,2603:1030:b:d::14f,2603:1030:b:e::127,2603:1030:b:25::f8,2603:1030:b:8::12f,2603:1030:b:8::130,2603:1030:b:24::121,2603:1030:b:12::15c,2603:1030:b:6::24e,2603:1030:b:25::fb,2603:1030:b:6::24f,2603:1030:b:5::3ae,2603:1030:b:6::380,2603:1030:b:9::137,2603:1030:b:9::138,2603:1030:b:5::3af,2603:1030:b:f::130,2603:1030:b:25::fd,2603:1030:10:6::5,2603:10e1:100:2::1476:3807\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-307\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-si2zeg\",\"defaultHostName\":\"functions-dotnet-8-r0w8sa.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-du5asv\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-9wrjxu-CentralUSwebspace/sites/Functions-DotNet-8-du5asv\",\"repositorySiteName\":\"Functions-DotNet-8-du5asv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-du5asv.azurewebsites.net\",\"functions-dotnet-8-du5asv.scm.azurewebsites.net\"],\"siteProperties\":{\"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-du5asv.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-du5asv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":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-9wrjxu/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"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-du5asv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.4\",\"possibleInboundIpAddresses\":\"20.118.56.4\",\"inboundIpv6Address\":\"2603:1030:10:5::10\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::10\",\"ftpUsername\":\"Functions-DotNet-8-du5asv\\\\$Functions-DotNet-8-du5asv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\"possibleOutboundIpAddresses\":\"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.84.136.74,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\"outboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::173,2603:1030:b:13::1ab,2603:1030:b:6::34a,2603:1030:b:b::120,2603:1030:b:8::119,2603:1030:b:6::34b,2603:1030:b:5::396,2603:1030:b:25::e7,2603:1030:b:c::174,2603:1030:b:13::1ac,2603:1030:b:a::11e,2603:1030:b:9::120,2603:1030:b:12::141,2603:1030:b:6::34c,2603:1030:b:6::34d,2603:1030:b:f::125,2603:1030:b:c::175,2603:1030:b:b::121,2603:1030:b:8::11a,2603:1030:b:f::126,2603:1030:b:25::e8,2603:1030:b:6::34e,2603:1030:b:9::121,2603:1030:b:d::139,2603:1030:b:13::1ad,2603:1030:b:a::11f,2603:1030:b:25::e9,2603:1030:b:d::13a,2603:1030:b:24::10a,2603:1030:b:a::120,2603:1030:10:5::10,2603:10e1:100:2::1476:3804\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-287\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-9wrjxu\",\"defaultHostName\":\"functions-dotnet-8-du5asv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-8-r0w8sa\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1160" ], - "x-ms-client-request-id": [ "f11c9251-f772-425c-a4d1-6e36fa881252" ], + "x-ms-unique-id": [ "1161" ], + "x-ms-client-request-id": [ "24e2ee18-93fe-42ad-8c69-e24db22a359e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4987,36 +4987,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae235f03-4471-430e-bc41-3a5c93e87627" ], + "x-ms-request-id": [ "c4773309-9a5a-4cfe-8156-6d994671a934" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63bbb553-18a4-4c25-af5e-162a99d0fd55" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf18904f-3454-4ef5-b9e1-07677b261275" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a094ff1c-f62c-4956-b124-15925faab1ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:a094ff1c-f62c-4956-b124-15925faab1ec" ], + "x-ms-correlation-request-id": [ "1985dfed-c10c-45ae-bfd6-6c756b55dcce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002312Z:1985dfed-c10c-45ae-bfd6-6c756b55dcce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26792CC0ADB74E6F84B93510D7FFD486 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B47B49694BB54F7AB802A0CCB9DEB1B2 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/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=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragerqm;AccountKey=ANIsdQ/+sT91kByrI70+cBVjyp1+WIpZyT5v2nmY1F3sr92ssvneC1uNYMiMX5oRdiNnJqke9C21+ASt8B3cuw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-r0w8sa\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=868ce2c0-1023-4398-80d6-d3e35eebb25b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=77455f5c-2f64-431c-bd21-50a9fab514e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-r0w8sa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-du5asv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1161" ], - "x-ms-client-request-id": [ "fa75e0a4-c5e2-41ad-9880-8fde261ec05a" ], + "x-ms-unique-id": [ "1162" ], + "x-ms-client-request-id": [ "16b6e94e-fada-4ac7-9996-4a2b117630dc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5032,37 +5032,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "47a486e4-ce08-422f-b7f1-fcb6c99ba9b1" ], + "x-ms-request-id": [ "31874033-a6fb-4a64-9043-7e3b7751b795" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0160e986-e1d0-4fcd-88ea-0adb624e6a53" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1051ca00-aa33-4496-a9d4-fd9f50f99471" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd0f7de6-cefe-4cf1-a177-3ff8a6f75b32" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022055Z:bd0f7de6-cefe-4cf1-a177-3ff8a6f75b32" ], + "x-ms-correlation-request-id": [ "c806100e-a72a-4880-94c6-5994ca233f85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002312Z:c806100e-a72a-4880-94c6-5994ca233f85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 914D02354E4740EB8B622F2EA2F01AEC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B91DB63A272458DAB06873E26218E9D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:12Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23: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-si2zeg/providers/Microsoft.Web/sites/Functions-DotNet-8-r0w8sa/config/web\",\"name\":\"Functions-DotNet-8-r0w8sa\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/web\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1162" ], - "x-ms-client-request-id": [ "ebdf44a4-1e18-4b67-974d-d0a054d3a72c" ], + "x-ms-unique-id": [ "1163" ], + "x-ms-client-request-id": [ "38a18b91-85b1-4ecb-bebf-b06c4caa12f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5077,38 +5077,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4378514B\"" ], + "ETag": [ "\"1DC55C5F95E5720\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdedbda4-0904-4115-b835-e6b74b162637" ], + "x-ms-request-id": [ "7a3aa5cb-0b22-4983-9dd6-92ad31ab17d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a1d8eebd-7645-4f0d-be11-b8893082cf00" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:a1d8eebd-7645-4f0d-be11-b8893082cf00" ], + "x-ms-correlation-request-id": [ "2d896a16-0d06-4e5f-a00b-8d57b5352477" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002313Z:2d896a16-0d06-4e5f-a00b-8d57b5352477" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 185DD27B651F4187A50EBC3698919412 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:55Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D9BBD5DC53E4AEB8BC0A7E42D00F307 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:36.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:22:49.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1163" ], - "x-ms-client-request-id": [ "83a77db0-ae99-4019-a09d-20b81b03d8b3" ], + "x-ms-unique-id": [ "1164" ], + "x-ms-client-request-id": [ "7d104663-d6d5-4947-aca8-b5aaf736ac50" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5124,36 +5124,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "065dfb5c-32e6-44e7-9fcc-3aea7bfc4747" ], + "x-ms-request-id": [ "25762ed2-0f3f-4649-96c3-7adb924aefd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a754b834-7af5-4c37-beb7-75d1a6cc85f1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b610d62c-b085-48ec-ad6a-d93e177d782a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5b83002c-e658-4294-a6bf-4d034600679a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:5b83002c-e658-4294-a6bf-4d034600679a" ], + "x-ms-correlation-request-id": [ "d0c02883-6dbe-4f9e-9cb2-41fe6e9e8b28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002313Z:d0c02883-6dbe-4f9e-9cb2-41fe6e9e8b28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 613A32DE96924CC5A86A8919189ABDAE Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:56Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 132E4060B25741C79D717777A1A5465C Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1164" ], - "x-ms-client-request-id": [ "6c51db18-2270-4240-91dd-662ffb326666" ], + "x-ms-unique-id": [ "1165" ], + "x-ms-client-request-id": [ "a6d1eccb-0098-407b-a63e-c2c848437914" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5169,37 +5169,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7e9e61c-fc7c-441b-9d46-d95a15aaa457" ], + "x-ms-request-id": [ "665dbf75-a4ad-49b9-9f30-67e7f9e378e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a58d6c3-b771-4f8c-8464-312a27c0a97a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e04d522-70c5-423d-b2b0-b785dd091588" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "347af2af-cd90-4786-87e8-c85dc859c2e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:347af2af-cd90-4786-87e8-c85dc859c2e1" ], + "x-ms-correlation-request-id": [ "7ae7baad-21cf-43cc-bcf2-0214650e3323" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002313Z:7ae7baad-21cf-43cc-bcf2-0214650e3323" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 709E44CFBEB74D5D9A5034CC9FB6220D Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:56Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1CFF4167CDF48EBA6CAD1E9954AE581 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1165" ], - "x-ms-client-request-id": [ "c472abdc-830d-4dc2-bd00-bf2bf20852d4" ], + "x-ms-unique-id": [ "1166" ], + "x-ms-client-request-id": [ "01bd85ea-09cb-4a85-b731-179dc9431b04" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5215,18 +5215,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3e211b0-91c0-42f4-b148-cfba2b89ac19" ], + "x-ms-request-id": [ "e7e32b9f-d140-41b0-b2e9-58b5d746e099" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33d6f354-2896-4d88-b94e-48d0798cc5fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7bdd7fc4-4e9f-4b3d-9fe5-c6a4b8676bad" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "82aad041-2cb0-4481-987e-e6fb415f7b0e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022056Z:82aad041-2cb0-4481-987e-e6fb415f7b0e" ], + "x-ms-correlation-request-id": [ "2b4e1586-2dd2-426a-b0c8-3c8e21c2f44f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002314Z:2b4e1586-2dd2-426a-b0c8-3c8e21c2f44f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9630EEF14DE3448C89AAC7B291CC7265 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:56Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10A042FB611E4F4EAC722EBFD58AF763 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:13Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5236,15 +5236,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1166" ], - "x-ms-client-request-id": [ "3233d8f3-4f0a-4477-9ff5-e61cea2f4bb6" ], + "x-ms-unique-id": [ "1167" ], + "x-ms-client-request-id": [ "bba511df-972a-40c4-9949-747d49c1cfca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5259,38 +5259,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4F692960\"" ], + "ETag": [ "\"1DC55C607FBCBA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "101f264d-273c-4f4d-aa80-2aebe87fbac4" ], + "x-ms-request-id": [ "6e4a11cf-3d93-451b-a7bf-368d0f6ee7ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6d6a7e9a-68bf-48a5-8bab-146fb40cde2c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022057Z:6d6a7e9a-68bf-48a5-8bab-146fb40cde2c" ], + "x-ms-correlation-request-id": [ "daa528c8-2ccd-416e-9161-24562fdb3739" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002314Z:daa528c8-2ccd-416e-9161-24562fdb3739" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3136207A5A04E268E9198C31BCBDADC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4EC1EB43C18D4A23850A7C23F386CB58 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:56.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:14.01\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1167" ], - "x-ms-client-request-id": [ "4c7db6d0-8d46-454c-92f1-058b3799402d" ], + "x-ms-unique-id": [ "1168" ], + "x-ms-client-request-id": [ "18a76983-89cd-45e0-82d6-6b3b74326d9b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5306,36 +5306,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35413f94-b340-4183-a18b-55eba4e6f261" ], + "x-ms-request-id": [ "9c6d8232-19e2-4f7e-acfe-f7468eacc98d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15168cbf-1bdc-4b05-acf0-16e5fa7c390c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b903a7f-3469-4029-85a0-11c886194dd1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "241dec45-61f2-4a15-a893-40922001a828" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022057Z:241dec45-61f2-4a15-a893-40922001a828" ], + "x-ms-correlation-request-id": [ "9396577f-9282-4d4d-9ff5-0118e6c7f8d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002314Z:9396577f-9282-4d4d-9ff5-0118e6c7f8d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3995D16D3871426692D24C1DFE79CCA9 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 566510D78563415B8872B38DE2E6CB82 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1168" ], - "x-ms-client-request-id": [ "3331befd-e4a4-4cca-bc6d-3f9f8f045d54" ], + "x-ms-unique-id": [ "1169" ], + "x-ms-client-request-id": [ "127dc943-1195-43c3-9490-ed238aeda6f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5351,37 +5351,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "355a20e7-1038-4dc8-9083-d857c525457e" ], + "x-ms-request-id": [ "c43c0559-e8a4-4c5d-9cb5-2bdd795ac588" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/259a5510-1400-4815-91f0-4852c44e2aaf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c34b3db0-3366-4e73-881f-157c906ca517" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022057Z:c34b3db0-3366-4e73-881f-157c906ca517" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3af92a7d-073e-4761-b809-3fd4555ae6ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e97868c4-826e-4087-a9eb-65537353fe37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002314Z:e97868c4-826e-4087-a9eb-65537353fe37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 689E18DB4ED2435AA351460C413652DB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10BDA31730CB454FAD5AB36AF00F5212 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:14Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1169" ], - "x-ms-client-request-id": [ "630bf2b6-0537-4598-b042-d3f075e79a07" ], + "x-ms-unique-id": [ "1170" ], + "x-ms-client-request-id": [ "1a5f8cab-db9a-463b-92ee-b817001630bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5396,38 +5396,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D4F692960\"" ], + "ETag": [ "\"1DC55C607FBCBA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "891d70cf-a608-4d9c-bd46-053714fdd365" ], + "x-ms-request-id": [ "68d3c605-d191-4b68-a89b-61ce104a91af" ], "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": [ "d61b3e93-d664-4f37-85ee-8cf2d65a018d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:d61b3e93-d664-4f37-85ee-8cf2d65a018d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2b23f51b-021e-49a5-94bf-7ff7905af38c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002315Z:2b23f51b-021e-49a5-94bf-7ff7905af38c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F92D1A88FC764C8892E8C4FA767228BB Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:57Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BB1CBC22B094A009746F2C4D9EB4330 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8283" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:56.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:14.01\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1170" ], - "x-ms-client-request-id": [ "3ad21d44-66bd-4da1-a0bf-266eccc934a0" ], + "x-ms-unique-id": [ "1171" ], + "x-ms-client-request-id": [ "cca71cab-237e-404c-b169-1240345234ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5443,36 +5443,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e96aa897-c554-43d5-8bfe-c2d8b3cb5c6e" ], + "x-ms-request-id": [ "551189b3-c363-4d1d-a62d-d243da935f63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4083c0b-14e5-4173-93d6-30679b1dacf3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f28add97-42ac-4ed2-ad70-b6d2684061ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:f28add97-42ac-4ed2-ad70-b6d2684061ae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3dd17f12-bd80-4954-9538-1616ccffd70a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "143a26e4-5108-40c3-935f-a23ce1575a18" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002316Z:143a26e4-5108-40c3-935f-a23ce1575a18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C3F3F36C49B42AFA24A22CA74351ECC Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BC6284656194E28B832202EBF8500B9 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:15Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1171" ], - "x-ms-client-request-id": [ "465bebde-af35-42df-836e-3a05698e7ae1" ], + "x-ms-unique-id": [ "1172" ], + "x-ms-client-request-id": [ "141556fd-9bdb-4038-9d73-2b90bf4ff432" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5488,37 +5488,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6aa63de3-4be8-4b12-bb96-4386b99a6f05" ], + "x-ms-request-id": [ "6598fb4b-d1ea-45dc-9c23-73069c40a16a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37e29bba-8e97-478e-a95b-5d91c45a2be3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "ff91fc96-570b-46ad-9c75-a8652aadec4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:ff91fc96-570b-46ad-9c75-a8652aadec4e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7acff80f-db92-421b-ab04-935e2cd3db12" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bbaf3520-b3f5-499f-bc9b-7bc8642b58e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002316Z:bbaf3520-b3f5-499f-bc9b-7bc8642b58e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DCD9873DBE845459E0CE42D1E06F096 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3899F104CAA49E9BE92FBA831315897 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1172" ], - "x-ms-client-request-id": [ "843322a7-0d62-412a-9d3a-ce6a04d8e0a2" ], + "x-ms-unique-id": [ "1173" ], + "x-ms-client-request-id": [ "3d5c8a9e-922a-48a4-9074-f3203c98ae04" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5534,18 +5534,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "504a2a13-2eef-4015-a2d0-af9c814189fa" ], + "x-ms-request-id": [ "c0c5ceeb-15a0-485c-9702-d66d3b476c4a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07f0512c-8afe-4464-9dcd-bf411cd335b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/356e8662-b7ae-482c-b53b-f394dc8d91fd" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d785d714-bc56-49da-bcd6-3518ef2c47f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022058Z:d785d714-bc56-49da-bcd6-3518ef2c47f2" ], + "x-ms-correlation-request-id": [ "ab6b0e1d-0b43-4ea1-9968-5831f23d7b00" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002316Z:ab6b0e1d-0b43-4ea1-9968-5831f23d7b00" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6FC7A0EEA954A9D9991C8B66C54B2CD Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91E65A493CF04FE1A7322784E12CB9E3 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5555,15 +5555,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1173" ], - "x-ms-client-request-id": [ "3217878f-694b-447f-ac72-2ffb4c775eae" ], + "x-ms-unique-id": [ "1174" ], + "x-ms-client-request-id": [ "20b91d7a-a387-4c36-bd70-32a50f8f50f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5578,38 +5578,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D50837300\"" ], + "ETag": [ "\"1DC55C6097FE095\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96144b3c-9aa1-4ec3-a78f-32906a45ffe4" ], + "x-ms-request-id": [ "8c92c8b5-4378-45ed-8ab0-55333921d778" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc280295-a5d7-4c97-82d1-897e6fbfe37c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:dc280295-a5d7-4c97-82d1-897e6fbfe37c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "37dd8b46-b3ac-4188-9c90-e27a733bcdd8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002316Z:37dd8b46-b3ac-4188-9c90-e27a733bcdd8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A737B99054E9441780DC65893CDF2740 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:58Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DCFD701F632D4F4CB6F8493900B46099 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:16Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8282" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:58.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:16.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1174" ], - "x-ms-client-request-id": [ "f7bb60c9-5560-4322-aa1c-9773762e3f1b" ], + "x-ms-unique-id": [ "1175" ], + "x-ms-client-request-id": [ "631ef644-bd42-4fb1-be67-c0545d2ec303" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5625,36 +5625,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94a1bc7f-5428-415c-a128-180e54a6b9fd" ], + "x-ms-request-id": [ "1c1882d5-8858-44c8-b0ac-f542769af601" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1dd31381-aecf-4928-8efb-6e71284f24a3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d108fac7-859e-4fa4-8881-c610dda947f7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "78ccaa53-1c9e-4580-95f1-9318885aecab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:78ccaa53-1c9e-4580-95f1-9318885aecab" ], + "x-ms-correlation-request-id": [ "352ac48c-61fd-4f0c-ad34-ae4e5baad73d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002317Z:352ac48c-61fd-4f0c-ad34-ae4e5baad73d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0207018CC0C24F3BBFAA13CC49E7836E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:59Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE42221C881043139CBAF65871F3889D Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1175" ], - "x-ms-client-request-id": [ "b43088d4-ba39-4266-a66c-d9f839256824" ], + "x-ms-unique-id": [ "1176" ], + "x-ms-client-request-id": [ "b1a6e84d-377a-4174-b199-5a2e66fc35d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5670,37 +5670,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a445cd88-7c42-41d5-b219-5f9af667c92a" ], + "x-ms-request-id": [ "cb39ee82-bcad-4ed9-8771-cc3aa1100fba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de18c405-175c-4b36-815c-57ac0c159501" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "58c9dff0-54f0-4efa-b948-4a9fbaf4e8ba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:58c9dff0-54f0-4efa-b948-4a9fbaf4e8ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96d8abc2-c866-41c5-88f1-c89d4e6a708e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "88715525-6c34-49fe-bda5-1b7114b5bee6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002317Z:88715525-6c34-49fe-bda5-1b7114b5bee6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 805502A490834124A34A99DD5D03C14E Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:59Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A31C56131BC4A6EBCD5CBA41392702E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1176" ], - "x-ms-client-request-id": [ "188a5eaa-a06b-44bc-b916-e38615a48394" ], + "x-ms-unique-id": [ "1177" ], + "x-ms-client-request-id": [ "976c07f0-1065-4ecf-92c5-c7b257c1cfae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5715,38 +5715,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D50837300\"" ], + "ETag": [ "\"1DC55C6097FE095\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5ca1cb8-2baf-4fb3-bb69-6ba2ab7e1146" ], + "x-ms-request-id": [ "6a6efe8c-14e8-4dbc-9e00-440f0d7002f1" ], "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": [ "8b4ebea0-0735-488f-9834-0c3af194a6b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022059Z:8b4ebea0-0735-488f-9834-0c3af194a6b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "63604590-43c3-4b38-82c9-07919180e6ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002317Z:63604590-43c3-4b38-82c9-07919180e6ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B840A52D0C48415C900D10234E8134F2 Ref B: MWH011020806052 Ref C: 2025-11-14T02:20:59Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F92ED3A0FE8B4E20B35A430EE8FFD69E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8282" ], + "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:20:58.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:16.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1177" ], - "x-ms-client-request-id": [ "f342c586-8dd7-4119-9c64-ae90d1b2453c" ], + "x-ms-unique-id": [ "1178" ], + "x-ms-client-request-id": [ "1c221f04-d2cc-4b0f-9e16-15048a739ea5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5762,36 +5762,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4eb71ad8-fb7a-43ce-97ec-779fbf3fed74" ], + "x-ms-request-id": [ "2a57c7f6-62d5-4526-a59f-26420e01929a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48cddc93-142e-41e0-9163-cd3205c2bcbc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/047113fc-478f-41ca-9de4-8e1e135656ad" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "050348c8-0c5a-44eb-a758-1f1b38f85e49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022100Z:050348c8-0c5a-44eb-a758-1f1b38f85e49" ], + "x-ms-correlation-request-id": [ "8c5c0471-fc3c-4ab5-8af7-caa59580a6ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002317Z:8c5c0471-fc3c-4ab5-8af7-caa59580a6ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC5A1F29F53945EDA7E9C54E56D9D64E Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:20:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8183CAB9EF754C58A0219F66F85C6A0E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:17Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1178" ], - "x-ms-client-request-id": [ "e958c1be-88bc-4423-ab4a-493457b83f41" ], + "x-ms-unique-id": [ "1179" ], + "x-ms-client-request-id": [ "4146acd9-0d38-48fb-85f1-ba6f06a50dac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5807,37 +5807,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06326d15-c225-41be-8a61-653872337d05" ], + "x-ms-request-id": [ "c96407a2-8b3b-450e-8f32-5b71b4f61ce2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7f68796-f197-471a-baa3-97068efe3564" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aec15295-f460-489b-a243-d2f5f562e353" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "06820bde-2416-4583-b5fb-3072d0ac762f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022100Z:06820bde-2416-4583-b5fb-3072d0ac762f" ], + "x-ms-correlation-request-id": [ "f42d40d5-e6f9-4252-8d2a-caf09e8c657b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002318Z:f42d40d5-e6f9-4252-8d2a-caf09e8c657b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92FFF00976B34F2D8E7DAC393D880AFF Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:21:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C08DDF43024B4F9EB8469B63E6040322 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1179" ], - "x-ms-client-request-id": [ "e2da55ac-2f9d-4675-bc2b-b0b1a7d5ec66" ], + "x-ms-unique-id": [ "1180" ], + "x-ms-client-request-id": [ "35a98b09-f7ce-42b7-a8cf-3087d253d507" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5853,18 +5853,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9da0243a-ef10-4c7f-ab8f-06efa27e1f6d" ], + "x-ms-request-id": [ "0972da99-2101-404b-bc2d-d8d33f34145b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc0f9b1b-1fe1-47f0-bbaa-7b74565e6476" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ef24eeb-b054-4856-9d42-22003cbc1302" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d0429a51-a5ae-4666-bc90-19969b568285" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022100Z:d0429a51-a5ae-4666-bc90-19969b568285" ], + "x-ms-correlation-request-id": [ "84a92091-ca9d-48e9-bbd0-3ed7cf75c71f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002318Z:84a92091-ca9d-48e9-bbd0-3ed7cf75c71f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 743CCD8D48FB4BB786AB47DB047A3701 Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:21:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 219CD8F065AF4B51828D63CC3DC3E2E6 Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:17 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5874,15 +5874,15 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1180" ], - "x-ms-client-request-id": [ "e8fc2e7f-6d70-4fda-bbde-fdd6060d5604" ], + "x-ms-unique-id": [ "1181" ], + "x-ms-client-request-id": [ "a3176e5f-4b94-4c50-84b3-6c355f047b43" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5897,38 +5897,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC550D51A76695\"" ], + "ETag": [ "\"1DC55C60AA9EEAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3317c2a3-a1cf-4159-8608-046b56d801e7" ], + "x-ms-request-id": [ "8079d3d5-5fc6-4ea4-8493-a791bb692dfe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63b11353-4c31-4ea7-a7d6-5714c62c66a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022101Z:63b11353-4c31-4ea7-a7d6-5714c62c66a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d2e2679f-f99f-4cb0-a5c8-0c00831c40f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002318Z:d2e2679f-f99f-4cb0-a5c8-0c00831c40f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6310ED84A9E44CE49EBABDD8486528BA Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:00Z" ], - "Date": [ "Fri, 14 Nov 2025 02:21:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2967153452D1463CBD8994783129146B Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-wq8ygc\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-le3f9v-CentralUSwebspace-Linux/sites/Functions-Python-312-wq8ygc\",\"repositorySiteName\":\"Functions-Python-312-wq8ygc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-wq8ygc.azurewebsites.net\",\"functions-python-312-wq8ygc.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-wq8ygc.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-wq8ygc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-le3f9v/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-14T02:21:00.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\":\"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-wq8ygc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-wq8ygc\\\\$Functions-Python-312-wq8ygc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-le3f9v\",\"defaultHostName\":\"functions-python-312-wq8ygc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-w61tuq\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-myf9na-CentralUSwebspace-Linux/sites/Functions-Python-312-w61tuq\",\"repositorySiteName\":\"Functions-Python-312-w61tuq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-w61tuq.azurewebsites.net\",\"functions-python-312-w61tuq.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-w61tuq.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-w61tuq.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"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-myf9na/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-15T00:23:18.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\":\"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-w61tuq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-w61tuq\\\\$Functions-Python-312-w61tuq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-myf9na\",\"defaultHostName\":\"functions-python-312-w61tuq.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"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-312-wq8ygc\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1181" ], - "x-ms-client-request-id": [ "6fc0274f-0573-4a3a-8e48-77b2a86cb17a" ], + "x-ms-unique-id": [ "1182" ], + "x-ms-client-request-id": [ "bdb98df9-26d2-458e-b84c-ba4c1f92e7b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5944,36 +5944,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "857468e6-2a2a-4e82-80f6-6457aefe3305" ], + "x-ms-request-id": [ "7bdc3348-ee88-4c79-b779-270c9a799139" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d90b3adf-3945-40d9-8020-e50fed8e17bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf3cc38d-7784-4c5e-974e-401d7bb7d74e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c5bf84a0-ef0e-4007-830c-aa79a8a4979b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022101Z:c5bf84a0-ef0e-4007-830c-aa79a8a4979b" ], + "x-ms-correlation-request-id": [ "d25460bf-9d5f-412b-b4b4-ce7d8e149d1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002319Z:d25460bf-9d5f-412b-b4b4-ce7d8e149d1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6368AD2F924C47C3B27C0A8B7DCD3519 Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:01Z" ], - "Date": [ "Fri, 14 Nov 2025 02:21:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA725526FE2C44BF8BC8228F3394231E Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:18Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/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=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragew45;AccountKey=0GAf7cTeekcPsXU/+THrJp+s/hpy7gjIvH99g2xTMADDh1NJ0oOCG10xA0sn2b9EwSv+P34726oY+AStp0JHng==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-wq8ygc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c03b9d8e-8300-4a6d-b792-e0ff245d67ee;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4683401-bb3c-41e0-8a2a-2a9d2824c97e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-wq8ygc\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-w61tuq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1182" ], - "x-ms-client-request-id": [ "2025bad2-b692-4c3a-a200-cba6122964ae" ], + "x-ms-unique-id": [ "1183" ], + "x-ms-client-request-id": [ "6064c951-d79e-46b4-aa1d-663eb0659eff" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5989,25 +5989,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85d9e283-9c9a-4063-b2ed-a0414e314d9d" ], + "x-ms-request-id": [ "36785b97-54a0-4fd7-b0be-3e0b60056956" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ff3a43c-0499-44b8-bf78-6059b156f868" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70a610a1-e65c-4a7c-8a8f-61bbadef6aa9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "382e2118-5c5f-4d1a-8d36-260ce9bd424f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251114T022101Z:382e2118-5c5f-4d1a-8d36-260ce9bd424f" ], + "x-ms-correlation-request-id": [ "10537e8f-39ad-463d-9808-c6b09f911d6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251115T002319Z:10537e8f-39ad-463d-9808-c6b09f911d6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2D8535F2CF3436DB9FC418628648E02 Ref B: MWH011020806052 Ref C: 2025-11-14T02:21:01Z" ], - "Date": [ "Fri, 14 Nov 2025 02:21:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E83D023C7E09474092E61D618E01B95A Ref B: CO6AA3150218019 Ref C: 2025-11-15T00:23:19Z" ], + "Date": [ "Sat, 15 Nov 2025 00:23:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-le3f9v/providers/Microsoft.Web/sites/Functions-Python-312-wq8ygc/config/web\",\"name\":\"Functions-Python-312-wq8ygc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/config/web\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"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 b55c00168be1..87b9db66f93b 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,63 +1,106 @@ { - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "functionAppPlanName": "Functions-MyPlan-uha1k8c73r", - "flexTestRunId": "fqti", - "environmentACAName": "azps-envtestbjek", - "storageAccountWindows": "functionswinstoragerqm", - "location": "central us", - "storageAccountLinux": "functionslinuxstoragew45", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-ei67oa", + "functionNameDotNetIsolated": "Functions-DotNet-Isolatedhfo7435u8j", + "functionNameJava": "Functions-Java-l6hz0unsba", + "acaTestRunId": "gls5", + "flexStorageAccountPython": "flexapppythonsa8wks", + "functionNamePowerShell": "Functions-PowerShellTest-0d6xycl2n4", + "workSpaceACAName": "workspace-azpstestgls5", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-pko1x9", + "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsa8", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-195kucxe6q", + "functionNameDotNet": "Functions-DotNet-k691hsj4cf", + "storageAccountLinux": "functionslinuxstoragea16", + "flexResourceGroupName": "Functions-Flex-RG-8wks", + "functionNamePython": "Functions-Python-kbt35oepnm", + "environmentACAName": "azps-envtestgls5", + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-9wrjxu", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-0qslu4m95n", "functionAppsToCreate": [ { + "OSType": "Windows", "Runtime": "PowerShell", - "FunctionsVersion": 4, - "Name": "Functions-PowerShell-74-zq9mby", "RuntimeVersion": "7.4", - "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa", - "PlanName": "Functions-Windows-Premium-fo9ugi", - "StorageAccountName": "functionswinstoragerqm", - "OSType": "Windows" + "ResourceGroupName": "Functions-Test-Windows-Premium-rs70mo", + "Name": "Functions-PowerShell-74-1atxo6", + "StorageAccountName": "functionswinstorage9nh", + "FunctionsVersion": 4, + "PlanName": "Functions-Windows-Premium-qnrsj3" }, { + "OSType": "Linux", "Runtime": "Node", - "FunctionsVersion": 4, - "Name": "Functions-Node-22-nvsk38", "RuntimeVersion": 22, - "ResourceGroupName": "Functions-Test-Linux-Premium-jxyp27", - "PlanName": "Functions-Linux-Premium-4e5vgl", - "StorageAccountName": "functionslinuxstoragew45", - "OSType": "Linux" + "ResourceGroupName": "Functions-Test-Linux-Premium-pkqf4d", + "Name": "Functions-Node-22-fh9m0d", + "StorageAccountName": "functionslinuxstoragea16", + "FunctionsVersion": 4, + "PlanName": "Functions-Linux-Premium-ei67oa" }, { + "Location": "central us", + "OSType": "Windows", "Runtime": "DotNet", - "FunctionsVersion": 4, - "Name": "Functions-DotNet-8-r0w8sa", "RuntimeVersion": 8, - "ResourceGroupName": "Functions-Test-Windows-Consumption-si2zeg", - "StorageAccountName": "functionswinstoragerqm", - "Location": "central us", - "OSType": "Windows" + "ResourceGroupName": "Functions-Test-Windows-Consumption-9wrjxu", + "Name": "Functions-DotNet-8-du5asv", + "StorageAccountName": "functionswinstorage9nh", + "FunctionsVersion": 4 }, { + "Location": "central us", + "OSType": "Linux", "Runtime": "Python", - "FunctionsVersion": 4, - "Name": "Functions-Python-312-wq8ygc", "RuntimeVersion": "3.12", - "ResourceGroupName": "Functions-Test-Linux-Consumption-le3f9v", - "StorageAccountName": "functionslinuxstoragew45", - "Location": "central us", - "OSType": "Linux" + "ResourceGroupName": "Functions-Test-Linux-Consumption-myf9na", + "Name": "Functions-Python-312-w61tuq", + "StorageAccountName": "functionslinuxstoragea16", + "FunctionsVersion": 4 } ], - "functionNamePowerShell": "Functions-PowerShellTest-1hufk4w38b", - "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-5b9pkr", - "functionAppTestPlanName": "Functions-MyTestPlan1-mzxvaegbqk", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-eqo4k3", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-fdgw6nz0r1", + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-pkqf4d", + "functionNameTestApp": "Functions-TestAppName-6n1b0q3ctu", + "resourceGroupNameACA": "Functions-ACA-Test-gls5", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "functionAppTestPlanName": "Functions-MyTestPlan1-2pe5vsx0rk", + "flexStorageAccountJava": "flexappjavasa8wks", + "flexIdentityInfo": { + "ClientId": "fd4d02c5-7641-4da1-a89a-769cdb50014b", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks", + "Location": "eastasia", + "Name": "my-flex-app-uai-8wks", + "PrincipalId": "505c3830-c2b6-469b-b4a8-2fd6a6d49baa", + "ResourceGroupName": "Functions-Flex-RG-8wks", + "SystemData": { + "CreatedAt": null, + "CreatedBy": null, + "CreatedByType": null, + "LastModifiedAt": null, + "LastModifiedBy": null, + "LastModifiedByType": null + }, + "SystemDataCreatedAt": null, + "SystemDataCreatedBy": null, + "SystemDataCreatedByType": null, + "SystemDataLastModifiedAt": null, + "SystemDataLastModifiedBy": null, + "SystemDataLastModifiedByType": null, + "Tag": {}, + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" + }, + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-myf9na", + "flexStorageAccountCustom": "flexappcustomsa8wks", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-5id68b7s4u", "identityInfo": { - "ClientId": "03a6c42e-ee57-4c44-be18-1e994b809a8b", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-ry1xpa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "ClientId": "75ecd9fd-38ba-4818-895e-2792e06feaac", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", "Location": "centralus", "Name": "ID1", - "PrincipalId": "32f8d9da-35d3-41c0-989c-25e3ed74edba", - "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa", + "PrincipalId": "61169926-c85a-4a5d-a53d-fdbcd266f581", + "ResourceGroupName": "Functions-Test-Windows-Premium-rs70mo", "SystemData": { "CreatedAt": null, "CreatedBy": null, @@ -76,120 +119,77 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-ry1xpa", - "functionNameTestApp": "Functions-TestAppName-9ekrmwpy0z", - "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-12q6pcrzoi", - "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-le3f9v", - "flexResourceGroupName": "Functions-Flex-RG-fqti", - "flexStorageAccountNode": "flexappnodesafqti", - "flexStorageAccountCustom": "flexappcustomsafqti", - "planNameWorkerTypeLinux": "Functions-Linux-Premium-4e5vgl", - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-jxyp27", - "functionNameContainer": "Functions-CustomImage-pj3v91g7zb", - "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "functionAppTestPlanName2": "Functions-MyTestPlan2-e36rsf8y2l", - "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-zeaoxcpv3i", + "storageAccountWindows": "functionswinstorage9nh", + "storageAccountNameACA": "funcacastotoragegls5", "flexLocation": "East Asia", - "storageAccountNameACA": "funcacastotoragebjek", - "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-0vcunwydg7", - "functionNameNode": "Functions-Node-zur6igjh15", + "functionNameNode": "Functions-Node-8b1039t6ur", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-rs70mo", "newApplInsights": { - "AppId": "c1f3521a-f04c-4aef-bcc1-e1cca9013861", - "ApplicationId": "Functions-PowerShellTest-1hufk4w38b-new", + "AppId": "7dde8f1f-b56e-417a-b544-056656fcda3e", + "ApplicationId": "Functions-PowerShellTest-0d6xycl2n4-new", "ApplicationType": {}, - "ConnectionString": "InstrumentationKey=a866cc82-d5d8-4255-9a52-47cf08de5202;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c1f3521a-f04c-4aef-bcc1-e1cca9013861", - "CreationDate": "2025-11-14T01:14:39.0556967Z", + "ConnectionString": "InstrumentationKey=f45b116a-0da0-498b-9bda-9d9ebe6bf3de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7dde8f1f-b56e-417a-b544-056656fcda3e", + "CreationDate": "2025-11-14T23:14:15.0740314Z", "DisableIPMasking": null, "DisableLocalAuth": null, - "Etag": "\"0607a1ca-0000-0300-0000-691682830000\"", + "Etag": "\"2e005fe4-0000-0300-0000-6917b7cc0000\"", "FlowType": {}, "ForceCustomerStorageForProfiler": null, "HockeyAppId": null, "HockeyAppToken": null, - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-ry1xpa/providers/microsoft.insights/components/Functions-PowerShellTest-1hufk4w38b-new", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new", "ImmediatePurgeDataOn30Day": null, "IngestionMode": {}, - "InstrumentationKey": "a866cc82-d5d8-4255-9a52-47cf08de5202", + "InstrumentationKey": "f45b116a-0da0-498b-9bda-9d9ebe6bf3de", "Kind": "web", "LaMigrationDate": null, "Location": "centralus", - "Name": "Functions-PowerShellTest-1hufk4w38b-new", + "Name": "Functions-PowerShellTest-0d6xycl2n4-new", "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShellTest-1hufk4w38b-new", + "PropertiesName": "Functions-PowerShellTest-0d6xycl2n4-new", "ProvisioningState": "Succeeded", "PublicNetworkAccessForIngestion": {}, "PublicNetworkAccessForQuery": {}, "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa", + "ResourceGroupName": "Functions-Test-Windows-Premium-rs70mo", "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-1hufk4w38b-new_c1f3521a-f04c-4aef-bcc1-e1cca9013861_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-1hufk4w38b-new-ws" + "WorkspaceResourceId": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws" }, - "flexStorageAccountPython": "flexapppythonsafqti", - "functionNameDotNetIsolated": "Functions-DotNet-Isolateduhnte46q0o", - "acaTestRunId": "bjek", - "workSpaceACAName": "workspace-azpstestbjek", - "functionNameDotNet": "Functions-DotNet-ah7tpo8wyj", - "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-7jfq3l", - "functionNameCustomHandler": "Functions-CustomHandleri5nz8vgkem", - "functionNamePython": "Functions-Python-nds0y973f2", - "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-9mznld", - "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-si2zeg", - "flexStorageAccountJava": "flexappjavasafqti", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-fo9ugi", + "functionNameCustomHandler": "Functions-CustomHandler325nikcosm", + "functionNameContainer": "Functions-CustomImage-fbul4mq5e0", + "functionAppTestPlanName2": "Functions-MyTestPlan2-kr06eymqwb", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-rbyjn8", + "location": "central us", + "flexStorageAccountNode": "flexappnodesa8wks", "locationACA": "WestCentralUS", - "flexStorageAccountPowerShell": "flexapppowershellsafqti", - "functionNameJava": "Functions-Java-la9uw4623c", - "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsaf", - "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-q8hc7lwuof", - "flexIdentityInfo": { - "ClientId": "8a484c9c-cfe7-487d-9c03-6b99c456c37c", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-fqti/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-fqti", - "Location": "eastasia", - "Name": "my-flex-app-uai-fqti", - "PrincipalId": "0b3df055-ad5e-4754-832a-e212e1370f96", - "ResourceGroupName": "Functions-Flex-RG-fqti", - "SystemData": { - "CreatedAt": null, - "CreatedBy": null, - "CreatedByType": null, - "LastModifiedAt": null, - "LastModifiedBy": null, - "LastModifiedByType": null - }, - "SystemDataCreatedAt": null, - "SystemDataCreatedBy": null, - "SystemDataCreatedByType": null, - "SystemDataLastModifiedAt": null, - "SystemDataLastModifiedBy": null, - "SystemDataLastModifiedByType": null, - "Tag": {}, - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" - }, - "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-bzn08hgcxk", - "resourceGroupNameACA": "Functions-ACA-Test-bjek", + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-wbuk7grly4", + "functionAppPlanName": "Functions-MyPlan-ci82qbjuoy", "servicePlansToCreate": [ { + "ResourceGroupName": "Functions-Test-Windows-Premium-rs70mo", + "Sku": "EP1", "WorkerType": "Windows", - "Name": "Functions-Windows-Premium-fo9ugi", "MaximumWorkerCount": 10, - "Sku": "EP1", + "Name": "Functions-Windows-Premium-qnrsj3", "MinimumWorkerCount": 1, - "Location": "central us", - "ResourceGroupName": "Functions-Test-Windows-Premium-ry1xpa" + "Location": "central us" }, { + "ResourceGroupName": "Functions-Test-Linux-Premium-pkqf4d", + "Sku": "EP1", "WorkerType": "Linux", - "Name": "Functions-Linux-Premium-4e5vgl", "MaximumWorkerCount": 10, - "Sku": "EP1", + "Name": "Functions-Linux-Premium-ei67oa", "MinimumWorkerCount": 1, - "Location": "central us", - "ResourceGroupName": "Functions-Test-Linux-Premium-jxyp27" + "Location": "central us" } - ] + ], + "flexTestRunId": "8wks", + "flexStorageAccountPowerShell": "flexapppowershellsa8wks", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-qnrsj3", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f" } From 5c037dd45fd51aa4e34cd9a5685ca08efb3f2f44 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 14 Nov 2025 20:19:11 -0800 Subject: [PATCH 25/26] Sanitize recording secrets (InstrumentationKey, storage AccountKey, connection strings) --- .../test/Get-AzFunctionApp.Recording.json | 28 ++-- ...Remove-AzFunctionAppSetting.Recording.json | 52 +++---- ...FunctionApp.FlexConsumption.Recording.json | 142 +++++++++--------- .../test/New-AzFunctionApp.Recording.json | 126 ++++++++-------- ...-Remove-AzFunctionApp.Tests.Recording.json | 70 ++++----- .../test/Remove-AzFunctionApp.Recording.json | 10 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 74 ++++----- 7 files changed, 251 insertions(+), 251 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index f5d6d51d66ea..770edb6dc66c 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json @@ -86,7 +86,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -177,7 +177,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -268,7 +268,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -359,7 +359,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -496,7 +496,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -633,7 +633,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -770,7 +770,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -907,7 +907,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1043,7 +1043,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1180,7 +1180,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1271,7 +1271,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1362,7 +1362,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1453,7 +1453,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1503,4 +1503,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} 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 c75059e792f5..bc16bde1df67 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 @@ -390,7 +390,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2f00db17-0000-0300-0000-6917b93c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"AppId\": \"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\r\n \"ConnectionString\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"Name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"CreationDate\": \"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-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\": \"\\\"2f00db17-0000-0300-0000-6917b93c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"AppId\": \"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest1-0qslu4m95n\",\r\n \"CreationDate\": \"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -398,7 +398,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-0qslu4m95n\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-0qslu4m95n\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -568,7 +568,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -659,7 +659,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -704,7 +704,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -749,7 +749,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -757,7 +757,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -791,7 +791,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -836,7 +836,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -927,7 +927,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1018,7 +1018,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting2\":\"PowerShellRocks\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1026,7 +1026,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1060,7 +1060,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1105,7 +1105,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1150,7 +1150,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1158,7 +1158,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1192,7 +1192,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1237,7 +1237,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1328,7 +1328,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1419,7 +1419,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1427,7 +1427,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-0qslu4m95n\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1461,7 +1461,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1506,7 +1506,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1597,7 +1597,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1734,7 +1734,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-0qslu4m95n/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-0qslu4m95n\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -1875,4 +1875,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json index 19faf18d3eb4..b60bd6033197 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json @@ -511,7 +511,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"AppId\": \"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\r\n \"ConnectionString\": \"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:22:43.5766283+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-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-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\": \"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"AppId\": \"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:22:43.5766283+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-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -519,7 +519,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks?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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexappdotnetisolatedsa8.blob.core.windows.net/app-package-functionsflexdotnetisolated8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -689,7 +689,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -825,7 +825,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -916,7 +916,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1053,7 +1053,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=FDEOUTlgGrFKmFQ7lcA5M3ZACkjBbdezhjgQkHZRNqh2dMl/Myg5VrHiq8ijdNTNlEOkvyeIV2+J+AStjwgYsA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappdotnetisolatedsa8;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1706,7 +1706,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\r\n \"name\": \"Functions-Flex-Node-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-8wks\",\r\n \"AppId\": \"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\r\n \"ConnectionString\": \"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\",\r\n \"Name\": \"Functions-Flex-Node-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:24:55.9628013+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-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-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\": \"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\r\n \"name\": \"Functions-Flex-Node-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-8wks\",\r\n \"AppId\": \"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Node-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:24:55.9628013+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-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -1714,7 +1714,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks?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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsflexnode8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1884,7 +1884,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2020,7 +2020,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2111,7 +2111,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2248,7 +2248,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Node-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2901,7 +2901,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\r\n \"name\": \"Functions-Flex-Python-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-8wks\",\r\n \"AppId\": \"0fd5bb15-8254-462a-b124-f01de57491fa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6646e0da-7c3a-4442-b697-9e3161408467\",\r\n \"ConnectionString\": \"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\",\r\n \"Name\": \"Functions-Flex-Python-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:27:10.9745115+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-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-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\": \"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\r\n \"name\": \"Functions-Flex-Python-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-8wks\",\r\n \"AppId\": \"0fd5bb15-8254-462a-b124-f01de57491fa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6646e0da-7c3a-4442-b697-9e3161408467\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Python-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:27:10.9745115+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-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -2909,7 +2909,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks?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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionsflexpython8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -3079,7 +3079,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3215,7 +3215,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3306,7 +3306,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3443,7 +3443,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Python-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4096,7 +4096,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\r\n \"name\": \"Functions-Flex-Java-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-8wks\",\r\n \"AppId\": \"a21649a5-21a9-4a06-9682-73121bf51140\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\r\n \"ConnectionString\": \"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\",\r\n \"Name\": \"Functions-Flex-Java-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:29:21.9297403+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-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-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\": \"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\r\n \"name\": \"Functions-Flex-Java-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-8wks\",\r\n \"AppId\": \"a21649a5-21a9-4a06-9682-73121bf51140\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Java-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:29:21.9297403+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-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -4104,7 +4104,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks?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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsflexjava8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4274,7 +4274,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4410,7 +4410,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4501,7 +4501,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4638,7 +4638,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Java-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5291,7 +5291,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\r\n \"name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-8wks\",\r\n \"AppId\": \"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8aeec65a-58b3-4406-be83-a2af16406d60\",\r\n \"ConnectionString\": \"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\r\n \"Name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:31:32.4922476+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-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-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\": \"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\r\n \"name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-8wks\",\r\n \"AppId\": \"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8aeec65a-58b3-4406-be83-a2af16406d60\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-PowerShell-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:31:32.4922476+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-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -5299,7 +5299,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks?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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsflexpowershell8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5469,7 +5469,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5605,7 +5605,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5696,7 +5696,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5833,7 +5833,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -6486,7 +6486,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\r\n \"name\": \"Functions-Flex-Custom-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-8wks\",\r\n \"AppId\": \"67f62be7-d4fc-49c8-828e-07308a6f924e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"246f07f9-7f47-4fe4-b736-28824b450760\",\r\n \"ConnectionString\": \"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\",\r\n \"Name\": \"Functions-Flex-Custom-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:33:45.854673+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-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-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\": \"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\r\n \"name\": \"Functions-Flex-Custom-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-8wks\",\r\n \"AppId\": \"67f62be7-d4fc-49c8-828e-07308a6f924e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"246f07f9-7f47-4fe4-b736-28824b450760\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Custom-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:33:45.854673+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-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -6494,7 +6494,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks?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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexappcustomsa8wks.blob.core.windows.net/app-package-functionsflexcustom8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6664,7 +6664,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -6800,7 +6800,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -6891,7 +6891,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -7028,7 +7028,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=ldMf+L4J7LZl5rTuKmdIRG722z6oif6BaGJtNpzN40rsoB/5rnBjUmn4bSD7/E7EnrsXhACX/6As+AStOTRujQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Flex-Custom-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappcustomsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -7681,7 +7681,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\r\n \"name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"AppId\": \"33228ef1-a6e4-4064-9040-cbaccec606f9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dc1718c9-6151-4735-9017-ed993ce3056c\",\r\n \"ConnectionString\": \"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:36:00.7780637+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-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-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\": \"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\r\n \"name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"AppId\": \"33228ef1-a6e4-4064-9040-cbaccec606f9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dc1718c9-6151-4735-9017-ed993ce3056c\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:36:00.7780637+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-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -7689,7 +7689,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks?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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexapppythonsa8wks.blob.core.windows.net/app-package-functionspythonflexscaling8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7859,7 +7859,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -7995,7 +7995,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -8086,7 +8086,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -8223,7 +8223,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=952nnTyRjPiZPYy8uKBcyl2tDj1H7O7yJmjJf690vVd+v2YD1Vs8fagveu+VFKUE8Rh5Z7etwaqH+ASt+W3HVw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppythonsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -8789,7 +8789,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\r\n \"name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"AppId\": \"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"72f873d8-e77f-4cd1-b81b-333b88113567\",\r\n \"ConnectionString\": \"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\r\n \"Name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:38:16.9557851+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-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-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\": \"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\r\n \"name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"AppId\": \"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"72f873d8-e77f-4cd1-b81b-333b88113567\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-SystemIdentity-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:38:16.9557851+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-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -8797,7 +8797,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks?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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "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://flexappnodesa8wks.blob.core.windows.net/app-package-functionsnodesystemidentity8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8967,7 +8967,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9103,7 +9103,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9194,7 +9194,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9331,7 +9331,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=7IsPFvcMaMeDC2uLKX01+FSjBK5PLt92nNB1BCxtcroQKUSUSotc4cVxuoHg42Bx1vcdxFRdABBn+AStJ4iQvQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappnodesa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9940,7 +9940,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"AppId\": \"6496531f-759a-4e89-9157-c2dd51765c50\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\r\n \"ConnectionString\": \"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:40:27.9512322+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-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-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\": \"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"AppId\": \"6496531f-759a-4e89-9157-c2dd51765c50\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:40:27.9512322+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-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -9948,7 +9948,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks?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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa8wks.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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"\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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\": {\r\n }\r\n }\r\n }\r\n}", + "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-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa8wks.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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-8wks/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-8wks\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -10118,7 +10118,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10254,7 +10254,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10345,7 +10345,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10482,7 +10482,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -11135,7 +11135,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\r\n \"name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-8wks\",\r\n \"AppId\": \"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\r\n \"ConnectionString\": \"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\r\n \"Name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:42:44.0467968+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-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-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\": \"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\r\n \"name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-8wks\",\r\n \"AppId\": \"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PS-CustomConfig-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:42:44.0467968+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-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -11143,7 +11143,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Project\": \"FlexConsumption\",\r\n \"Environment\": \"Test\",\r\n \"Owner\": \"PowerShell\"\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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\"\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}", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Project\": \"FlexConsumption\",\r\n \"Environment\": \"Test\",\r\n \"Owner\": \"PowerShell\"\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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionspscustomconfig8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"CustomSetting2\",\r\n \"value\": \"Value2\"\r\n },\r\n {\r\n \"name\": \"CustomSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -11313,7 +11313,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -11404,7 +11404,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -11540,7 +11540,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -11677,7 +11677,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Environment\":\"Test\",\"Owner\":\"PowerShell\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -12296,7 +12296,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks?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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexappjavasa8wks.blob.core.windows.net/app-package-functionsjavanoappinsights8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -12466,7 +12466,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -12557,7 +12557,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -12693,7 +12693,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -12830,7 +12830,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=umV/QfL0FbO046mghtZvE1ZVUHzURum1r9CwMeH1fZ0dRw31/QXglBr6/JlDSXiAZsh7oSlLQeCi+ASt2Z+1hA==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexappjavasa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -13830,7 +13830,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"2e00aeba-0000-0300-0000-6917b6a60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-1atxo6\",\"AppId\":\"e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"53405245-5093-44e0-a9cc-cd426c74b85c\",\"ConnectionString\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Name\":\"Functions-PowerShell-74-1atxo6\",\"CreationDate\":\"2025-11-14T23:09:20.4769102+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-1atxo6_e667224e-63d9-4b58-bb3e-e4bea5f2998e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-1atxo6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0068c6-0000-0300-0000-6917b6f60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-fh9m0d\",\"AppId\":\"0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"36242a54-f281-419e-b84a-a18b99e16280\",\"ConnectionString\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Name\":\"Functions-Node-22-fh9m0d\",\"CreationDate\":\"2025-11-14T23:10:40.9294639+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-fh9m0d_0c3e3e43-71c6-4f32-8603-6f0551f7cdf7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-fh9m0d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0039cf-0000-0300-0000-6917b7310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-du5asv\",\"AppId\":\"1ec6fdef-6987-470b-8410-eea09542cb04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e62ada86-7580-495a-8077-5b5a93de6f32\",\"ConnectionString\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\",\"Name\":\"Functions-DotNet-8-du5asv\",\"CreationDate\":\"2025-11-14T23:11:41.0752283+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-du5asv_1ec6fdef-6987-470b-8410-eea09542cb04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-du5asv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0083da-0000-0300-0000-6917b7860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-w61tuq\",\"AppId\":\"e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"279763ee-9e4a-474e-a4ce-8ee813ab10e6\",\"ConnectionString\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Name\":\"Functions-Python-312-w61tuq\",\"CreationDate\":\"2025-11-14T23:13:05.5690645+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-w61tuq_e07f516a-6724-4c46-8f4a-555cb3096b98_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-w61tuq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e005fe4-0000-0300-0000-6917b7cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"AppId\":\"7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"ConnectionString\":\"InstrumentationKey=f45b116a-0da0-498b-9bda-9d9ebe6bf3de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"CreationDate\":\"2025-11-14T23:14:15.0740314+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-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2f007d1a-0000-0300-0000-6917b94c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"AppId\":\"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\"ConnectionString\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"CreationDate\":\"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-8wks\",\"AppId\":\"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\"ConnectionString\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Name\":\"Functions-Flex-DotNetIsolated-8wks\",\"CreationDate\":\"2025-11-14T23:22:43.5766283+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-8wks\",\"AppId\":\"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\"ConnectionString\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Name\":\"Functions-Flex-Node-8wks\",\"CreationDate\":\"2025-11-14T23:24:55.9628013+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-8wks\",\"AppId\":\"0fd5bb15-8254-462a-b124-f01de57491fa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6646e0da-7c3a-4442-b697-9e3161408467\",\"ConnectionString\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\",\"Name\":\"Functions-Flex-Python-8wks\",\"CreationDate\":\"2025-11-14T23:27:10.9745115+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-8wks\",\"AppId\":\"a21649a5-21a9-4a06-9682-73121bf51140\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\"ConnectionString\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\",\"Name\":\"Functions-Flex-Java-8wks\",\"CreationDate\":\"2025-11-14T23:29:21.9297403+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-8wks\",\"AppId\":\"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8aeec65a-58b3-4406-be83-a2af16406d60\",\"ConnectionString\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Name\":\"Functions-Flex-PowerShell-8wks\",\"CreationDate\":\"2025-11-14T23:31:32.4922476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-8wks\",\"AppId\":\"67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"246f07f9-7f47-4fe4-b736-28824b450760\",\"ConnectionString\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Name\":\"Functions-Flex-Custom-8wks\",\"CreationDate\":\"2025-11-14T23:33:45.854673+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-8wks\",\"AppId\":\"33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dc1718c9-6151-4735-9017-ed993ce3056c\",\"ConnectionString\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Name\":\"Functions-Python-Flex-Scaling-8wks\",\"CreationDate\":\"2025-11-14T23:36:00.7780637+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-8wks\",\"AppId\":\"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72f873d8-e77f-4cd1-b81b-333b88113567\",\"ConnectionString\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Name\":\"Functions-Node-SystemIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:38:16.9557851+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"AppId\":\"6496531f-759a-4e89-9157-c2dd51765c50\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\"ConnectionString\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:40:27.9512322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-8wks\",\"AppId\":\"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\"ConnectionString\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Name\":\"Functions-PS-CustomConfig-8wks\",\"CreationDate\":\"2025-11-14T23:42:44.0467968+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"2e00aeba-0000-0300-0000-6917b6a60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-1atxo6\",\"AppId\":\"e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"53405245-5093-44e0-a9cc-cd426c74b85c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-1atxo6\",\"CreationDate\":\"2025-11-14T23:09:20.4769102+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-1atxo6_e667224e-63d9-4b58-bb3e-e4bea5f2998e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-1atxo6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0068c6-0000-0300-0000-6917b6f60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-fh9m0d\",\"AppId\":\"0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"36242a54-f281-419e-b84a-a18b99e16280\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-fh9m0d\",\"CreationDate\":\"2025-11-14T23:10:40.9294639+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-fh9m0d_0c3e3e43-71c6-4f32-8603-6f0551f7cdf7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-fh9m0d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0039cf-0000-0300-0000-6917b7310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-du5asv\",\"AppId\":\"1ec6fdef-6987-470b-8410-eea09542cb04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e62ada86-7580-495a-8077-5b5a93de6f32\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-du5asv\",\"CreationDate\":\"2025-11-14T23:11:41.0752283+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-du5asv_1ec6fdef-6987-470b-8410-eea09542cb04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-du5asv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0083da-0000-0300-0000-6917b7860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-w61tuq\",\"AppId\":\"e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"279763ee-9e4a-474e-a4ce-8ee813ab10e6\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-w61tuq\",\"CreationDate\":\"2025-11-14T23:13:05.5690645+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-w61tuq_e07f516a-6724-4c46-8f4a-555cb3096b98_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-w61tuq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e005fe4-0000-0300-0000-6917b7cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"AppId\":\"7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"CreationDate\":\"2025-11-14T23:14:15.0740314+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-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2f007d1a-0000-0300-0000-6917b94c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"AppId\":\"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"CreationDate\":\"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-8wks\",\"AppId\":\"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-DotNetIsolated-8wks\",\"CreationDate\":\"2025-11-14T23:22:43.5766283+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-8wks\",\"AppId\":\"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Node-8wks\",\"CreationDate\":\"2025-11-14T23:24:55.9628013+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-8wks\",\"AppId\":\"0fd5bb15-8254-462a-b124-f01de57491fa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6646e0da-7c3a-4442-b697-9e3161408467\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Python-8wks\",\"CreationDate\":\"2025-11-14T23:27:10.9745115+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-8wks\",\"AppId\":\"a21649a5-21a9-4a06-9682-73121bf51140\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Java-8wks\",\"CreationDate\":\"2025-11-14T23:29:21.9297403+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-8wks\",\"AppId\":\"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8aeec65a-58b3-4406-be83-a2af16406d60\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-PowerShell-8wks\",\"CreationDate\":\"2025-11-14T23:31:32.4922476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-8wks\",\"AppId\":\"67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"246f07f9-7f47-4fe4-b736-28824b450760\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Custom-8wks\",\"CreationDate\":\"2025-11-14T23:33:45.854673+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-8wks\",\"AppId\":\"33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dc1718c9-6151-4735-9017-ed993ce3056c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-Flex-Scaling-8wks\",\"CreationDate\":\"2025-11-14T23:36:00.7780637+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-8wks\",\"AppId\":\"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72f873d8-e77f-4cd1-b81b-333b88113567\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-SystemIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:38:16.9557851+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"AppId\":\"6496531f-759a-4e89-9157-c2dd51765c50\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:40:27.9512322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-8wks\",\"AppId\":\"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PS-CustomConfig-8wks\",\"CreationDate\":\"2025-11-14T23:42:44.0467968+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", "isContentBase64": false } }, @@ -14519,7 +14519,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"9c03628b-0000-0200-0000-6917bfbe0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Remove-FlexPlan-8wks\",\r\n \"name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"AppId\": \"3b443da0-e327-4130-9731-2a9a6a063cbb\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e\",\r\n \"ConnectionString\": \"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\",\r\n \"Name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:48:03.2101122+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-8wks_3b443da0-e327-4130-9731-2a9a6a063cbb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-8wks-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\": \"\\\"9c03628b-0000-0200-0000-6917bfbe0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Remove-FlexPlan-8wks\",\r\n \"name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"AppId\": \"3b443da0-e327-4130-9731-2a9a6a063cbb\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Remove-FlexPlan-8wks\",\r\n \"CreationDate\": \"2025-11-14T23:48:03.2101122+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-8wks_3b443da0-e327-4130-9731-2a9a6a063cbb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-8wks-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -14527,7 +14527,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks?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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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://flexapppowershellsa8wks.blob.core.windows.net/app-package-functionsremoveflexplan8wks-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-8wks/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG8wks-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=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -14697,7 +14697,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -14879,7 +14879,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=Mcog13M+CPFpHv+jtRg/I350aOP6zczxnyTq1Fsyk9PckUfaUxAhEEv1wg5mxzXCn7ya7REAUDNo+AStYN97cQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-8wks/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=flexapppowershellsa8wks;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -15104,4 +15104,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 18bb96a41084..9d759bcd6655 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json @@ -479,7 +479,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30003e08-0000-0300-0000-6917c0250000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-CustomImage-fbul4mq5e0\",\r\n \"name\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"AppId\": \"b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dab7d157-c584-47fb-b28a-55b4bfbb1f8c\",\r\n \"ConnectionString\": \"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\r\n \"Name\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"CreationDate\": \"2025-11-14T23:49:51.5267214+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-fbul4mq5e0_b9c165d8-9fe2-4e81-9efb-511bd51fa2d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-fbul4mq5e0-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\": \"\\\"30003e08-0000-0300-0000-6917c0250000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-CustomImage-fbul4mq5e0\",\r\n \"name\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"AppId\": \"b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"dab7d157-c584-47fb-b28a-55b4bfbb1f8c\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomImage-fbul4mq5e0\",\r\n \"CreationDate\": \"2025-11-14T23:49:51.5267214+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-fbul4mq5e0_b9c165d8-9fe2-4e81-9efb-511bd51fa2d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-fbul4mq5e0-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -487,7 +487,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-fbul4mq5e0\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-fbul4mq5e0\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -657,7 +657,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -794,7 +794,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -931,7 +931,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-CustomImage-fbul4mq5e0/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-fbul4mq5e0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2545,7 +2545,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30003e14-0000-0300-0000-6917c0830000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Python-kbt35oepnm\",\r\n \"name\": \"Functions-Python-kbt35oepnm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-kbt35oepnm\",\r\n \"AppId\": \"cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9a08513b-9f3a-4de1-9110-97f554e1b81f\",\r\n \"ConnectionString\": \"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\r\n \"Name\": \"Functions-Python-kbt35oepnm\",\r\n \"CreationDate\": \"2025-11-14T23:51:11.7052492+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-kbt35oepnm_cd104da8-da7e-46c9-88dc-c16ff0b911e3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-kbt35oepnm-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\": \"\\\"30003e14-0000-0300-0000-6917c0830000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Python-kbt35oepnm\",\r\n \"name\": \"Functions-Python-kbt35oepnm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-kbt35oepnm\",\r\n \"AppId\": \"cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9a08513b-9f3a-4de1-9110-97f554e1b81f\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-kbt35oepnm\",\r\n \"CreationDate\": \"2025-11-14T23:51:11.7052492+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-kbt35oepnm_cd104da8-da7e-46c9-88dc-c16ff0b911e3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-kbt35oepnm-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -2553,7 +2553,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm?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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-kbt35oepnm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "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-pkqf4d/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-ei67oa\",\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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-kbt35oepnm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2723,7 +2723,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2814,7 +2814,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2905,7 +2905,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3042,7 +3042,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Python-kbt35oepnm/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-kbt35oepnm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3395,7 +3395,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30001b1d-0000-0300-0000-6917c0cc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"983a9748-76c5-4f91-bee1-5844312f2f2b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"14318ae2-abd9-4e03-a2f0-b97dee371cc7\",\r\n \"ConnectionString\": \"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:52:37.7229979+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-0d6xycl2n4_983a9748-76c5-4f91-bee1-5844312f2f2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-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\": \"\\\"30001b1d-0000-0300-0000-6917c0cc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"983a9748-76c5-4f91-bee1-5844312f2f2b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"14318ae2-abd9-4e03-a2f0-b97dee371cc7\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:52:37.7229979+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-0d6xycl2n4_983a9748-76c5-4f91-bee1-5844312f2f2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -3403,7 +3403,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\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 \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting2\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -3573,7 +3573,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -3664,7 +3664,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -3755,7 +3755,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -3892,7 +3892,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, @@ -4513,7 +4513,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30007228-0000-0300-0000-6917c12e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\r\n \"ConnectionString\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-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\": \"\\\"30007228-0000-0300-0000-6917c12e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -4521,7 +4521,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"\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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4691,7 +4691,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4828,7 +4828,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4965,7 +4965,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5586,7 +5586,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30009033-0000-0300-0000-6917c1870000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\r\n \"ConnectionString\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-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\": \"\\\"30009033-0000-0300-0000-6917c1870000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\r\n \"name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"AppId\": \"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-0d6xycl2n4\",\r\n \"CreationDate\": \"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -5594,7 +5594,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5764,7 +5764,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, @@ -5855,7 +5855,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, @@ -5946,7 +5946,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, @@ -6083,7 +6083,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, @@ -6477,7 +6477,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3000d93e-0000-0300-0000-6917c1e80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-DotNet-k691hsj4cf\",\r\n \"name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-k691hsj4cf\",\r\n \"AppId\": \"813fb594-7633-494f-83ae-4d8aeacffe06\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0a9d18f6-4326-48ef-8f02-14db1b1e8b6b\",\r\n \"ConnectionString\": \"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\",\r\n \"Name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"CreationDate\": \"2025-11-14T23:57:24.5180411+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-k691hsj4cf_813fb594-7633-494f-83ae-4d8aeacffe06_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-k691hsj4cf-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\": \"\\\"3000d93e-0000-0300-0000-6917c1e80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-DotNet-k691hsj4cf\",\r\n \"name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-k691hsj4cf\",\r\n \"AppId\": \"813fb594-7633-494f-83ae-4d8aeacffe06\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0a9d18f6-4326-48ef-8f02-14db1b1e8b6b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-k691hsj4cf\",\r\n \"CreationDate\": \"2025-11-14T23:57:24.5180411+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-k691hsj4cf_813fb594-7633-494f-83ae-4d8aeacffe06_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-k691hsj4cf-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -6485,7 +6485,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-k691hsj4cf\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-k691hsj4cf\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6655,7 +6655,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -6792,7 +6792,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -6929,7 +6929,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-DotNet-k691hsj4cf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-k691hsj4cf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -7516,7 +7516,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0d6xycl2n4\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7686,7 +7686,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -7777,7 +7777,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -7868,7 +7868,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -8005,7 +8005,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShellTest-0d6xycl2n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0d6xycl2n4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -8358,7 +8358,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30004159-0000-0300-0000-6917c2ae0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Java-l6hz0unsba\",\r\n \"name\": \"Functions-Java-l6hz0unsba\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-l6hz0unsba\",\r\n \"AppId\": \"6b9952e2-bfa7-4603-bd71-774073340bf3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f944282d-33a8-4add-8c95-407d930a05aa\",\r\n \"ConnectionString\": \"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\",\r\n \"Name\": \"Functions-Java-l6hz0unsba\",\r\n \"CreationDate\": \"2025-11-15T00:00:41.738444+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-l6hz0unsba_6b9952e2-bfa7-4603-bd71-774073340bf3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-l6hz0unsba-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\": \"\\\"30004159-0000-0300-0000-6917c2ae0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Java-l6hz0unsba\",\r\n \"name\": \"Functions-Java-l6hz0unsba\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-l6hz0unsba\",\r\n \"AppId\": \"6b9952e2-bfa7-4603-bd71-774073340bf3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f944282d-33a8-4add-8c95-407d930a05aa\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Java-l6hz0unsba\",\r\n \"CreationDate\": \"2025-11-15T00:00:41.738444+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-l6hz0unsba_6b9952e2-bfa7-4603-bd71-774073340bf3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-l6hz0unsba-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -8366,7 +8366,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba?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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-l6hz0unsba\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-l6hz0unsba\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8536,7 +8536,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -8627,7 +8627,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -8718,7 +8718,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -8855,7 +8855,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Java-l6hz0unsba/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-l6hz0unsba\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9208,7 +9208,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30003c63-0000-0300-0000-6917c2fe0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Node-8b1039t6ur\",\r\n \"name\": \"Functions-Node-8b1039t6ur\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-8b1039t6ur\",\r\n \"AppId\": \"662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5\",\r\n \"ConnectionString\": \"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\r\n \"Name\": \"Functions-Node-8b1039t6ur\",\r\n \"CreationDate\": \"2025-11-15T00:02:00.6987807+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-8b1039t6ur_662d84aa-a98e-4dbf-869e-8efad7a8e1b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-8b1039t6ur-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\": \"\\\"30003c63-0000-0300-0000-6917c2fe0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Node-8b1039t6ur\",\r\n \"name\": \"Functions-Node-8b1039t6ur\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-8b1039t6ur\",\r\n \"AppId\": \"662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-8b1039t6ur\",\r\n \"CreationDate\": \"2025-11-15T00:02:00.6987807+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-8b1039t6ur_662d84aa-a98e-4dbf-869e-8efad7a8e1b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-8b1039t6ur-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -9216,7 +9216,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur?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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-8b1039t6ur\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-8b1039t6ur\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9386,7 +9386,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9477,7 +9477,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9568,7 +9568,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -9705,7 +9705,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Node-8b1039t6ur/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-8b1039t6ur\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10371,7 +10371,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30006c6d-0000-0300-0000-6917c34f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"AppId\": \"e8e92f95-a7da-4018-9057-bc9a6e1490db\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"54b9b2d9-4424-43ab-9077-c29c4fca9160\",\r\n \"ConnectionString\": \"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\",\r\n \"Name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"CreationDate\": \"2025-11-15T00:03:23.1804035+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-isolatedhfo7435u8j_e8e92f95-a7da-4018-9057-bc9a6e1490db_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedhfo7435u8j-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\": \"\\\"30006c6d-0000-0300-0000-6917c34f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"AppId\": \"e8e92f95-a7da-4018-9057-bc9a6e1490db\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"54b9b2d9-4424-43ab-9077-c29c4fca9160\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-Isolatedhfo7435u8j\",\r\n \"CreationDate\": \"2025-11-15T00:03:23.1804035+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-isolatedhfo7435u8j_e8e92f95-a7da-4018-9057-bc9a6e1490db_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedhfo7435u8j-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -10379,7 +10379,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolatedhfo7435u8j\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolatedhfo7435u8j\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -10549,7 +10549,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10640,7 +10640,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10731,7 +10731,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -10868,7 +10868,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedhfo7435u8j/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedhfo7435u8j\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -11579,7 +11579,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30005779-0000-0300-0000-6917c3ad0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-CustomHandler325nikcosm\",\r\n \"name\": \"Functions-CustomHandler325nikcosm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandler325nikcosm\",\r\n \"AppId\": \"6cb10d77-b206-4054-875d-5578f21336b7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77\",\r\n \"ConnectionString\": \"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\",\r\n \"Name\": \"Functions-CustomHandler325nikcosm\",\r\n \"CreationDate\": \"2025-11-15T00:04:56.5740499+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-customhandler325nikcosm_6cb10d77-b206-4054-875d-5578f21336b7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandler325nikcosm-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\": \"\\\"30005779-0000-0300-0000-6917c3ad0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-CustomHandler325nikcosm\",\r\n \"name\": \"Functions-CustomHandler325nikcosm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandler325nikcosm\",\r\n \"AppId\": \"6cb10d77-b206-4054-875d-5578f21336b7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomHandler325nikcosm\",\r\n \"CreationDate\": \"2025-11-15T00:04:56.5740499+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-customhandler325nikcosm_6cb10d77-b206-4054-875d-5578f21336b7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandler325nikcosm-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -11587,7 +11587,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandler325nikcosm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandler325nikcosm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -11757,7 +11757,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -11848,7 +11848,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -11939,7 +11939,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -12076,7 +12076,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-CustomHandler325nikcosm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandler325nikcosm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -12299,4 +12299,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} 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 ee25a1a24f5e..069113b7e24c 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 @@ -569,7 +569,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3000ec8a-0000-0300-0000-6917c43f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"AppId\": \"166fb684-6993-41b0-a11d-edb087c69973\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bb52893b-0083-49c6-9e99-39e2358c0905\",\r\n \"ConnectionString\": \"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\r\n \"Name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"CreationDate\": \"2025-11-15T00:07:22.1750446+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-fdgw6nz0r1_166fb684-6993-41b0-a11d-edb087c69973_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-fdgw6nz0r1-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\": \"\\\"3000ec8a-0000-0300-0000-6917c43f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"AppId\": \"166fb684-6993-41b0-a11d-edb087c69973\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bb52893b-0083-49c6-9e99-39e2358c0905\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest2-fdgw6nz0r1\",\r\n \"CreationDate\": \"2025-11-15T00:07:22.1750446+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-fdgw6nz0r1_166fb684-6993-41b0-a11d-edb087c69973_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-fdgw6nz0r1-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -577,7 +577,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-fdgw6nz0r1\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-fdgw6nz0r1\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -747,7 +747,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -884,7 +884,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -975,7 +975,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -983,7 +983,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-fdgw6nz0r1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-fdgw6nz0r1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1153,7 +1153,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -1290,7 +1290,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-fdgw6nz0r1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-fdgw6nz0r1\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -2130,7 +2130,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"3000a99b-0000-0300-0000-6917c4c20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"AppId\": \"5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0b410fca-9b3b-412e-8fce-f7c5eb94a422\",\r\n \"ConnectionString\": \"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\r\n \"Name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"CreationDate\": \"2025-11-15T00:09:32.9413769+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-wbuk7grly4_5ae0ffcd-7e7a-4681-840c-63a311aa22dc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-wbuk7grly4-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\": \"\\\"3000a99b-0000-0300-0000-6917c4c20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"AppId\": \"5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0b410fca-9b3b-412e-8fce-f7c5eb94a422\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest3-wbuk7grly4\",\r\n \"CreationDate\": \"2025-11-15T00:09:32.9413769+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-wbuk7grly4_5ae0ffcd-7e7a-4681-840c-63a311aa22dc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-wbuk7grly4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -2138,7 +2138,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-wbuk7grly4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-wbuk7grly4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2308,7 +2308,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2445,7 +2445,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2536,7 +2536,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2544,7 +2544,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-wbuk7grly4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-qnrsj3\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-wbuk7grly4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2714,7 +2714,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -2851,7 +2851,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-wbuk7grly4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-wbuk7grly4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -3914,7 +3914,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"30005bb0-0000-0300-0000-6917c5660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"AppId\": \"30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d30b5173-58dd-434e-a1bd-f659bfc9254b\",\r\n \"ConnectionString\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\r\n \"Name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"CreationDate\": \"2025-11-15T00:12:18.4919987+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-195kucxe6q_30ef05f9-a5c0-46ae-a803-b842e50d91b4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-195kucxe6q-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\": \"\\\"30005bb0-0000-0300-0000-6917c5660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"AppId\": \"30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d30b5173-58dd-434e-a1bd-f659bfc9254b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest5-195kucxe6q\",\r\n \"CreationDate\": \"2025-11-15T00:12:18.4919987+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-195kucxe6q_30ef05f9-a5c0-46ae-a803-b842e50d91b4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-195kucxe6q-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -3922,7 +3922,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-rbyjn8\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4092,7 +4092,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4452,7 +4452,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5127,7 +5127,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5135,7 +5135,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5305,7 +5305,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -5442,7 +5442,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -5533,7 +5533,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -5541,7 +5541,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\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}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5711,7 +5711,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -5848,7 +5848,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -5939,7 +5939,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\"}}", "isContentBase64": false } }, @@ -5983,7 +5983,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"2e00aeba-0000-0300-0000-6917b6a60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-1atxo6\",\"AppId\":\"e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"53405245-5093-44e0-a9cc-cd426c74b85c\",\"ConnectionString\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Name\":\"Functions-PowerShell-74-1atxo6\",\"CreationDate\":\"2025-11-14T23:09:20.4769102+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-1atxo6_e667224e-63d9-4b58-bb3e-e4bea5f2998e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-1atxo6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0068c6-0000-0300-0000-6917b6f60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-fh9m0d\",\"AppId\":\"0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"36242a54-f281-419e-b84a-a18b99e16280\",\"ConnectionString\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Name\":\"Functions-Node-22-fh9m0d\",\"CreationDate\":\"2025-11-14T23:10:40.9294639+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-fh9m0d_0c3e3e43-71c6-4f32-8603-6f0551f7cdf7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-fh9m0d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0039cf-0000-0300-0000-6917b7310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-du5asv\",\"AppId\":\"1ec6fdef-6987-470b-8410-eea09542cb04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e62ada86-7580-495a-8077-5b5a93de6f32\",\"ConnectionString\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\",\"Name\":\"Functions-DotNet-8-du5asv\",\"CreationDate\":\"2025-11-14T23:11:41.0752283+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-du5asv_1ec6fdef-6987-470b-8410-eea09542cb04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-du5asv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0083da-0000-0300-0000-6917b7860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-w61tuq\",\"AppId\":\"e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"279763ee-9e4a-474e-a4ce-8ee813ab10e6\",\"ConnectionString\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Name\":\"Functions-Python-312-w61tuq\",\"CreationDate\":\"2025-11-14T23:13:05.5690645+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-w61tuq_e07f516a-6724-4c46-8f4a-555cb3096b98_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-w61tuq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e005fe4-0000-0300-0000-6917b7cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"AppId\":\"7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"ConnectionString\":\"InstrumentationKey=f45b116a-0da0-498b-9bda-9d9ebe6bf3de;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"CreationDate\":\"2025-11-14T23:14:15.0740314+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-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2f007d1a-0000-0300-0000-6917b94c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"AppId\":\"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\"ConnectionString\":\"InstrumentationKey=eb9685eb-a825-43e3-8b7d-e9cb34acbd03;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"CreationDate\":\"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003e08-0000-0300-0000-6917c0250000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-fbul4mq5e0\",\"AppId\":\"b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dab7d157-c584-47fb-b28a-55b4bfbb1f8c\",\"ConnectionString\":\"InstrumentationKey=dab7d157-c584-47fb-b28a-55b4bfbb1f8c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\"Name\":\"Functions-CustomImage-fbul4mq5e0\",\"CreationDate\":\"2025-11-14T23:49:51.5267214+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-fbul4mq5e0_b9c165d8-9fe2-4e81-9efb-511bd51fa2d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-fbul4mq5e0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003e14-0000-0300-0000-6917c0830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-kbt35oepnm\",\"AppId\":\"cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9a08513b-9f3a-4de1-9110-97f554e1b81f\",\"ConnectionString\":\"InstrumentationKey=9a08513b-9f3a-4de1-9110-97f554e1b81f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\"Name\":\"Functions-Python-kbt35oepnm\",\"CreationDate\":\"2025-11-14T23:51:11.7052492+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-kbt35oepnm_cd104da8-da7e-46c9-88dc-c16ff0b911e3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-kbt35oepnm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30001b1d-0000-0300-0000-6917c0cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"AppId\":\"983a9748-76c5-4f91-bee1-5844312f2f2b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"14318ae2-abd9-4e03-a2f0-b97dee371cc7\",\"ConnectionString\":\"InstrumentationKey=14318ae2-abd9-4e03-a2f0-b97dee371cc7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=983a9748-76c5-4f91-bee1-5844312f2f2b\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"CreationDate\":\"2025-11-14T23:52:37.7229979+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-0d6xycl2n4_983a9748-76c5-4f91-bee1-5844312f2f2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30009033-0000-0300-0000-6917c1870000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"AppId\":\"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\"ConnectionString\":\"InstrumentationKey=b24d75d4-0c3f-47af-b1a7-2691b7d449f5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"CreationDate\":\"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000d93e-0000-0300-0000-6917c1e80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-k691hsj4cf\",\"AppId\":\"813fb594-7633-494f-83ae-4d8aeacffe06\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0a9d18f6-4326-48ef-8f02-14db1b1e8b6b\",\"ConnectionString\":\"InstrumentationKey=0a9d18f6-4326-48ef-8f02-14db1b1e8b6b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=813fb594-7633-494f-83ae-4d8aeacffe06\",\"Name\":\"Functions-DotNet-k691hsj4cf\",\"CreationDate\":\"2025-11-14T23:57:24.5180411+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-k691hsj4cf_813fb594-7633-494f-83ae-4d8aeacffe06_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-k691hsj4cf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30004159-0000-0300-0000-6917c2ae0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-l6hz0unsba\",\"AppId\":\"6b9952e2-bfa7-4603-bd71-774073340bf3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f944282d-33a8-4add-8c95-407d930a05aa\",\"ConnectionString\":\"InstrumentationKey=f944282d-33a8-4add-8c95-407d930a05aa;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6b9952e2-bfa7-4603-bd71-774073340bf3\",\"Name\":\"Functions-Java-l6hz0unsba\",\"CreationDate\":\"2025-11-15T00:00:41.738444+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-l6hz0unsba_6b9952e2-bfa7-4603-bd71-774073340bf3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-l6hz0unsba-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003c63-0000-0300-0000-6917c2fe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-8b1039t6ur\",\"AppId\":\"662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5\",\"ConnectionString\":\"InstrumentationKey=90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\"Name\":\"Functions-Node-8b1039t6ur\",\"CreationDate\":\"2025-11-15T00:02:00.6987807+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-8b1039t6ur_662d84aa-a98e-4dbf-869e-8efad7a8e1b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-8b1039t6ur-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30006c6d-0000-0300-0000-6917c34f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"AppId\":\"e8e92f95-a7da-4018-9057-bc9a6e1490db\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"54b9b2d9-4424-43ab-9077-c29c4fca9160\",\"ConnectionString\":\"InstrumentationKey=54b9b2d9-4424-43ab-9077-c29c4fca9160;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e8e92f95-a7da-4018-9057-bc9a6e1490db\",\"Name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"CreationDate\":\"2025-11-15T00:03:23.1804035+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-isolatedhfo7435u8j_e8e92f95-a7da-4018-9057-bc9a6e1490db_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedhfo7435u8j-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30005779-0000-0300-0000-6917c3ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandler325nikcosm\",\"AppId\":\"6cb10d77-b206-4054-875d-5578f21336b7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77\",\"ConnectionString\":\"InstrumentationKey=cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6cb10d77-b206-4054-875d-5578f21336b7\",\"Name\":\"Functions-CustomHandler325nikcosm\",\"CreationDate\":\"2025-11-15T00:04:56.5740499+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandler325nikcosm_6cb10d77-b206-4054-875d-5578f21336b7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandler325nikcosm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000018e-0000-0300-0000-6917c4560000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"AppId\":\"166fb684-6993-41b0-a11d-edb087c69973\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bb52893b-0083-49c6-9e99-39e2358c0905\",\"ConnectionString\":\"InstrumentationKey=bb52893b-0083-49c6-9e99-39e2358c0905;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=166fb684-6993-41b0-a11d-edb087c69973\",\"Name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"CreationDate\":\"2025-11-15T00:07:22.1750446+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-fdgw6nz0r1_166fb684-6993-41b0-a11d-edb087c69973_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-fdgw6nz0r1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000a99b-0000-0300-0000-6917c4c20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"AppId\":\"5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0b410fca-9b3b-412e-8fce-f7c5eb94a422\",\"ConnectionString\":\"InstrumentationKey=0b410fca-9b3b-412e-8fce-f7c5eb94a422;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"Name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"CreationDate\":\"2025-11-15T00:09:32.9413769+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-wbuk7grly4_5ae0ffcd-7e7a-4681-840c-63a311aa22dc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-wbuk7grly4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000dab3-0000-0300-0000-6917c5820000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"AppId\":\"30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d30b5173-58dd-434e-a1bd-f659bfc9254b\",\"ConnectionString\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"Name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"CreationDate\":\"2025-11-15T00:12:18.4919987+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-195kucxe6q_30ef05f9-a5c0-46ae-a803-b842e50d91b4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-195kucxe6q-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-8wks\",\"AppId\":\"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\"ConnectionString\":\"InstrumentationKey=3a2b58f1-7b10-4558-9b57-d3a7bb67b70c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Name\":\"Functions-Flex-DotNetIsolated-8wks\",\"CreationDate\":\"2025-11-14T23:22:43.5766283+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-8wks\",\"AppId\":\"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\"ConnectionString\":\"InstrumentationKey=97b0cf9c-4267-4e5d-b09f-a3fdfac04d84;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Name\":\"Functions-Flex-Node-8wks\",\"CreationDate\":\"2025-11-14T23:24:55.9628013+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-8wks\",\"AppId\":\"0fd5bb15-8254-462a-b124-f01de57491fa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6646e0da-7c3a-4442-b697-9e3161408467\",\"ConnectionString\":\"InstrumentationKey=6646e0da-7c3a-4442-b697-9e3161408467;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0fd5bb15-8254-462a-b124-f01de57491fa\",\"Name\":\"Functions-Flex-Python-8wks\",\"CreationDate\":\"2025-11-14T23:27:10.9745115+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-8wks\",\"AppId\":\"a21649a5-21a9-4a06-9682-73121bf51140\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\"ConnectionString\":\"InstrumentationKey=c6b63eba-49fa-47e6-8b2f-184584f98fda;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=a21649a5-21a9-4a06-9682-73121bf51140\",\"Name\":\"Functions-Flex-Java-8wks\",\"CreationDate\":\"2025-11-14T23:29:21.9297403+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-8wks\",\"AppId\":\"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8aeec65a-58b3-4406-be83-a2af16406d60\",\"ConnectionString\":\"InstrumentationKey=8aeec65a-58b3-4406-be83-a2af16406d60;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Name\":\"Functions-Flex-PowerShell-8wks\",\"CreationDate\":\"2025-11-14T23:31:32.4922476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-8wks\",\"AppId\":\"67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"246f07f9-7f47-4fe4-b736-28824b450760\",\"ConnectionString\":\"InstrumentationKey=246f07f9-7f47-4fe4-b736-28824b450760;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Name\":\"Functions-Flex-Custom-8wks\",\"CreationDate\":\"2025-11-14T23:33:45.854673+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-8wks\",\"AppId\":\"33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dc1718c9-6151-4735-9017-ed993ce3056c\",\"ConnectionString\":\"InstrumentationKey=dc1718c9-6151-4735-9017-ed993ce3056c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Name\":\"Functions-Python-Flex-Scaling-8wks\",\"CreationDate\":\"2025-11-14T23:36:00.7780637+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-8wks\",\"AppId\":\"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72f873d8-e77f-4cd1-b81b-333b88113567\",\"ConnectionString\":\"InstrumentationKey=72f873d8-e77f-4cd1-b81b-333b88113567;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Name\":\"Functions-Node-SystemIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:38:16.9557851+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"AppId\":\"6496531f-759a-4e89-9157-c2dd51765c50\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\"ConnectionString\":\"InstrumentationKey=7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6496531f-759a-4e89-9157-c2dd51765c50\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:40:27.9512322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-8wks\",\"AppId\":\"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\"ConnectionString\":\"InstrumentationKey=ad9ec0d5-2e6b-4def-8f4a-6338616618e3;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Name\":\"Functions-PS-CustomConfig-8wks\",\"CreationDate\":\"2025-11-14T23:42:44.0467968+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03628b-0000-0200-0000-6917bfbe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-8wks\",\"AppId\":\"3b443da0-e327-4130-9731-2a9a6a063cbb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e\",\"ConnectionString\":\"InstrumentationKey=3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=3b443da0-e327-4130-9731-2a9a6a063cbb\",\"Name\":\"Functions-Remove-FlexPlan-8wks\",\"CreationDate\":\"2025-11-14T23:48:03.2101122+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-8wks_3b443da0-e327-4130-9731-2a9a6a063cbb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"2e00aeba-0000-0300-0000-6917b6a60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShell-74-1atxo6\",\"name\":\"Functions-PowerShell-74-1atxo6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-1atxo6\",\"AppId\":\"e667224e-63d9-4b58-bb3e-e4bea5f2998e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"53405245-5093-44e0-a9cc-cd426c74b85c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-1atxo6\",\"CreationDate\":\"2025-11-14T23:09:20.4769102+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-1atxo6_e667224e-63d9-4b58-bb3e-e4bea5f2998e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-1atxo6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0068c6-0000-0300-0000-6917b6f60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Node-22-fh9m0d\",\"name\":\"Functions-Node-22-fh9m0d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-fh9m0d\",\"AppId\":\"0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"36242a54-f281-419e-b84a-a18b99e16280\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-fh9m0d\",\"CreationDate\":\"2025-11-14T23:10:40.9294639+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-fh9m0d_0c3e3e43-71c6-4f32-8603-6f0551f7cdf7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-fh9m0d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0039cf-0000-0300-0000-6917b7310000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-DotNet-8-du5asv\",\"name\":\"Functions-DotNet-8-du5asv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-du5asv\",\"AppId\":\"1ec6fdef-6987-470b-8410-eea09542cb04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e62ada86-7580-495a-8077-5b5a93de6f32\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-du5asv\",\"CreationDate\":\"2025-11-14T23:11:41.0752283+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-du5asv_1ec6fdef-6987-470b-8410-eea09542cb04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-du5asv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e0083da-0000-0300-0000-6917b7860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Python-312-w61tuq\",\"name\":\"Functions-Python-312-w61tuq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-w61tuq\",\"AppId\":\"e07f516a-6724-4c46-8f4a-555cb3096b98\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"279763ee-9e4a-474e-a4ce-8ee813ab10e6\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-w61tuq\",\"CreationDate\":\"2025-11-14T23:13:05.5690645+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-w61tuq_e07f516a-6724-4c46-8f4a-555cb3096b98_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-w61tuq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2e005fe4-0000-0300-0000-6917b7cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4-new\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"AppId\":\"7dde8f1f-b56e-417a-b544-056656fcda3e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4-new\",\"CreationDate\":\"2025-11-14T23:14:15.0740314+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-0d6xycl2n4-new_7dde8f1f-b56e-417a-b544-056656fcda3e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"2f007d1a-0000-0300-0000-6917b94c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest1-0qslu4m95n\",\"name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"AppId\":\"0a57c072-cc8f-4a10-b7a8-aa7488ad62d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"eb9685eb-a825-43e3-8b7d-e9cb34acbd03\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-0qslu4m95n\",\"CreationDate\":\"2025-11-14T23:20:24.4748975+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-0qslu4m95n_0a57c072-cc8f-4a10-b7a8-aa7488ad62d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-0qslu4m95n-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003e08-0000-0300-0000-6917c0250000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-CustomImage-fbul4mq5e0\",\"name\":\"Functions-CustomImage-fbul4mq5e0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-fbul4mq5e0\",\"AppId\":\"b9c165d8-9fe2-4e81-9efb-511bd51fa2d5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dab7d157-c584-47fb-b28a-55b4bfbb1f8c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomImage-fbul4mq5e0\",\"CreationDate\":\"2025-11-14T23:49:51.5267214+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-fbul4mq5e0_b9c165d8-9fe2-4e81-9efb-511bd51fa2d5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-fbul4mq5e0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003e14-0000-0300-0000-6917c0830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/microsoft.insights/components/Functions-Python-kbt35oepnm\",\"name\":\"Functions-Python-kbt35oepnm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-kbt35oepnm\",\"AppId\":\"cd104da8-da7e-46c9-88dc-c16ff0b911e3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"9a08513b-9f3a-4de1-9110-97f554e1b81f\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-kbt35oepnm\",\"CreationDate\":\"2025-11-14T23:51:11.7052492+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-kbt35oepnm_cd104da8-da7e-46c9-88dc-c16ff0b911e3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-kbt35oepnm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30001b1d-0000-0300-0000-6917c0cc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"AppId\":\"983a9748-76c5-4f91-bee1-5844312f2f2b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"14318ae2-abd9-4e03-a2f0-b97dee371cc7\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"CreationDate\":\"2025-11-14T23:52:37.7229979+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-0d6xycl2n4_983a9748-76c5-4f91-bee1-5844312f2f2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30009033-0000-0300-0000-6917c1870000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-PowerShellTest-0d6xycl2n4\",\"name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0d6xycl2n4\",\"AppId\":\"230d624f-bf68-4cc6-b017-4b590a4c5d95\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b24d75d4-0c3f-47af-b1a7-2691b7d449f5\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0d6xycl2n4\",\"CreationDate\":\"2025-11-14T23:54:16.3338683+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-0d6xycl2n4_230d624f-bf68-4cc6-b017-4b590a4c5d95_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0d6xycl2n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000d93e-0000-0300-0000-6917c1e80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-DotNet-k691hsj4cf\",\"name\":\"Functions-DotNet-k691hsj4cf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-k691hsj4cf\",\"AppId\":\"813fb594-7633-494f-83ae-4d8aeacffe06\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0a9d18f6-4326-48ef-8f02-14db1b1e8b6b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-k691hsj4cf\",\"CreationDate\":\"2025-11-14T23:57:24.5180411+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-k691hsj4cf_813fb594-7633-494f-83ae-4d8aeacffe06_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-k691hsj4cf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30004159-0000-0300-0000-6917c2ae0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Java-l6hz0unsba\",\"name\":\"Functions-Java-l6hz0unsba\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-l6hz0unsba\",\"AppId\":\"6b9952e2-bfa7-4603-bd71-774073340bf3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f944282d-33a8-4add-8c95-407d930a05aa\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Java-l6hz0unsba\",\"CreationDate\":\"2025-11-15T00:00:41.738444+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-l6hz0unsba_6b9952e2-bfa7-4603-bd71-774073340bf3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-l6hz0unsba-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30003c63-0000-0300-0000-6917c2fe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/microsoft.insights/components/Functions-Node-8b1039t6ur\",\"name\":\"Functions-Node-8b1039t6ur\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-8b1039t6ur\",\"AppId\":\"662d84aa-a98e-4dbf-869e-8efad7a8e1b5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"90789c23-4ce8-4fb0-b7a2-dbe6ff6150b5\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-8b1039t6ur\",\"CreationDate\":\"2025-11-15T00:02:00.6987807+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-8b1039t6ur_662d84aa-a98e-4dbf-869e-8efad7a8e1b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-8b1039t6ur-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30006c6d-0000-0300-0000-6917c34f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-DotNet-Isolatedhfo7435u8j\",\"name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"AppId\":\"e8e92f95-a7da-4018-9057-bc9a6e1490db\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"54b9b2d9-4424-43ab-9077-c29c4fca9160\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-Isolatedhfo7435u8j\",\"CreationDate\":\"2025-11-15T00:03:23.1804035+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-isolatedhfo7435u8j_e8e92f95-a7da-4018-9057-bc9a6e1490db_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedhfo7435u8j-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"30005779-0000-0300-0000-6917c3ad0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Functions-CustomHandler325nikcosm\",\"name\":\"Functions-CustomHandler325nikcosm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandler325nikcosm\",\"AppId\":\"6cb10d77-b206-4054-875d-5578f21336b7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"cfab69d9-6bd2-4e8c-98e8-f6e8f65cef77\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomHandler325nikcosm\",\"CreationDate\":\"2025-11-15T00:04:56.5740499+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandler325nikcosm_6cb10d77-b206-4054-875d-5578f21336b7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandler325nikcosm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000018e-0000-0300-0000-6917c4560000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest2-fdgw6nz0r1\",\"name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"AppId\":\"166fb684-6993-41b0-a11d-edb087c69973\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bb52893b-0083-49c6-9e99-39e2358c0905\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest2-fdgw6nz0r1\",\"CreationDate\":\"2025-11-15T00:07:22.1750446+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-fdgw6nz0r1_166fb684-6993-41b0-a11d-edb087c69973_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-fdgw6nz0r1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000a99b-0000-0300-0000-6917c4c20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest3-wbuk7grly4\",\"name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"AppId\":\"5ae0ffcd-7e7a-4681-840c-63a311aa22dc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0b410fca-9b3b-412e-8fce-f7c5eb94a422\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest3-wbuk7grly4\",\"CreationDate\":\"2025-11-15T00:09:32.9413769+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-wbuk7grly4_5ae0ffcd-7e7a-4681-840c-63a311aa22dc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-wbuk7grly4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"3000dab3-0000-0300-0000-6917c5820000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest5-195kucxe6q\",\"name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"AppId\":\"30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d30b5173-58dd-434e-a1bd-f659bfc9254b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest5-195kucxe6q\",\"CreationDate\":\"2025-11-15T00:12:18.4919987+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-195kucxe6q_30ef05f9-a5c0-46ae-a803-b842e50d91b4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-195kucxe6q-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0355b3-0000-0200-0000-6917b9d00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-8wks\",\"name\":\"Functions-Flex-DotNetIsolated-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-8wks\",\"AppId\":\"ae589619-76f2-4e31-aeea-1905b41ff9a5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a2b58f1-7b10-4558-9b57-d3a7bb67b70c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-DotNetIsolated-8wks\",\"CreationDate\":\"2025-11-14T23:22:43.5766283+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-8wks_ae589619-76f2-4e31-aeea-1905b41ff9a5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b039cc0-0000-0200-0000-6917ba540000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Node-8wks\",\"name\":\"Functions-Flex-Node-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-8wks\",\"AppId\":\"c73a41dd-9b79-4623-b9a9-cbc708befb54\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"97b0cf9c-4267-4e5d-b09f-a3fdfac04d84\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Node-8wks\",\"CreationDate\":\"2025-11-14T23:24:55.9628013+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-8wks_c73a41dd-9b79-4623-b9a9-cbc708befb54_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b03e8cc-0000-0200-0000-6917bada0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Python-8wks\",\"name\":\"Functions-Flex-Python-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-8wks\",\"AppId\":\"0fd5bb15-8254-462a-b124-f01de57491fa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6646e0da-7c3a-4442-b697-9e3161408467\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Python-8wks\",\"CreationDate\":\"2025-11-14T23:27:10.9745115+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-8wks_0fd5bb15-8254-462a-b124-f01de57491fa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0378d8-0000-0200-0000-6917bb5d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Java-8wks\",\"name\":\"Functions-Flex-Java-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-8wks\",\"AppId\":\"a21649a5-21a9-4a06-9682-73121bf51140\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c6b63eba-49fa-47e6-8b2f-184584f98fda\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Java-8wks\",\"CreationDate\":\"2025-11-14T23:29:21.9297403+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-8wks_a21649a5-21a9-4a06-9682-73121bf51140_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0346e6-0000-0200-0000-6917bbde0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-PowerShell-8wks\",\"name\":\"Functions-Flex-PowerShell-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-8wks\",\"AppId\":\"25435ed0-b05a-4dc6-b008-6df7a0fe469a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8aeec65a-58b3-4406-be83-a2af16406d60\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-PowerShell-8wks\",\"CreationDate\":\"2025-11-14T23:31:32.4922476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-8wks_25435ed0-b05a-4dc6-b008-6df7a0fe469a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0395ee-0000-0200-0000-6917bc660000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Flex-Custom-8wks\",\"name\":\"Functions-Flex-Custom-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-8wks\",\"AppId\":\"67f62be7-d4fc-49c8-828e-07308a6f924e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"246f07f9-7f47-4fe4-b736-28824b450760\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Custom-8wks\",\"CreationDate\":\"2025-11-14T23:33:45.854673+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-8wks_67f62be7-d4fc-49c8-828e-07308a6f924e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9b0348f6-0000-0200-0000-6917bceb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-8wks\",\"name\":\"Functions-Python-Flex-Scaling-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-8wks\",\"AppId\":\"33228ef1-a6e4-4064-9040-cbaccec606f9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"dc1718c9-6151-4735-9017-ed993ce3056c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-Flex-Scaling-8wks\",\"CreationDate\":\"2025-11-14T23:36:00.7780637+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-8wks_33228ef1-a6e4-4064-9040-cbaccec606f9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c034601-0000-0200-0000-6917bd740000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Node-SystemIdentity-8wks\",\"name\":\"Functions-Node-SystemIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-8wks\",\"AppId\":\"0349d31e-ac76-44b0-81fe-8500d7f1c97f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72f873d8-e77f-4cd1-b81b-333b88113567\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-SystemIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:38:16.9557851+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-8wks_0349d31e-ac76-44b0-81fe-8500d7f1c97f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c031d63-0000-0200-0000-6917bdf80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-8wks\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"AppId\":\"6496531f-759a-4e89-9157-c2dd51765c50\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cef9acb-a11b-4b8b-bc2a-c2f8f6857e4d\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-8wks\",\"CreationDate\":\"2025-11-14T23:40:27.9512322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-8wks_6496531f-759a-4e89-9157-c2dd51765c50_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03d074-0000-0200-0000-6917be7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-PS-CustomConfig-8wks\",\"name\":\"Functions-PS-CustomConfig-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-8wks\",\"AppId\":\"9e4ef079-b604-4ada-a5d5-cf132f19de8f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad9ec0d5-2e6b-4def-8f4a-6338616618e3\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PS-CustomConfig-8wks\",\"CreationDate\":\"2025-11-14T23:42:44.0467968+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-8wks_9e4ef079-b604-4ada-a5d5-cf132f19de8f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"9c03628b-0000-0200-0000-6917bfbe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-8wks/providers/microsoft.insights/components/Functions-Remove-FlexPlan-8wks\",\"name\":\"Functions-Remove-FlexPlan-8wks\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-8wks\",\"AppId\":\"3b443da0-e327-4130-9731-2a9a6a063cbb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3a6c8bc3-c5b8-44f6-a2c6-8a61bc801d4e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Remove-FlexPlan-8wks\",\"CreationDate\":\"2025-11-14T23:48:03.2101122+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-8wks_3b443da0-e327-4130-9731-2a9a6a063cbb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-8wks-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", "isContentBase64": false } }, @@ -5991,7 +5991,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q?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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\"\r\n },\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-pko1x9\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-195kucxe6q\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\"\r\n },\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6115,7 +6115,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -6206,7 +6206,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -6343,7 +6343,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=d30b5173-58dd-434e-a1bd-f659bfc9254b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=30ef05f9-a5c0-46ae-a803-b842e50d91b4\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-195kucxe6q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-195kucxe6q\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f45b116a-0da0-498b-9bda-9d9ebe6bf3de\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, @@ -6664,4 +6664,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json index 7d505acc4443..db35ccd4e5ad 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json @@ -837,7 +837,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"300063f2-0000-0300-0000-6917c76a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"AppId\": \"425feac0-2687-48c1-b551-9f44dbf8193e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"642f4137-1a1d-4c91-a64b-9e4eaa105662\",\r\n \"ConnectionString\": \"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\",\r\n \"Name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"CreationDate\": \"2025-11-15T00:20:53.8659352+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-5id68b7s4u_425feac0-2687-48c1-b551-9f44dbf8193e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-5id68b7s4u-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\": \"\\\"300063f2-0000-0300-0000-6917c76a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/microsoft.insights/components/Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"AppId\": \"425feac0-2687-48c1-b551-9f44dbf8193e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"642f4137-1a1d-4c91-a64b-9e4eaa105662\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest4-5id68b7s4u\",\r\n \"CreationDate\": \"2025-11-15T00:20:53.8659352+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-5id68b7s4u_425feac0-2687-48c1-b551-9f44dbf8193e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-5id68b7s4u-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -845,7 +845,7 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u?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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;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=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-5id68b7s4u\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "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-rs70mo/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-kr06eymqwb\",\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=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-5id68b7s4u\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1015,7 +1015,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-5id68b7s4u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-5id68b7s4u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1152,7 +1152,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-5id68b7s4u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=642f4137-1a1d-4c91-a64b-9e4eaa105662;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=425feac0-2687-48c1-b551-9f44dbf8193e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-5id68b7s4u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-5id68b7s4u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1470,4 +1470,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} 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 c4791f43a600..846a6a31a383 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 @@ -131,7 +131,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -313,7 +313,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -495,7 +495,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -677,7 +677,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -859,7 +859,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1041,7 +1041,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1223,7 +1223,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1405,7 +1405,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1587,7 +1587,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1769,7 +1769,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -1951,7 +1951,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2133,7 +2133,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2270,7 +2270,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2452,7 +2452,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2589,7 +2589,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2771,7 +2771,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -2908,7 +2908,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3090,7 +3090,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=53405245-5093-44e0-a9cc-cd426c74b85c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e667224e-63d9-4b58-bb3e-e4bea5f2998e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-rs70mo/providers/Microsoft.Web/sites/Functions-PowerShell-74-1atxo6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-1atxo6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3227,7 +3227,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3409,7 +3409,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3546,7 +3546,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3728,7 +3728,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -3865,7 +3865,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4047,7 +4047,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=36242a54-f281-419e-b84a-a18b99e16280;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=0c3e3e43-71c6-4f32-8603-6f0551f7cdf7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-pkqf4d/providers/Microsoft.Web/sites/Functions-Node-22-fh9m0d/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-fh9m0d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4184,7 +4184,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4366,7 +4366,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4503,7 +4503,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4685,7 +4685,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -4822,7 +4822,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5004,7 +5004,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=XdRPjTvmXjQMhxIk7/0efi1VUwT9GqtvXytgpQq10fcA3g5S93YAcwsIUF+xMVQTZz3e15d7GB5S+AStGaPriw==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e62ada86-7580-495a-8077-5b5a93de6f32;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1ec6fdef-6987-470b-8410-eea09542cb04\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-9wrjxu/providers/Microsoft.Web/sites/Functions-DotNet-8-du5asv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage9nh;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-du5asv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5141,7 +5141,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5323,7 +5323,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5460,7 +5460,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5642,7 +5642,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5779,7 +5779,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -5961,7 +5961,7 @@ "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=skUcBUe+5O4EK0DJ0kvF9RgrTfUtm65vhNO906vUNgeK+wHUdXYOSu4jWLqbGrAISyxLf/ckH6Ls+AStNs5DZQ==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=279763ee-9e4a-474e-a4ce-8ee813ab10e6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e07f516a-6724-4c46-8f4a-555cb3096b98\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-myf9na/providers/Microsoft.Web/sites/Functions-Python-312-w61tuq/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=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragea16;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-w61tuq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, @@ -6011,4 +6011,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} From bad2b09a6a2f0d911b3fc701854a12d1820cdf99 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 14 Nov 2025 21:33:14 -0800 Subject: [PATCH 26/26] Update change log --- src/Functions/Functions/ChangeLog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Functions/Functions/ChangeLog.md b/src/Functions/Functions/ChangeLog.md index b356839f17de..573314b872de 100644 --- a/src/Functions/Functions/ChangeLog.md +++ b/src/Functions/Functions/ChangeLog.md @@ -18,6 +18,10 @@ - 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 ## Version 4.2.1 * Updated API client to latest commit for version 2023-12-01